mirror of
https://github.com/godotengine/godot-demo-projects.git
synced 2026-01-04 15:00:09 +01:00
9 lines
172 B
GLSL
9 lines
172 B
GLSL
shader_type canvas_item;
|
|
|
|
render_mode blend_mix;
|
|
uniform vec4 modulate : hint_color;
|
|
|
|
void fragment() {
|
|
COLOR = vec4(modulate.rgb, texture(TEXTURE, UV).a * modulate.a);
|
|
}
|