WebAssembly wrapper for Babylon.js
This project uses js_ffi
for binding.
```rust use babylon::*;
extern crate lazy_static;
use std::sync::Mutex;
lazy_static! {
static ref GAME: Mutex
struct Game {
scene: Scene,
shape: Option
impl Game { fn new() -> Game { Game { scene: Scene::createfrombasic_engine("#renderCanvas"), shape: None, } }
fn init(&mut self) {
self.shape = Some(Sphere::create_sphere(&self.scene, 1.0));
}
}
pub fn main() { let mut game = GAME.lock().unwrap(); game.init(); } ```
See this demo here