This commit is contained in:
Anuken
2021-11-06 22:21:46 -04:00
parent da49328412
commit 09a934385e
5 changed files with 12 additions and 5 deletions

View File

@@ -19,7 +19,7 @@ public class EnvRenderers{
Rand rand = new Rand();
Core.assets.load("sprites/rays.png", Texture.class).loaded = t -> {
((Texture)t).setFilter(TextureFilter.linear);
t.setFilter(TextureFilter.linear);
};
Color particleColor = Color.valueOf("a7c1fa");
@@ -98,7 +98,7 @@ public class EnvRenderers{
}
Draw.z(Layer.weather - 1);
Weather.drawNoiseLayers(tex, Color.scarlet, 1000f, 0.24f, 0.4f, 1f, 1f, 0f,
Weather.drawNoiseLayers(tex, Color.scarlet, 1000f, 0.23f, 0.4f, 1f, 1f, 0f,
4, -1.3f, 0.7f, 0.8f, 0.9f);
Draw.reset();
});