Commit of existing data.

This commit is contained in:
2025-06-22 23:22:32 -06:00
commit 1bbd8c812f
208 changed files with 6327 additions and 0 deletions
+7
View File
@@ -0,0 +1,7 @@
shader_type canvas_item;
void fragment() {
COLOR = texture(TEXTURE, UV);
float avg = (COLOR.r + COLOR.g + COLOR.b) / 3.0;
COLOR.rgb = vec3(avg);
}