babylon 0.0.15

A wrapper for Babylon.js
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
pub fn log(msg: &str) {
    crate::api::BabylonApi::log(msg);
}

pub fn error(msg: &str) {
    crate::api::BabylonApi::error(msg);
}

pub fn debugger() {
    crate::api::BabylonApi::debugger();
}

pub fn random() -> f64 {
    crate::api::BabylonApi::random()
}