forked from SilverStudioGames/WTS
Quidditch Outro CG implementation, improvements and bug fixes
* Implemented quidditch outro CGs and posed them * Fixed remaining visual bugs during the retrospection section * Disabled ability to rollback to before the retrospection to avoid issues * Improved sepia transform
This commit is contained in:
parent
f94b96104c
commit
575ab556cd
BIN
game/images/CG/cho_quidditch_outro/cho_quidditch_outro_bedroom_background.webp
(Stored with Git LFS)
Normal file
BIN
game/images/CG/cho_quidditch_outro/cho_quidditch_outro_bedroom_background.webp
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
game/images/CG/cho_quidditch_outro/cho_quidditch_outro_bedroom_potion.webp
(Stored with Git LFS)
Normal file
BIN
game/images/CG/cho_quidditch_outro/cho_quidditch_outro_bedroom_potion.webp
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
game/images/CG/cho_quidditch_outro/cho_quidditch_outro_pitch_background.webp
(Stored with Git LFS)
Normal file
BIN
game/images/CG/cho_quidditch_outro/cho_quidditch_outro_pitch_background.webp
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
game/images/CG/cho_quidditch_outro/cho_quidditch_outro_pitch_overlay.webp
(Stored with Git LFS)
Normal file
BIN
game/images/CG/cho_quidditch_outro/cho_quidditch_outro_pitch_overlay.webp
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
game/images/CG/cho_quidditch_outro/cho_quidditch_outro_pitch_snape_angry.webp
(Stored with Git LFS)
Normal file
BIN
game/images/CG/cho_quidditch_outro/cho_quidditch_outro_pitch_snape_angry.webp
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
game/images/CG/cho_quidditch_outro/cho_quidditch_outro_pitch_snape_smile.webp
(Stored with Git LFS)
Normal file
BIN
game/images/CG/cho_quidditch_outro/cho_quidditch_outro_pitch_snape_smile.webp
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
game/images/CG/cho_quidditch_outro/cho_quidditch_outro_pitch_snape_talk.webp
(Stored with Git LFS)
Normal file
BIN
game/images/CG/cho_quidditch_outro/cho_quidditch_outro_pitch_snape_talk.webp
(Stored with Git LFS)
Normal file
Binary file not shown.
@ -1,5 +1,5 @@
|
||||
transform sepia():
|
||||
matrixcolor SepiaMatrix()
|
||||
transform sepia(strength=1.0, tint='#ffeec2', desat=(0.2126, 0.7152, 0.0722)):
|
||||
matrixcolor TintMatrix(tint) * SaturationMatrix(1.0-strength, desat)
|
||||
|
||||
transform uvlight():
|
||||
matrixcolor SepiaMatrix("#590098", desat=(1.0, 1.5, 1.0))
|
||||
|
@ -2094,3 +2094,21 @@ layeredimage cho_facefuck:
|
||||
group genie auto variant "hands"
|
||||
|
||||
group effects auto multiple
|
||||
|
||||
layeredimage cho_quidditch_outro bedroom:
|
||||
fit "cover"
|
||||
fit_first True
|
||||
|
||||
always "cho_quidditch_outro_bedroom_background"
|
||||
|
||||
attribute potion
|
||||
|
||||
layeredimage cho_quidditch_outro pitch:
|
||||
fit "cover"
|
||||
fit_first True
|
||||
|
||||
always "cho_quidditch_outro_pitch_background"
|
||||
|
||||
group snape auto prefix "snape"
|
||||
|
||||
always "cho_quidditch_outro_pitch_overlay"
|
@ -68,6 +68,8 @@ label cc_pf_strip_T2_intro_E1:
|
||||
|
||||
|
||||
$ cho.equip(cho_outfit_default)
|
||||
$ cho.set_pose("default")
|
||||
$ cho.animation = None
|
||||
$ game.gold = 1984
|
||||
$ game.day = 123
|
||||
call room("main_room")
|
||||
@ -75,7 +77,7 @@ label cc_pf_strip_T2_intro_E1:
|
||||
call cho_chibi("stand", "desk", "base", flip=False)
|
||||
call gen_chibi("sit_behind_desk")
|
||||
|
||||
cho "" (xpos="mid", ypos="base")
|
||||
cho "" (xpos="mid", ypos="base", flip=False)
|
||||
hide screen blkfade
|
||||
with d5
|
||||
|
||||
|
@ -55,6 +55,8 @@ label cc_pf_blowjob_T3_intro_E1:
|
||||
with d5
|
||||
|
||||
$ cho.equip(cho_outfit_default)
|
||||
$ cho.set_pose("default")
|
||||
$ cho.animation = None
|
||||
$ game.gold = 1984
|
||||
$ game.day = 124
|
||||
call room("main_room")
|
||||
|
File diff suppressed because it is too large
Load Diff
@ -106,7 +106,6 @@ label cc_gt_return:
|
||||
$ game.day = 665
|
||||
$ game.daytime = False
|
||||
$ game.weather = "clear"
|
||||
camera screens at sepia
|
||||
call room("main_room")
|
||||
call cho_chibi(xpos="mid", ypos="base")
|
||||
|
||||
@ -146,11 +145,7 @@ label cc_gt_return:
|
||||
|
||||
# Used in Quidditch Outro
|
||||
if _in_replay:
|
||||
show screen blkfade
|
||||
with d5
|
||||
camera screens
|
||||
$ renpy.end_replay()
|
||||
#
|
||||
return
|
||||
|
||||
gen "*Hmm*..." ("base", xpos="far_left", ypos="head")
|
||||
|
||||
|
File diff suppressed because it is too large
Load Diff
138
game/scripts/characters/cho/events/quidditch/retrospection.rpy
Normal file
138
game/scripts/characters/cho/events/quidditch/retrospection.rpy
Normal file
File diff suppressed because it is too large
Load Diff
Loading…
Reference in New Issue
Block a user