Add modified Fragmented project files

This commit is contained in:
ChaoticByte 2025-10-10 22:05:07 +02:00
parent f99f1fbc9b
commit 77ce93fb15
Signed by: ChaoticByte
SSH key fingerprint: SHA256:bHr1NPU+JZFLUbsTl2/mfa6U+6dcM7VjKohzXnshfFY
57 changed files with 1696 additions and 0 deletions

View file

@ -0,0 +1,8 @@
shader_type canvas_item;
void fragment() {
float v = (COLOR.r + COLOR.g + COLOR.b) / 3.0;
COLOR.r = v;
COLOR.g = v;
COLOR.b = v;
}