This commit is contained in:
2026-09-10 10:59:37 +03:00
commit d673543dd5
38 changed files with 728 additions and 0 deletions
+9
View File
@@ -0,0 +1,9 @@
shader_type canvas_item;
uniform vec4 modulate_color : source_color = vec4(0.0);
void fragment() {
vec4 tex = texture(TEXTURE, UV);
COLOR = tex;
COLOR.rgb = mix(COLOR.rgb, modulate_color.rgb, modulate_color.a);
}