Sha256: 5d00fb2d57503c012b93b9e84609e2e94219d94452d63e78e74091023dd16105
Contents?: true
Size: 1.06 KB
Versions: 21
Compression:
Stored size: 1.06 KB
Contents
uniform vec3 ambientLightColor; #if MAX_DIR_LIGHTS > 0 uniform vec3 directionalLightColor[ MAX_DIR_LIGHTS ]; uniform vec3 directionalLightDirection[ MAX_DIR_LIGHTS ]; #endif #if MAX_HEMI_LIGHTS > 0 uniform vec3 hemisphereLightSkyColor[ MAX_HEMI_LIGHTS ]; uniform vec3 hemisphereLightGroundColor[ MAX_HEMI_LIGHTS ]; uniform vec3 hemisphereLightDirection[ MAX_HEMI_LIGHTS ]; #endif #if MAX_POINT_LIGHTS > 0 uniform vec3 pointLightColor[ MAX_POINT_LIGHTS ]; uniform vec3 pointLightPosition[ MAX_POINT_LIGHTS ]; uniform float pointLightDistance[ MAX_POINT_LIGHTS ]; uniform float pointLightDecay[ MAX_POINT_LIGHTS ]; #endif #if MAX_SPOT_LIGHTS > 0 uniform vec3 spotLightColor[ MAX_SPOT_LIGHTS ]; uniform vec3 spotLightPosition[ MAX_SPOT_LIGHTS ]; uniform vec3 spotLightDirection[ MAX_SPOT_LIGHTS ]; uniform float spotLightDistance[ MAX_SPOT_LIGHTS ]; uniform float spotLightAngleCos[ MAX_SPOT_LIGHTS ]; uniform float spotLightExponent[ MAX_SPOT_LIGHTS ]; uniform float spotLightDecay[ MAX_SPOT_LIGHTS ]; #endif #ifdef WRAP_AROUND uniform vec3 wrapRGB; #endif
Version data entries
21 entries across 21 versions & 2 rubygems