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::new(&game.scene, babylon::js::random()); sphere.set_position( 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 mouse and arrow keys :arrowleft: :arrowup: :arrowdown: :arrowright:!)
rust
let mut game = GAME.lock().unwrap();
for _ in 0..10 {
let mut cube = Cube::new(
&game.scene,
babylon::js::random(),
babylon::js::random(),
babylon::js::random(),
);
let mut mat = StandardMaterial::new(&game.scene);
mat.set_diffuse_color(Color::new(babylon::js::random(),babylon::js::random(),babylon::js::random()));
mat.set_alpha(babylon::js::random());
cube.set_material(&mat);
cube.set_position(
babylon::js::random() - 0.5,
babylon::js::random() - 0.5,
babylon::js::random() - 0.5,
);
game.shape.push(cube);
}
See this demo here ( be sure to play with mouse and 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.