(handle: f64, receive: f64)
| 2186 | |
| 2187 | #[no_mangle] |
| 2188 | pub extern "C" fn bloom_scene_set_receive_shadow(handle: f64, receive: f64) { |
| 2189 | engine().scene.set_receive_shadow(handle, receive != 0.0); |
| 2190 | } |
| 2191 | |
| 2192 | #[no_mangle] |
| 2193 | pub extern "C" fn bloom_scene_set_transform(handle: f64, mat_ptr: *const f64) { |
nothing calls this directly
no test coverage detected