(color: Color, intensity: number)
| 670 | } |
| 671 | |
| 672 | export function setAmbientLight(color: Color, intensity: number): void { |
| 673 | bloom_set_ambient_light(color.r, color.g, color.b, intensity); |
| 674 | } |
| 675 | |
| 676 | export function setDirectionalLight(direction: Vec3, color: Color, intensity: number): void { |
| 677 | bloom_set_directional_light(direction.x, direction.y, direction.z, color.r, color.g, color.b, intensity); |
no test coverage detected