(handle: f64, texture_idx: f64)
| 2628 | |
| 2629 | #[no_mangle] |
| 2630 | pub extern "C" fn bloom_scene_set_material_texture(handle: f64, texture_idx: f64) { |
| 2631 | engine().scene.set_material_texture(handle, texture_idx as u32); |
| 2632 | } |
| 2633 | |
| 2634 | #[no_mangle] |
| 2635 | pub extern "C" fn bloom_scene_node_count() -> f64 { |
no test coverage detected