Fix whitespaces

This commit is contained in:
schmelczerandras 2020-10-04 11:20:57 +02:00
parent de5dad1e6e
commit 37da0e40c5
2 changed files with 3 additions and 3 deletions

View file

@ -23,14 +23,14 @@ export class InvertedTunnel extends Drawable {
#ifdef WEBGL2_IS_AVAILABLE
float myTerrain(float h) {
return texture(
noiseTexture,
noiseTexture,
vec2(h, 0.5)
)[0] - 0.5;
}
#else
float myTerrain(float h) {
return texture2D(
noiseTexture,
noiseTexture,
vec2(h, 0.5)
)[0] - 0.5;
}