Skip to content

Release 0.3.1

Latest

Choose a tag to compare

@MuongKimhong MuongKimhong released this 10 May 07:42

Changes in this release:

  • Allow users to manually create camera either 2d or 3d

fn main() {
    App::new()
        .add_plugins(DefaultPlugins)
        .add_plugins(FamiqPlugin::new()) // use default 2d camera
        .run();
}

// or

fn main() {
    App::new()
        .add_plugins(DefaultPlugins)
        .add_plugins(FamiqPlugin::new_no_camera()) // no camera added, users can add manuallly
        .run();
}
  • Clipboard (copy/paste) support in text_input for WASM build

  • Added built-in classes for border radius and alignment

  • Fixed: button now changes its color to darker color on press

  • Rename modal to dialog.