diff options
| author | Elizabeth Hunt <me@liz.coffee> | 2026-01-24 15:44:14 -0800 |
|---|---|---|
| committer | Elizabeth Hunt <me@liz.coffee> | 2026-01-24 15:44:14 -0800 |
| commit | 40f482227da73a27e707b28549a8c13796f593a0 (patch) | |
| tree | f5227f5b59552d4e623ce14dee98d45c5e19b4d9 /core/src/main | |
| parent | 99fe9f7e459643080ac1de7040f0572e0850d01d (diff) | |
| download | the-abstraction-engine-v2-40f482227da73a27e707b28549a8c13796f593a0.tar.gz the-abstraction-engine-v2-40f482227da73a27e707b28549a8c13796f593a0.zip | |
ScrollLogo a tiny bit faster
Diffstat (limited to 'core/src/main')
| -rw-r--r-- | core/src/main/java/coffee/liz/abstractionengine/app/screen/ScrollLogo.java | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/core/src/main/java/coffee/liz/abstractionengine/app/screen/ScrollLogo.java b/core/src/main/java/coffee/liz/abstractionengine/app/screen/ScrollLogo.java index cc54af3..ba5f2b4 100644 --- a/core/src/main/java/coffee/liz/abstractionengine/app/screen/ScrollLogo.java +++ b/core/src/main/java/coffee/liz/abstractionengine/app/screen/ScrollLogo.java @@ -15,13 +15,13 @@ import java.time.Duration; @RequiredArgsConstructor public class ScrollLogo implements Screen { - private static final Duration SHOW_FOR = Duration.ofSeconds(8); + private static final Duration SHOW_FOR = Duration.ofSeconds(6); private static final float LOGO_HEIGHT = 70f; private static final float PENGUIN_SIZE = 20f; private static final float SCROLL_PERCENT = 0.4f; - private static final float EEPY_PERCENT = 0.3f; - private static final float EEP_PERCENT = 0.10f; - private static final float FADE_PERCENT = 0.2f; + private static final float EEPY_PERCENT = 0.4f; + private static final float EEP_PERCENT = 0.05f; + private static final float FADE_PERCENT = 0.15f; private final AbstractionEngineGame game; |
