Balance tweaks / Changed block liquid place-ability

This commit is contained in:
Anuken
2018-09-01 22:29:25 -04:00
parent d90d88c68b
commit 469b3c0a94
8 changed files with 14 additions and 19 deletions

View File

@@ -28,5 +28,5 @@ void main() {
m = float(int(m / roundm)) * roundm + roundm;
gl_FragColor.rgb = mix(v_color.rgb, vec3(0.0), m);
gl_FragColor.a = mod(abs(coords.x) + abs(coords.y), 100.0) < 30.0 ? 1.0 : 0.0;
gl_FragColor.a = mod(abs(coords.x) + abs(coords.y), 110.0) < 35.0 ? 1.0 : 0.0;
}