summaryrefslogtreecommitdiffstats
path: root/custom_shaders
diff options
context:
space:
mode:
Diffstat (limited to 'custom_shaders')
-rw-r--r--custom_shaders/liquid.gdshader4
1 files changed, 1 insertions, 3 deletions
diff --git a/custom_shaders/liquid.gdshader b/custom_shaders/liquid.gdshader
index b5b913b..529f25c 100644
--- a/custom_shaders/liquid.gdshader
+++ b/custom_shaders/liquid.gdshader
@@ -12,9 +12,7 @@ uniform sampler2D normal : hint_normal;
uniform float wave_speed : hint_range(0.0, 10.0);
uniform float wave_height : hint_range(0.0, 10.0);
-
-void fragment(){
-
+void fragment() {
vec2 moving_uv = UV + (TIME * normal_speed);
ALBEDO = albedo.rgb;