add shader

This commit is contained in:
2024-12-13 06:45:07 +03:00
parent 604e8dc875
commit 7bc5aa8e3d
12 changed files with 150 additions and 268 deletions

7
table/switch.gdshader Normal file
View File

@@ -0,0 +1,7 @@
shader_type canvas_item;
void fragment()
{
COLOR.rgb = vec3(1.0, 1.0, 1.0) - log(COLOR.rgb);
}