A WebAssembly wrapper for Babylon.js in Rust.
This project is pre-alpha and the api is in active exploration. Current priorities:
This project uses js_ffi
for javascript binding and lazy_static
for global static singletons fairly extensively.
```rust use babylon::prelude::*;
extern crate lazy_static; use std::sync::Mutex;
lazy_static! {
static ref GAME: Mutex
struct Game {
scene: Scene,
shape: Vec
impl Game { fn new() -> Self { Game { scene: Scene::createfrombasic_engine("#renderCanvas"), shape: vec![], } } }
pub fn main() { babylon::js::log("Starting demo..."); let mut game = GAME.lock().unwrap(); for _ in 0..10 { let mut sphere = Sphere::createsphere(&game.scene, babylon::js::random()); sphere.setposition( babylon::js::random() - 0.5, babylon::js::random() - 0.5, babylon::js::random() - 0.5, ); game.shape.push(sphere); } } ```
See this demo here ( be sure to play with arrow keys :arrowleft: :arrowup: :arrowdown: :arrowright:!)
This project is licensed under either of
at your option.
Unless you explicitly state otherwise, any contribution intentionally submitted
for inclusion in babylon.rs
by you, as defined in the Apache-2.0 license, shall be
dual licensed as above, without any additional terms or conditions.