Fully implemented teleporters
This commit is contained in:
Binary file not shown.
Binary file not shown.
@@ -14,7 +14,7 @@ varying vec4 v_color;
|
||||
varying vec2 v_texCoord;
|
||||
|
||||
const float tau = 6.28318530717958647692;
|
||||
const float tscl = 0.5;
|
||||
const float tscl = 0.4;
|
||||
|
||||
// Gamma correction
|
||||
#define GAMMA (2.2)
|
||||
@@ -34,8 +34,7 @@ float srand(vec2 co){
|
||||
}
|
||||
|
||||
vec4 Noise(ivec2 x ){
|
||||
vec2 uv = (vec2(x)+0.5)/256.0;
|
||||
return vec4(srand(uv), srand(uv + vec2(10.0, 0.0)), srand(uv + vec2(10.0, 0.0)), srand(uv + vec2(10.0, 10.0)));
|
||||
return vec4(srand((vec2(x)+0.5)/256.0));
|
||||
}
|
||||
|
||||
void main(){
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
#Autogenerated file. Do not modify.
|
||||
#Fri Apr 06 21:25:35 EDT 2018
|
||||
#Sat Apr 07 19:29:57 EDT 2018
|
||||
version=release
|
||||
androidBuildCode=864
|
||||
name=Mindustry
|
||||
|
||||
Reference in New Issue
Block a user