From 12d2af692f3e92b7274f26b43634b57b99fdcc7f Mon Sep 17 00:00:00 2001 From: Tornado Tech <54727692+Tornado-Technology@users.noreply.github.com> Date: Mon, 5 Aug 2024 23:48:22 +1000 Subject: [PATCH] Update wave.swsl (#388) --- Resources/Textures/_CP14/Shaders/wave.swsl | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/Resources/Textures/_CP14/Shaders/wave.swsl b/Resources/Textures/_CP14/Shaders/wave.swsl index beed1f4f4c..a6d84d2ee4 100644 --- a/Resources/Textures/_CP14/Shaders/wave.swsl +++ b/Resources/Textures/_CP14/Shaders/wave.swsl @@ -3,9 +3,9 @@ preset raw; varying highp vec2 Pos; varying highp vec4 VtxModulate; -uniform highp float Speed = 3.0; -uniform highp float Dis = 10.0; -uniform highp float Offset = 0.0; +uniform highp float Speed; +uniform highp float Dis; +uniform highp float Offset; void fragment() { // Re-create base mvp @@ -21,4 +21,4 @@ void vertex() { UV = mix(modifyUV.xy, modifyUV.zw, tCoord); UV2 = tCoord2; VtxModulate = zFromSrgb(modulate); -} \ No newline at end of file +}