(handle: f64, cast: f64)
| 2155 | |
| 2156 | #[no_mangle] |
| 2157 | pub extern "C" fn bloom_scene_set_cast_shadow(handle: f64, cast: f64) { |
| 2158 | engine().scene.set_cast_shadow(handle, cast != 0.0); |
| 2159 | } |
| 2160 | |
| 2161 | #[no_mangle] |
| 2162 | pub extern "C" fn bloom_scene_set_material_color(handle: f64, r: f64, g: f64, b: f64, a: f64) { |
nothing calls this directly
no test coverage detected