(handle: f64, cast: f64)
| 1933 | |
| 1934 | #[no_mangle] |
| 1935 | pub extern "C" fn bloom_scene_set_cast_shadow(handle: f64, cast: f64) { |
| 1936 | engine().scene.set_cast_shadow(handle, cast != 0.0); |
| 1937 | } |
| 1938 | |
| 1939 | #[no_mangle] |
| 1940 | pub extern "C" fn bloom_scene_set_receive_shadow(handle: f64, receive: f64) { |
nothing calls this directly
no test coverage detected