Demo cleanup

This commit is contained in:
Natty 2022-04-14 20:36:13 +02:00
parent c79886d56d
commit 6725e24135
No known key found for this signature in database
GPG Key ID: 40AB22FA416C7019
1 changed files with 1 additions and 2 deletions

View File

@ -83,9 +83,8 @@ public class Main extends PlutoApplication
.setFitBox(new Rectanglef(50.0f, 50.0f, this.display.getWidth() - 50.0f, this.display.getHeight() - 50.0f)) .setFitBox(new Rectanglef(50.0f, 50.0f, this.display.getWidth() - 50.0f, this.display.getHeight() - 50.0f))
.setPaint(LiPaint.solidColor(Color.VERY_DARK_GRAY)); .setPaint(LiPaint.solidColor(Color.VERY_DARK_GRAY));
ImmediateFontRenderer.drawString(0, 102, "Welcome to PlutoEngine v. %s!".formatted(Pluto.VERSION), BasicApplicationDemoMod.font, welcomeStyle); ImmediateFontRenderer.drawString(0, 102, "Welcome to PlutoEngine v. %s!".formatted(Pluto.VERSION), BasicApplicationDemoMod.font, welcomeStyle);
float gPos = (System.currentTimeMillis() % 7200) / 20.0f;
ImmediateFontRenderer.drawString(500, 50, "Hue: %f".formatted(gPos), BasicApplicationDemoMod.font, style);
float gPos = (System.currentTimeMillis() % 7200) / 20.0f;
var stops = new LiGradientPaint.Stop[16]; var stops = new LiGradientPaint.Stop[16];
for (int i = 0; i < stops.length; i++) for (int i = 0; i < stops.length; i++)
stops[i] = new LiGradientPaint.Stop(i / (float) stops.length, Color.from(new HSB(gPos + i * 10, 1.0f, 1.0f).toRGBA())); stops[i] = new LiGradientPaint.Stop(i / (float) stops.length, Color.from(new HSB(gPos + i * 10, 1.0f, 1.0f).toRGBA()));