(handle: f64, parent: f64)
| 2527 | |
| 2528 | #[no_mangle] |
| 2529 | pub extern "C" fn bloom_scene_set_parent(handle: f64, parent: f64) { |
| 2530 | engine().scene.set_parent(handle, parent); |
| 2531 | } |
| 2532 | |
| 2533 | /// Set 4x4 transform matrix (16 floats passed as pointer to f64 array). |
| 2534 | #[no_mangle] |
nothing calls this directly
no test coverage detected