mirror of
https://git.cavemanon.xyz/Cavemanon/SnootGame.git
synced 2025-03-13 20:19:25 +01:00
add ending sketches
This commit is contained in:
parent
48913f8a83
commit
84aa2bafb1
4 changed files with 30 additions and 7 deletions
BIN
game/images/ending/b_sketch.png
Normal file
BIN
game/images/ending/b_sketch.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 77 KiB |
BIN
game/images/ending/c_sketch.png
Normal file
BIN
game/images/ending/c_sketch.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 78 KiB |
BIN
game/images/ending/d_sketch.png
Normal file
BIN
game/images/ending/d_sketch.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 120 KiB |
|
@ -53,17 +53,40 @@ label storyline:
|
|||
call .ending
|
||||
return
|
||||
|
||||
image b_credits = Composite(
|
||||
(1920, 11000),
|
||||
(0, 0), "credits",
|
||||
(0, 10410), "b_sketch")
|
||||
|
||||
image c_credits = Composite(
|
||||
(1920, 11000),
|
||||
(0, 0), "credits",
|
||||
(0, 10410), "c_sketch")
|
||||
|
||||
image d_credits = Composite(
|
||||
(1920, 11000),
|
||||
(0, 0), "credits",
|
||||
(0, 10410), "d_sketch")
|
||||
|
||||
label creditsdebug:
|
||||
label .ending:
|
||||
play music "audio/OST/Dino Destiny Reader.ogg"
|
||||
scene credits at Pan((0, 0),(0, 7400), 61) with fade
|
||||
pause 1200
|
||||
scene black with fade
|
||||
stop music fadeout 3.0
|
||||
pause 5
|
||||
call get_ending
|
||||
if _return == 4:
|
||||
scene d_credits at Pan((0, 0),(0, 9850), 1) with fade
|
||||
elif _return == 3:
|
||||
scene c_credits at Pan((0, 0),(0, 9850), 1) with fade
|
||||
else:
|
||||
scene b_credits at Pan((0, 0),(0, 9850), 1) with fade
|
||||
pause
|
||||
stop music fadeout 5
|
||||
scene black with Dissolve(3)
|
||||
pause 2
|
||||
if tradwife:
|
||||
scene c10 with fade
|
||||
scene c10 with Dissolve(1.5)
|
||||
pause 20
|
||||
elif anonscore >= 4 and fangscore >= 4:
|
||||
scene ending_d_cg with fade
|
||||
scene ending_d_cg with Dissolve(1.5)
|
||||
pause 20
|
||||
scene black with Dissolve(2)
|
||||
return
|
||||
|
|
Loading…
Reference in a new issue