(dt: number)
| 124 | |
| 125 | // Light system (priority 5) |
| 126 | function lightSystem(dt: number): void { |
| 127 | addDirectionalLight(0.5, 1.0, 0.3, 1.0, 0.95, 0.9, 0.6); |
| 128 | addDirectionalLight(-0.3, 0.5, -0.7, 0.8, 0.85, 0.95, 0.25); |
| 129 | } |
| 130 | |
| 131 | // ============================================================ |
| 132 | // Camera orbit controls |
nothing calls this directly
no test coverage detected