Skip to content

entityColor

uniform vec4 entityColor;

The entity tint color. The rgb components store the color, and the a component stores the blend factor. The entity color should be applied as follows:

color.rgb = mix(color.rgb, entityColor.rgb, entityColor.a);