(handle: f64, parent: f64)
| 1943 | |
| 1944 | #[no_mangle] |
| 1945 | pub extern "C" fn bloom_scene_set_parent(handle: f64, parent: f64) { |
| 1946 | engine().scene.set_parent(handle, parent); |
| 1947 | } |
| 1948 | |
| 1949 | #[no_mangle] |
| 1950 | pub extern "C" fn bloom_scene_set_transform(handle: f64, mat_ptr: *const f64) { |
nothing calls this directly
no test coverage detected