forked from SilverStudioGames/WTS
Compare commits
34 Commits
Author | SHA1 | Date | |
---|---|---|---|
953d58dee3 | |||
4bec8dfb24 | |||
508a88b4b6 | |||
d6ef320c5d | |||
0381093229 | |||
1ee74a61ac | |||
6ff3d39940 | |||
f8130fdb4d | |||
9b96c5572c | |||
757a39d782 | |||
bde6a30acc | |||
c24f2e25f0 | |||
a13dac8f93 | |||
0cc22f413c | |||
9a8fdf7450 | |||
80b32a05fc | |||
c11891bf11 | |||
b2d1b66b05 | |||
65ae5ce797 | |||
a39641f5cb | |||
f9cf059f16 | |||
39fc0c8a76 | |||
5925a9298c | |||
85bf97bdf9 | |||
95b3db770e | |||
0d4a309898 | |||
9d61a4c583 | |||
5a2434df5e | |||
06b4da76f6 | |||
a2665c15fe | |||
710400f2ce | |||
a3ccbf60ce | |||
07d0c7b151 | |||
49fe8f4902 |
BIN
game/characters/genie/outfits/robes_beard.webp
(Stored with Git LFS)
BIN
game/characters/genie/outfits/robes_beard.webp
(Stored with Git LFS)
Binary file not shown.
@ -1,8 +1,6 @@
|
|||||||
image object:
|
|
||||||
Null()
|
|
||||||
|
|
||||||
transform OBJbutterfly(hue=random.randint(0, 359)):
|
transform OBJbutterfly(hue=random.randint(0, 359)):
|
||||||
zoom random.uniform(0.4, 0.85)
|
zoom random.uniform(0.4, 0.85)
|
||||||
|
matrixcolor HueMatrix(hue)
|
||||||
|
|
||||||
choice:
|
choice:
|
||||||
pause random.randint(1, 7)
|
pause random.randint(1, 7)
|
||||||
@ -22,13 +20,13 @@ transform OBJbutterfly(hue=random.randint(0, 359)):
|
|||||||
ease_circ 1.0 rotate 15
|
ease_circ 1.0 rotate 15
|
||||||
repeat
|
repeat
|
||||||
parallel:
|
parallel:
|
||||||
im.MatrixColor("images/rooms/quidditch_pitch/butterfly/0.webp", im.matrix.hue(hue)) with d3
|
"images/rooms/quidditch_pitch/butterfly/0.webp" with d3
|
||||||
pause .3
|
pause .3
|
||||||
im.MatrixColor("images/rooms/quidditch_pitch/butterfly/1.webp", im.matrix.hue(hue)) with d3
|
"images/rooms/quidditch_pitch/butterfly/1.webp" with d3
|
||||||
pause .3
|
pause .3
|
||||||
im.MatrixColor("images/rooms/quidditch_pitch/butterfly/2.webp", im.matrix.hue(hue)) with d3
|
"images/rooms/quidditch_pitch/butterfly/2.webp" with d3
|
||||||
pause .3
|
pause .3
|
||||||
im.MatrixColor("images/rooms/quidditch_pitch/butterfly/1.webp", im.matrix.hue(hue)) with d3
|
"images/rooms/quidditch_pitch/butterfly/1.webp" with d3
|
||||||
pause .3
|
pause .3
|
||||||
repeat
|
repeat
|
||||||
choice:
|
choice:
|
||||||
@ -49,13 +47,13 @@ transform OBJbutterfly(hue=random.randint(0, 359)):
|
|||||||
ease_circ 1.0 rotate -15
|
ease_circ 1.0 rotate -15
|
||||||
repeat
|
repeat
|
||||||
parallel:
|
parallel:
|
||||||
im.MatrixColor("images/rooms/quidditch_pitch/butterfly/0.webp", im.matrix.hue(hue)) with d3
|
"images/rooms/quidditch_pitch/butterfly/0.webp" with d3
|
||||||
pause .3
|
pause .3
|
||||||
im.MatrixColor("images/rooms/quidditch_pitch/butterfly/1.webp", im.matrix.hue(hue)) with d3
|
"images/rooms/quidditch_pitch/butterfly/1.webp" with d3
|
||||||
pause .3
|
pause .3
|
||||||
im.MatrixColor("images/rooms/quidditch_pitch/butterfly/2.webp", im.matrix.hue(hue)) with d3
|
"images/rooms/quidditch_pitch/butterfly/2.webp" with d3
|
||||||
pause .3
|
pause .3
|
||||||
im.MatrixColor("images/rooms/quidditch_pitch/butterfly/1.webp", im.matrix.hue(hue)) with d3
|
"images/rooms/quidditch_pitch/butterfly/1.webp" with d3
|
||||||
pause .3
|
pause .3
|
||||||
repeat
|
repeat
|
||||||
repeat
|
repeat
|
||||||
|
@ -1,4 +1,3 @@
|
|||||||
|
|
||||||
init 5 python:
|
init 5 python:
|
||||||
def her_cg_doll(st, at):
|
def her_cg_doll(st, at):
|
||||||
return hermione.image, None
|
return hermione.image, None
|
||||||
@ -25,35 +24,21 @@ image CG cho_doll = DynamicDisplayable(cho_cg_doll)
|
|||||||
image CG ast_doll = DynamicDisplayable(ast_cg_doll)
|
image CG ast_doll = DynamicDisplayable(ast_cg_doll)
|
||||||
image CG sus_doll = DynamicDisplayable(sus_cg_doll)
|
image CG sus_doll = DynamicDisplayable(sus_cg_doll)
|
||||||
|
|
||||||
image CG luna = Fixed(
|
transform CG_masker(child):
|
||||||
"images/CG/common/bg.webp",
|
contains:
|
||||||
AlphaMask(Composite((2160, 1200), (880, -180), Transform("CG lun_doll", zoom=1.2)), "images/CG/common/mask.webp"),
|
"images/CG/common/bg.webp"
|
||||||
)
|
contains:
|
||||||
|
AlphaMask(
|
||||||
|
Fixed(Transform(child, zoom=1.2, pos=(880, -180)), xfit=True, yfit=True),
|
||||||
|
"images/CG/common/mask.webp",
|
||||||
|
)
|
||||||
|
|
||||||
image CG hermione = Fixed(
|
image CG luna = At("CG lun_doll", CG_masker)
|
||||||
"images/CG/common/bg.webp",
|
image CG hermione = At("CG her_doll", CG_masker)
|
||||||
AlphaMask(Composite((2160, 1200), (880, -180), Transform("CG her_doll", zoom=1.2)), "images/CG/common/mask.webp"),
|
image CG tonks = At("CG ton_doll", CG_masker)
|
||||||
)
|
image CG cho = At("CG cho_doll", CG_masker)
|
||||||
|
image CG astoria = At("CG ast_doll", CG_masker)
|
||||||
image CG tonks = Fixed(
|
image CG susan = At("CG sus_doll", CG_masker)
|
||||||
"images/CG/common/bg.webp",
|
|
||||||
AlphaMask(Composite((2160, 1200), (880, -180), Transform("CG ton_doll", zoom=1.2)), "images/CG/common/mask.webp"),
|
|
||||||
)
|
|
||||||
|
|
||||||
image CG cho = Fixed(
|
|
||||||
"images/CG/common/bg.webp",
|
|
||||||
AlphaMask(Composite((2160, 1200), (880, -180), Transform("CG cho_doll", zoom=1.2)), "images/CG/common/mask.webp"),
|
|
||||||
)
|
|
||||||
|
|
||||||
image CG astoria = Fixed(
|
|
||||||
"images/CG/common/bg.webp",
|
|
||||||
AlphaMask(Composite((2160, 1200), (880, -180), Transform("CG ast_doll", zoom=1.2)), "images/CG/common/mask.webp"),
|
|
||||||
)
|
|
||||||
|
|
||||||
image CG susan = Fixed(
|
|
||||||
"images/CG/common/bg.webp",
|
|
||||||
AlphaMask(Composite((2160, 1200), (880, -180), Transform("CG sus_doll", zoom=1.2)), "images/CG/common/mask.webp"),
|
|
||||||
)
|
|
||||||
|
|
||||||
# Snape CG
|
# Snape CG
|
||||||
screen snape_groping():
|
screen snape_groping():
|
||||||
|
File diff suppressed because it is too large
Load Diff
@ -712,7 +712,7 @@ label hufflepuff_match:
|
|||||||
her "Higher up, Cho seems to have caught an eye on the snitch and is chasing after it, directly followed by Cedric who..." ("open", "slit", "low", "stare", flip=True)
|
her "Higher up, Cho seems to have caught an eye on the snitch and is chasing after it, directly followed by Cedric who..." ("open", "slit", "low", "stare", flip=True)
|
||||||
her "Hold on a minute... Is Cho wearing a skirt?" ("scream", "wide", "worried", "stare")
|
her "Hold on a minute... Is Cho wearing a skirt?" ("scream", "wide", "worried", "stare")
|
||||||
|
|
||||||
show image "CG quidditch cho_flashing" as cg zorder 17
|
show expression "CG quidditch cho_flashing" as cg zorder 17
|
||||||
with fade
|
with fade
|
||||||
|
|
||||||
play sound "sounds/crowd_gasp.ogg"
|
play sound "sounds/crowd_gasp.ogg"
|
||||||
@ -735,7 +735,7 @@ label hufflepuff_match:
|
|||||||
call ctc
|
call ctc
|
||||||
|
|
||||||
# Pack to stands.
|
# Pack to stands.
|
||||||
hide image cg
|
hide expression cg
|
||||||
with fade
|
with fade
|
||||||
pause .1
|
pause .1
|
||||||
|
|
||||||
|
@ -1344,7 +1344,7 @@ label slytherin_match:
|
|||||||
call gen_chibi("stand_alt", 300, 365, flip=False)
|
call gen_chibi("stand_alt", 300, 365, flip=False)
|
||||||
call sna_chibi("stand", 215, 360, flip=True)
|
call sna_chibi("stand", 215, 360, flip=True)
|
||||||
|
|
||||||
call quidditch_stands(crowd=[], crowd_react=[None, None, None])
|
call quidditch_stands(crowd=(), crowd_react=(None, None, None))
|
||||||
|
|
||||||
stop background fadeout 4
|
stop background fadeout 4
|
||||||
stop music fadeout 2
|
stop music fadeout 2
|
||||||
|
Some files were not shown because too many files have changed in this diff Show More
Loading…
Reference in New Issue
Block a user