(r: f64, g: f64, b: f64, intensity: f64)
| 1278 | |
| 1279 | #[wasm_bindgen] |
| 1280 | pub fn bloom_set_ambient_light(r: f64, g: f64, b: f64, intensity: f64) { |
| 1281 | engine().renderer.set_ambient_light(r, g, b, intensity); |
| 1282 | } |
| 1283 | |
| 1284 | #[wasm_bindgen] |
| 1285 | pub fn bloom_set_directional_light(dx: f64, dy: f64, dz: f64, r: f64, g: f64, b: f64, intensity: f64) { |
nothing calls this directly
no test coverage detected