diff options
author | Jesusaves <cpntb1@ymail.com> | 2022-11-02 18:42:48 -0300 |
---|---|---|
committer | Jesusaves <cpntb1@ymail.com> | 2022-11-02 18:42:48 -0300 |
commit | cd996a86121ec5ad6c4b2c2c5ec1ded4eec652e8 (patch) | |
tree | 188cde72ded67bdacb5f6d538cd7a51d2a29d929 /game/core.rpy | |
parent | a3d8d1108c92bfafcdcac7c91348b25a888014fe (diff) | |
download | renpy-cd996a86121ec5ad6c4b2c2c5ec1ded4eec652e8.tar.gz renpy-cd996a86121ec5ad6c4b2c2c5ec1ded4eec652e8.tar.bz2 renpy-cd996a86121ec5ad6c4b2c2c5ec1ded4eec652e8.tar.xz renpy-cd996a86121ec5ad6c4b2c2c5ec1ded4eec652e8.zip |
Skip splashscreen after preload is done
Diffstat (limited to 'game/core.rpy')
-rw-r--r-- | game/core.rpy | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/game/core.rpy b/game/core.rpy index c23bb90..a6320c3 100644 --- a/game/core.rpy +++ b/game/core.rpy @@ -222,7 +222,7 @@ init 10 python: ######### Done with pre-init label splashscreen: - show TMW2 at truecenter with fade + show TMW2 at truecenter with None #fade python: if persistent.hello is None: p1=2.5 @@ -231,7 +231,7 @@ label splashscreen: p1=0.5 p2=0.5 renpy.pause(p1) - hide TMW2 with Dissolve(p2) + hide TMW2 with None #Dissolve(p2) call before_main_menu if persistent.hello is None: call screen preferences |