aalo 0.3.0

aka bevy-inspector-haalka, a bevy_ui-native inspector for Bevy
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#![allow(dead_code)]

use bevy::prelude::*;

pub(crate) fn example_window_plugin() -> WindowPlugin {
    WindowPlugin {
        primary_window: Some(Window {
            #[cfg(feature = "deployed_wasm_example")]
            canvas: Some("#bevy".to_string()),
            fit_canvas_to_parent: true,
            prevent_default_event_handling: true,
            ..default()
        }),
        ..default()
    }
}