rg/naloga_3/Light.js
Gašper Dobrovoljc a20a45ebd0
Naloga 3 WIP
2024-12-28 19:58:17 +01:00

8 lines
192 B
JavaScript

export class Light {
constructor({ ambient, cutoffAngle, intensity }) {
this.ambient = ambient;
this.cutoffAngle = cutoffAngle;
this.intensity = intensity;
}
}