(data: &[u8])
| 749 | |
| 750 | #[wasm_bindgen] |
| 751 | pub fn bloom_load_model_bytes(data: &[u8]) -> f64 { |
| 752 | let eng = engine(); |
| 753 | eng.models.load_model_with_textures(data, &mut eng.renderer) |
| 754 | } |
| 755 | |
| 756 | #[wasm_bindgen] |
| 757 | pub fn bloom_draw_model(handle: f64, x: f64, y: f64, z: f64, scale: f64, r: f64, g: f64, b: f64, a: f64) { |
nothing calls this directly
no test coverage detected