mirror of
https://github.com/Relintai/pandemonium_demo_projects.git
synced 2024-12-21 13:56:50 +01:00
9 lines
171 B
GLSL
9 lines
171 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);
|
|
}
|