отладка панели

This commit is contained in:
2025-02-11 20:01:26 +03:00
parent b686c0f137
commit 4ec99ce481
7 changed files with 171 additions and 6 deletions

11
Shaders/gradient.gdshader Normal file
View File

@@ -0,0 +1,11 @@
shader_type canvas_item;
uniform float outerRadius : hint_range(0.0, 900.0) = 1.0;
uniform float MainAlpha : hint_range(0.0, 1.0) = 1.0;
void fragment() {
float x = abs(UV.x-.5)*2.0;
float y = abs(UV.y-.5)*2.0;
float v = (sqrt((x*x)+(y*y))/outerRadius);
COLOR = vec4(0,0,0,v*MainAlpha);
}