diff options
author | Jonathan Duran | 2012-06-19 08:40:26 -0700 |
---|---|---|
committer | Jonathan Duran | 2012-06-19 08:40:26 -0700 |
commit | 6f25a2e70079de6bcbb8c3411ddef88c2ed1ea39 (patch) | |
tree | 253e5f6dd5923218e3155f78fa67ff3e43de0ebc /assets/shaders/plasma.frag.glsl | |
parent | b51c9448bc187f9bfa3ab39c366657ec2bb9e2fb (diff) | |
parent | 483ad57efcd6475776f580c3af5b60e6deeaf781 (diff) | |
download | ninja-6f25a2e70079de6bcbb8c3411ddef88c2ed1ea39.tar.gz |
Merge branch 'refs/heads/NINJAmaster' into TimelineUber
Diffstat (limited to 'assets/shaders/plasma.frag.glsl')
-rw-r--r-- | assets/shaders/plasma.frag.glsl | 16 |
1 files changed, 11 insertions, 5 deletions
diff --git a/assets/shaders/plasma.frag.glsl b/assets/shaders/plasma.frag.glsl index 248288a6..4a5ac3da 100644 --- a/assets/shaders/plasma.frag.glsl +++ b/assets/shaders/plasma.frag.glsl | |||
@@ -16,15 +16,21 @@ precision highp float; | |||
16 | 16 | ||
17 | varying vec2 v_uv; | 17 | varying vec2 v_uv; |
18 | uniform float u_time; | 18 | uniform float u_time; |
19 | uniform vec4 color; | 19 | |
20 | uniform float u_wave; | ||
21 | uniform float u_wave1; | ||
22 | uniform float u_wave2; | ||
23 | uniform float u_speed; | ||
20 | 24 | ||
21 | void main(void) | 25 | void main(void) |
22 | { | 26 | { |
23 | float x = v_uv.x ; | 27 | float x = v_uv.x ; |
24 | float y = v_uv.y ; | 28 | float y = v_uv.y ; |
25 | float time = u_time; | 29 | float time = u_time*u_speed; |
26 | float wave = (cos(time + y / 0.2 + cos(x / 0.3 + cos((y / 0.1))))); | 30 | |
27 | float wave1 = (sin(abs(wave + y/0.6))); | 31 | float wave = (cos(time + y / (u_wave+0.2) + cos(x / (u_wave+0.3) + cos((y / (u_wave+0.1)))))); |
28 | float wave2 = (sin(abs(wave1 + y/0.8))); | 32 | float wave1 = (sin(abs(wave + y/u_wave1))); |
33 | float wave2 = (sin(abs(wave1 + y/u_wave2))); | ||
34 | |||
29 | gl_FragColor = vec4( abs(vec3(wave2,wave1,wave)),1.0); | 35 | gl_FragColor = vec4( abs(vec3(wave2,wave1,wave)),1.0); |
30 | } | 36 | } |