Bug fixes

* Fixed intro events
This commit is contained in:
LoafyLemon 2024-05-15 20:26:23 +01:00
parent 2a086ede4a
commit 81748af47e
3 changed files with 80 additions and 88 deletions

File diff suppressed because it is too large Load Diff

View File

@ -66,9 +66,9 @@ screen gfx_effect(start_x=None, start_y=None, target_x=None, target_y=None, img=
zorder 30 zorder 30
if target_x: if target_x:
add img xanchor xanchor yanchor yanchor zoom zoom at move_to(start_x, start_y, target_x, target_y, duration) add img xanchor xanchor yanchor yanchor zoom zoom at move_to(start_x*2, start_y*2, target_x*2, target_y*2, duration)
else: else:
add img xanchor xanchor yanchor yanchor zoom zoom xpos start_x ypos start_y add img xanchor xanchor yanchor yanchor zoom zoom xpos start_x*2 ypos start_y*2
timer timer action Hide("gfx_effect") timer timer action Hide("gfx_effect")
screen ctc(): screen ctc():

File diff suppressed because it is too large Load Diff