mirror of
https://github.com/cyberarm/cyberarm_engine.git
synced 2025-12-15 20:52:35 +00:00
12 lines
136 B
GLSL
12 lines
136 B
GLSL
struct Light {
|
|
int type;
|
|
vec3 direction;
|
|
vec3 position;
|
|
|
|
vec3 diffuse;
|
|
vec3 ambient;
|
|
vec3 specular;
|
|
|
|
float intensity;
|
|
};
|