Skip to content

CanvasItem shaders

CanvasItem shaders are used to draw all 2D elements in Godot. These include all nodes that inherit from CanvasItems, and all GUI elements.

CanvasItem shaders contain fewer built-in variables and functionality than Spatial shaders, but they maintain the same basic structure with vertex, fragment, and light processor functions.

Render modes

Render modeDescription
blend_mixMix blend mode (alpha is transparency), default.
blend_addAdditive blend mode.
blend_subSubtractive blend mode.
blend_mulMultiplicative blend mode.
blend_premul_alphaPre-multiplied alpha blend mode.
blend_disabledDisable blending, values (including alpha) are written as-is.
unshadedResult is just albedo. No lighting/shading happens in material.
light_onlyOnly draw on light pass.
skip_vertex_transformVERTEX needs to be transformed manually in the vertex() function.
world_vertex_coordsVERTEX is modified in world coordinates instead of local.

Built-ins

Values marked as in are read-only. Values marked as out can optionally be written to and will not necessarily contain sensible values. Values marked as inout provide a sensible default value, and can optionally be written to. Samplers cannot be written to so they are not marked.

Not all built-ins are available in all processing functions. To access a vertex built-in from the fragment() function, you can use a Varyings. The same applies for accessing fragment built-ins from the light() function.

Global built-ins

Global built-ins are available everywhere, including custom functions.

Built-inDescription
in float TIMEGlobal time since the engine has started, in seconds. It repeats after every 3,600 seconds (which can be changed with the rollover setting). It's affected by time_scale but not by pausing. If you need a TIME variable that is not affected by time scale, add your own Global uniforms and update it each frame.
in float PIA PI constant (3.141592). A ratio of a circle's circumference to its diameter and amount of radians in half turn.
in float TAUA TAU constant (6.283185). An equivalent of PI * 2 and amount of radians in full turn.
in float EAn E constant (2.718281). Euler's number and a base of the natural logarithm.

Vertex built-ins

Vertex data (VERTEX) is presented in local space (pixel coordinates, relative to the Node2D's origin). If not written to, these values will not be modified and be passed through as they came.

The user can disable the built-in model to world transform (world to screen and projection will still happen later) and do it manually with the following code:

glsl
shader_type canvas_item;
render_mode skip_vertex_transform;

void vertex() {

    VERTEX = (MODEL_MATRIX * vec4(VERTEX, 0.0, 1.0)).xy;
}

Other built-ins, such as UV and COLOR, are also passed through to the fragment() function if not modified.

For instancing, the INSTANCE_CUSTOM variable contains the instance custom data. When using particles, this information is usually:

  • x: Rotation angle in radians.

  • y: Phase during lifetime (0.0 to 1.0).

  • z: Animation frame.

Built-inDescription
in mat4 MODEL_MATRIXLocal space to world space transform. World space is the coordinates you normally use in the editor.
in mat4 CANVAS_MATRIXWorld space to canvas space transform. In canvas space the origin is the upper-left corner of the screen and coordinates ranging from (0.0, 0.0) to viewport size.
in mat4 SCREEN_MATRIXCanvas space to clip space. In clip space coordinates ranging from (-1.0, -1.0) to (1.0, 1.0).
in int INSTANCE_IDInstance ID for instancing.
in vec4 INSTANCE_CUSTOMInstance custom data.
in bool AT_LIGHT_PASSAlways false.
in vec2 TEXTURE_PIXEL_SIZENormalized pixel size of default 2D texture. For a Sprite2D with a texture of size 64x32px, TEXTURE_PIXEL_SIZE = vec2(1/64, 1/32)
inout vec2 VERTEXVertex position, in local space.
in int VERTEX_IDThe index of the current vertex in the vertex buffer.
inout vec2 UVNormalized texture coordinates. Range from 0.0 to 1.0.
inout vec4 COLORColor from vertex primitive multiplied by CanvasItem's modulate multiplied by CanvasItem's self_modulate.
inout float POINT_SIZEPoint size for point drawing.
in vec4 CUSTOM0Custom value from vertex primitive.
in vec4 CUSTOM1Custom value from vertex primitive.

Fragment built-ins

COLOR and TEXTURE

The built-in variable COLOR is used for a few things:

  • In the vertex() function, COLOR contains the color from the vertex primitive multiplied by the CanvasItem's modulate multiplied by the CanvasItem's self_modulate.
  • In the fragment() function, the input value COLOR is that same value multiplied by the color from the default TEXTURE (if present).
  • In the fragment() function, COLOR is also the final output.

Certain nodes (for example, Sprite2D) display a texture by default, for example texture. When using a custom fragment() function, you have a few options on how to sample this texture.

To read only the contents of the default texture, ignoring the vertex COLOR:

glsl
void fragment() {
  COLOR = texture(TEXTURE, UV);
}

To read the contents of the default texture multiplied by vertex COLOR:

glsl
void fragment() {
  // Equivalent to an empty fragment() function, since COLOR is also the output variable.
  COLOR = COLOR;
}

To read only the vertex COLOR in fragment(), ignoring the main texture, you must pass COLOR as a varying, then read it in fragment():

glsl
varying vec4 vertex_color;
void vertex() {
  vertex_color = COLOR;
}
void fragment() {
  COLOR = vertex_color;
}

NORMAL

Similarly, if a normal map is used in the CanvasTexture, Godot uses it by default and assigns its value to the built-in NORMAL variable. If you are using a normal map meant for use in 3D, it will appear inverted. In order to use it in your shader, you must assign it to the NORMAL_MAP property. Godot will handle converting it for use in 2D and overwriting NORMAL.

glsl
NORMAL_MAP = texture(NORMAL_TEXTURE, UV).rgb;
Built-inDescription
in vec4 FRAGCOORDCoordinate of pixel center. In screen space. xy specifies position in viewport. Upper-left of the viewport is the origin, (0.0, 0.0).
in vec2 SCREEN_PIXEL_SIZESize of individual pixels. Equal to inverse of resolution.
in vec2 POINT_COORDCoordinate for drawing points.
sampler2D TEXTUREDefault 2D texture.
in vec2 TEXTURE_PIXEL_SIZENormalized pixel size of default 2D texture. For a Sprite2D with a texture of size 64x32px, TEXTURE_PIXEL_SIZE = vec2(1/64, 1/32)
in bool AT_LIGHT_PASSAlways false.
sampler2D SPECULAR_SHININESS_TEXTURESpecular shininess texture of this object.
in vec4 SPECULAR_SHININESSSpecular shininess color, as sampled from the texture.
in vec2 UVUV from the vertex() function.
in vec2 SCREEN_UVScreen UV coordinate for current pixel.
sampler2D SCREEN_TEXTURERemoved in Godot 4. Use a sampler2D with hint_screen_texture instead.
inout vec3 NORMALNormal read from NORMAL_TEXTURE. Writable.
sampler2D NORMAL_TEXTUREDefault 2D normal texture.
out vec3 NORMAL_MAPConfigures normal maps meant for 3D for use in 2D. If used, overrides NORMAL.
out float NORMAL_MAP_DEPTHNormal map depth for scaling.
inout vec2 VERTEXPixel position in screen space.
inout vec2 SHADOW_VERTEXSame as VERTEX but can be written to alter shadows.
inout vec3 LIGHT_VERTEXSame as VERTEX but can be written to alter lighting. Z component represents height.
inout vec4 COLORCOLOR from the vertex() function multiplied by the TEXTURE color. Also output color value.

Light built-ins

Light processor functions work differently in Godot 4.x than they did in Godot 3.x. In Godot 4.x all lighting is done during the regular draw pass. In other words, Godot no longer draws the object again for each light.

Use the unshaded render mode if you do not want the light() function to run. Use the light_only render mode if you only want to see the impact of lighting on an object; this can be useful when you only want the object visible where it is covered by light.

If you define a light() function it will replace the built-in light function, even if your light function is empty.

Below is an example of a light shader that takes a CanvasItem's normal map into account:

glsl
void light() {
  float cNdotL = max(0.0, dot(NORMAL, LIGHT_DIRECTION));
  LIGHT = vec4(LIGHT_COLOR.rgb * COLOR.rgb * LIGHT_ENERGY * cNdotL, LIGHT_COLOR.a);
}
Built-inDescription
in vec4 FRAGCOORDCoordinate of pixel center. In screen space. xy specifies position in viewport. Upper-left of the viewport is the origin, (0.0, 0.0).
in vec3 NORMALInput normal.
in vec4 COLORInput color. This is the output of the fragment() function.
in vec2 UVUV from the vertex() function, equivalent to the UV in the fragment() function.
sampler2D TEXTURECurrent texture in use for CanvasItem.
in vec2 TEXTURE_PIXEL_SIZENormalized pixel size of TEXTURE. For a Sprite2D with a TEXTURE of size 64x32 pixels, TEXTURE_PIXEL_SIZE = vec2(1/64, 1/32)
in vec2 SCREEN_UVScreen UV coordinate for current pixel.
in vec2 POINT_COORDUV for Point Sprite.
in vec4 LIGHT_COLORColor of the Light2D. If the light is a PointLight2D, multiplied by the light's texture.
in float LIGHT_ENERGYEnergy multiplier of the Light2D.
in vec3 LIGHT_POSITIONPosition of the Light2D in screen space. If using a DirectionalLight2D this is always (0.0, 0.0, 0.0).
in vec3 LIGHT_DIRECTIONDirection of the Light2D in screen space.
in bool LIGHT_IS_DIRECTIONALtrue if this pass is a DirectionalLight2D.
in vec3 LIGHT_VERTEXPixel position, in screen space as modified in the fragment() function.
inout vec4 LIGHTOutput color for this Light2D.
in vec4 SPECULAR_SHININESSSpecular shininess, as set in the object's texture.
out vec4 SHADOW_MODULATEMultiply shadows cast at this point by this color.

SDF functions

There are a few additional functions implemented to sample an automatically generated Signed Distance Field texture. These functions available for the fragment() and light() functions of CanvasItem shaders. Custom functions may also use them as long as they called from supported functions.

The signed distance field is generated from LightOccluder2D nodes present in the scene with the SDF Collision property enabled (which is the default). See the Setting up shadows documentation for more information.

FunctionDescription
float texture_sdf (vec2 sdf_pos)Performs an SDF texture lookup.
vec2 texture_sdf_normal (vec2 sdf_pos)Calculates a normal from the SDF texture.
vec2 sdf_to_screen_uv (vec2 sdf_pos)Converts an SDF to screen UV.
vec2 screen_uv_to_sdf (vec2 uv)Converts screen UV to an SDF.