aboutsummaryrefslogtreecommitdiff
path: root/client/menu/text_loading_anim.gdshader
diff options
context:
space:
mode:
authormetamuffin <metamuffin@disroot.org>2025-09-04 23:47:24 +0200
committermetamuffin <metamuffin@disroot.org>2025-09-05 23:07:07 +0200
commit81deaf81c800900e30046cb927be1c9d91ae61b8 (patch)
tree20ce9898465e8d4c49eeff12a9ea55572517ea7b /client/menu/text_loading_anim.gdshader
parentfd80142282fcef628466a18e3ea62f0d1372d807 (diff)
downloadhurrycurry-81deaf81c800900e30046cb927be1c9d91ae61b8.tar
hurrycurry-81deaf81c800900e30046cb927be1c9d91ae61b8.tar.bz2
hurrycurry-81deaf81c800900e30046cb927be1c9d91ae61b8.tar.zst
reorganize client gui files
Diffstat (limited to 'client/menu/text_loading_anim.gdshader')
-rw-r--r--client/menu/text_loading_anim.gdshader13
1 files changed, 0 insertions, 13 deletions
diff --git a/client/menu/text_loading_anim.gdshader b/client/menu/text_loading_anim.gdshader
deleted file mode 100644
index 145dab78..00000000
--- a/client/menu/text_loading_anim.gdshader
+++ /dev/null
@@ -1,13 +0,0 @@
-shader_type canvas_item;
-
-varying vec4 vertex_color;
-void vertex() {
- vertex_color = COLOR;
-}
-
-void fragment() {
- vec4 tex = texture(TEXTURE, UV) * COLOR;
- float wave = sin(VERTEX.x*0.01-TIME*10.) * 0.5 + 0.5;
- wave = pow(wave, 3.);
- COLOR = tex * (1. - wave * 0.2);
-}