From f6af6a2f2f104ef11971914bb7fe4c2e67c72ceb Mon Sep 17 00:00:00 2001 From: nutbuster Date: Wed, 17 Nov 2021 15:43:50 +1100 Subject: [PATCH] Pan the credits earlier --- game/storyline.rpy | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/game/storyline.rpy b/game/storyline.rpy index 33afb53..57f87a3 100644 --- a/game/storyline.rpy +++ b/game/storyline.rpy @@ -73,11 +73,11 @@ label .ending: play music "audio/OST/Dino Destiny Reader.ogg" call get_ending if _return == 4: - scene d_credits at Pan((0, 0),(0, 9850), 65) with fade + scene d_credits at Pan((0, -500),(0, 9850), 65) with fade elif _return == 3: - scene c_credits at Pan((0, 0),(0, 9850), 65) with fade + scene c_credits at Pan((0, -500),(0, 9850), 65) with fade else: - scene b_credits at Pan((0, 0),(0, 9850), 65) with fade + scene b_credits at Pan((0, -500),(0, 9850), 65) with fade pause stop music fadeout 5 scene black with Dissolve(3)