param
This commit is contained in:
parent
a6df066962
commit
29e1c182e8
2 changed files with 2 additions and 2 deletions
|
@ -172,7 +172,7 @@ void main() {
|
||||||
gl_FragColor = texture(u_buffer0, st);
|
gl_FragColor = texture(u_buffer0, st);
|
||||||
#else
|
#else
|
||||||
// Main Buffer
|
// Main Buffer
|
||||||
vec2 st2 = st + vec2(simplex3d_fractal(vec3(st,0)/80), simplex3d_fractal(vec3(0,st.ts)/80)) * 16;
|
vec2 st2 = st + vec2(simplex3d_fractal(vec3(st/200,u_time/4)), simplex3d_fractal(vec3(u_time/4,st.ts/200))) * 40;
|
||||||
vec3 dispColor = vec3(0, 0, 0);
|
vec3 dispColor = vec3(0, 0, 0);
|
||||||
vec4 pointCloudColor = texture(u_ofcam, st);
|
vec4 pointCloudColor = texture(u_ofcam, st);
|
||||||
|
|
||||||
|
|
|
@ -138,7 +138,7 @@ void main()
|
||||||
target.xyz = pos;
|
target.xyz = pos;
|
||||||
}
|
}
|
||||||
else if (target.w > 0) { // targeted
|
else if (target.w > 0) { // targeted
|
||||||
age += 0.001;
|
age += 0.01;
|
||||||
thermo = misc.x;
|
thermo = misc.x;
|
||||||
}
|
}
|
||||||
else { // wandering
|
else { // wandering
|
||||||
|
|
Loading…
Reference in a new issue