(direction: Vec3, color: Color, intensity: number)
| 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); |
| 678 | } |
| 679 | |
| 680 | // EN-005 — Hillaire 2020 procedural sky. |
| 681 | // |
no test coverage detected