(handle: f64, cast: f64)
| 2517 | |
| 2518 | #[no_mangle] |
| 2519 | pub extern "C" fn bloom_scene_set_cast_shadow(handle: f64, cast: f64) { |
| 2520 | engine().scene.set_cast_shadow(handle, cast != 0.0); |
| 2521 | } |
| 2522 | |
| 2523 | #[no_mangle] |
| 2524 | pub extern "C" fn bloom_scene_set_receive_shadow(handle: f64, receive: f64) { |
nothing calls this directly
no test coverage detected