bevy_wasm 0.10.1

Run WASM systems in Bevy
Documentation
1
2
3
4
5
6
7
8
9
10
11
#[cfg(target_arch = "wasm32")]
pub use web::{WasmInstance, WasmRuntime};

#[cfg(not(target_arch = "wasm32"))]
pub use native::{WasmInstance, WasmRuntime};

#[cfg(target_arch = "wasm32")]
pub mod web;

#[cfg(not(target_arch = "wasm32"))]
pub mod native;