(handle: f64, parent: f64)
| 2566 | |
| 2567 | #[no_mangle] |
| 2568 | pub extern "C" fn bloom_scene_set_parent(handle: f64, parent: f64) { |
| 2569 | engine().scene.set_parent(handle, parent); |
| 2570 | } |
| 2571 | |
| 2572 | #[no_mangle] |
| 2573 | pub extern "C" fn bloom_scene_set_transform(handle: f64, mat_ptr: *const f64) { |
no test coverage detected