Controller input box is currently in development, but has reached alpha.

This commit is contained in:
Jamie Greunbaum
2024-06-17 00:14:48 -04:00
parent 8432df5456
commit e576dc7907
22 changed files with 1059 additions and 4 deletions
@@ -0,0 +1,7 @@
shader_type canvas_item;
void fragment() {
float dist = 1.0f - (distance(vec2(0.5f, 0.5f), UV.xy) * 2.0);
float value = smoothstep(0.0f, 0.01, dist);
COLOR = vec4(1.0, 1.0, 1.0, value);
}