mirror of
https://git.cavemanon.xyz/Cavemanon/SnootGame.git
synced 2025-01-22 17:26:20 +01:00
int'd
This commit is contained in:
parent
2f34eca85b
commit
dda914a2c5
1 changed files with 10 additions and 8 deletions
|
@ -1266,18 +1266,18 @@ label chapter_4:
|
|||
ypos -75
|
||||
area(0.225, 0, 795, 1100)
|
||||
# xalign 0.5 yanchor 0 ypos 0
|
||||
hovered Hide("prompt")
|
||||
unhovered Show("prompt")
|
||||
hovered Hide("prompt", 'overlay')
|
||||
unhovered Show("prompt", 'overlay')
|
||||
|
||||
|
||||
# kick the player back out in X seconds in case they can't find the 'close' button
|
||||
# timer 10.0 action Return()
|
||||
add "white"
|
||||
timer 2 action(Show("mousedetect"), Show("prompt"))
|
||||
timer 2.0 action(Show("mousedetect"), Show("prompt", 'overlay'))
|
||||
|
||||
screen textscroll():
|
||||
add Solid("FFF")
|
||||
transform: # thanks based nutbuster
|
||||
transform:
|
||||
zoom 0.8
|
||||
rotate 12.5
|
||||
viewport:
|
||||
|
@ -1287,16 +1287,18 @@ label chapter_4:
|
|||
arrowkeys True
|
||||
# edgescroll(400, 800)
|
||||
|
||||
add "texts"
|
||||
yinitial 1.0
|
||||
|
||||
imagebutton auto "fangbutton%s" xalign 0.53 yalign 0.5:
|
||||
ypos 65+(107/2)
|
||||
ypos 65+(int(107/2))
|
||||
xsize 284
|
||||
ysize 107
|
||||
action (Hide("mousedetect"), Hide("prompt"), Hide("textscroll", transition=Dissolve(1.0)), Return())
|
||||
action (Hide("mousedetect", 'overlay'), Hide("prompt", 'overlay'), Hide("textscroll", transition=Dissolve(1.0)), Return())
|
||||
add "texts"
|
||||
|
||||
add "fang phone"
|
||||
|
||||
#call screen mousedetect
|
||||
call screen textscroll with dissolve
|
||||
|
||||
pause 1
|
||||
|
|
Loading…
Reference in a new issue