2022-05-16 23:48:22 +00:00
|
|
|
init python:
|
|
|
|
def genie_transform(trans, st, at):
|
2023-03-31 22:41:48 +00:00
|
|
|
trans.xpos = states.gen.image.xpos
|
|
|
|
trans.ypos = states.gen.image.ypos
|
|
|
|
trans.zoom = states.gen.image.zoom
|
|
|
|
trans.xzoom = states.gen.image.xzoom
|
|
|
|
trans.offset = states.gen.image.offset
|
2022-05-16 23:48:22 +00:00
|
|
|
return 0
|
|
|
|
|
2022-06-29 18:46:19 +00:00
|
|
|
layeredimage genie_stats:
|
|
|
|
anchor (0.0, 1.0)
|
|
|
|
|
|
|
|
always "characters/genie/base.webp"
|
2022-12-28 19:06:24 +00:00
|
|
|
always "characters/genie/outfits/robes.webp"
|
|
|
|
always "characters/genie/outfits/robes_beard.webp"
|
2022-06-29 18:46:19 +00:00
|
|
|
|
2022-12-28 19:06:24 +00:00
|
|
|
# TODO: Add outfit support; Low priority
|
2022-06-29 18:46:19 +00:00
|
|
|
|
2022-05-16 23:48:22 +00:00
|
|
|
layeredimage genie:
|
2022-06-27 21:31:51 +00:00
|
|
|
anchor (0.0, 1.0)
|
2022-05-16 23:48:22 +00:00
|
|
|
|
2023-03-05 18:34:37 +00:00
|
|
|
group outfit:
|
|
|
|
attribute robes default null
|
2022-05-16 23:48:22 +00:00
|
|
|
attribute nude "characters/genie/hair.webp"
|
|
|
|
|
|
|
|
always "characters/genie/base.webp"
|
|
|
|
|
|
|
|
group face:
|
2023-03-05 18:34:37 +00:00
|
|
|
attribute base default null
|
2022-05-16 23:48:22 +00:00
|
|
|
attribute grin "characters/genie/grin.webp"
|
|
|
|
attribute angry "characters/genie/angry.webp"
|
|
|
|
attribute smile "characters/genie/smile.webp"
|
|
|
|
attribute open "characters/genie/open.webp"
|
|
|
|
|
|
|
|
group outfit:
|
2022-12-21 20:38:20 +00:00
|
|
|
attribute robes default "characters/genie/outfits/robes.webp"
|
2023-03-05 18:34:37 +00:00
|
|
|
attribute nude null
|
2022-12-21 20:38:20 +00:00
|
|
|
attribute santa "characters/genie/outfits/santa.webp"
|
|
|
|
|
2023-03-05 18:34:37 +00:00
|
|
|
group face multiple:
|
2022-12-21 20:38:20 +00:00
|
|
|
attribute robes default "characters/genie/outfits/robes_beard.webp" if_all ["robes"]
|
2023-03-05 18:34:37 +00:00
|
|
|
attribute nude "characters/genie/beard.webp" if_all ["nude"]
|
|
|
|
attribute base "characters/genie/outfits/santa_beard_base.webp" if_all ["santa", "base"]
|
|
|
|
attribute grin "characters/genie/outfits/santa_beard_grin.webp" if_all ["santa", "grin"]
|
|
|
|
attribute angry "characters/genie/outfits/santa_beard_angry.webp" if_all ["santa", "angry"]
|
|
|
|
attribute smile "characters/genie/outfits/santa_beard_smile.webp" if_all ["santa", "smile"]
|
|
|
|
attribute open "characters/genie/outfits/santa_beard_open.webp" if_all ["santa", "open"]
|
2022-05-16 23:48:22 +00:00
|
|
|
|
|
|
|
at Transform(function=genie_transform)
|
|
|
|
|
|
|
|
image side genie = LayeredImageProxy("genie")
|