mirror of
https://github.com/cyberarm/i-mic-fps.git
synced 2025-12-15 15:42:35 +00:00
16 lines
178 B
GLSL
16 lines
178 B
GLSL
const int MAX_LIGHTS = 4;
|
|
|
|
struct Light {
|
|
float end;
|
|
float type;
|
|
vec3 position;
|
|
|
|
vec3 diffuse;
|
|
vec3 ambient;
|
|
vec3 specular;
|
|
|
|
vec3 direction;
|
|
|
|
float intensity;
|
|
};
|