forked from SilverStudioGames/WTS
Vibrator Interface
* Added vibrator interface to the public event * Fixed invalid syntax
This commit is contained in:
parent
1ca049ee23
commit
5bdf050a75
BIN
game/images/ui/vibrator_interface/vibrator_interface_background.webp
(Stored with Git LFS)
Normal file
BIN
game/images/ui/vibrator_interface/vibrator_interface_background.webp
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
game/images/ui/vibrator_interface/vibrator_interface_caption_high.webp
(Stored with Git LFS)
Normal file
BIN
game/images/ui/vibrator_interface/vibrator_interface_caption_high.webp
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
game/images/ui/vibrator_interface/vibrator_interface_caption_low.webp
(Stored with Git LFS)
Normal file
BIN
game/images/ui/vibrator_interface/vibrator_interface_caption_low.webp
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
game/images/ui/vibrator_interface/vibrator_interface_caption_medium.webp
(Stored with Git LFS)
Normal file
BIN
game/images/ui/vibrator_interface/vibrator_interface_caption_medium.webp
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
game/images/ui/vibrator_interface/vibrator_interface_emoji_high.webp
(Stored with Git LFS)
Normal file
BIN
game/images/ui/vibrator_interface/vibrator_interface_emoji_high.webp
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
game/images/ui/vibrator_interface/vibrator_interface_emoji_high_disabled.webp
(Stored with Git LFS)
Normal file
BIN
game/images/ui/vibrator_interface/vibrator_interface_emoji_high_disabled.webp
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
game/images/ui/vibrator_interface/vibrator_interface_emoji_low.webp
(Stored with Git LFS)
Normal file
BIN
game/images/ui/vibrator_interface/vibrator_interface_emoji_low.webp
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
game/images/ui/vibrator_interface/vibrator_interface_emoji_low_disabled.webp
(Stored with Git LFS)
Normal file
BIN
game/images/ui/vibrator_interface/vibrator_interface_emoji_low_disabled.webp
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
game/images/ui/vibrator_interface/vibrator_interface_emoji_medium.webp
(Stored with Git LFS)
Normal file
BIN
game/images/ui/vibrator_interface/vibrator_interface_emoji_medium.webp
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
game/images/ui/vibrator_interface/vibrator_interface_emoji_medium_disabled.webp
(Stored with Git LFS)
Normal file
BIN
game/images/ui/vibrator_interface/vibrator_interface_emoji_medium_disabled.webp
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
game/images/ui/vibrator_interface/vibrator_interface_vibration_high.webp
(Stored with Git LFS)
Normal file
BIN
game/images/ui/vibrator_interface/vibrator_interface_vibration_high.webp
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
game/images/ui/vibrator_interface/vibrator_interface_vibration_low.webp
(Stored with Git LFS)
Normal file
BIN
game/images/ui/vibrator_interface/vibrator_interface_vibration_low.webp
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
game/images/ui/vibrator_interface/vibrator_interface_vibration_medium.webp
(Stored with Git LFS)
Normal file
BIN
game/images/ui/vibrator_interface/vibrator_interface_vibration_medium.webp
(Stored with Git LFS)
Normal file
Binary file not shown.
File diff suppressed because it is too large
Load Diff
52
game/scripts/interface/vibrator.rpy
Normal file
52
game/scripts/interface/vibrator.rpy
Normal file
@ -0,0 +1,52 @@
|
||||
transform vibrator_interface_transform:
|
||||
|
||||
zoom 0.4
|
||||
align (0.5, 0.0)
|
||||
|
||||
on show:
|
||||
alpha 0.0
|
||||
linear 0.66 alpha 1.0
|
||||
pause 4.0
|
||||
linear 0.66 alpha 0.0
|
||||
|
||||
on replace: # New widget
|
||||
linear 0.66 alpha 1.0
|
||||
pause 4.0
|
||||
linear 0.66 alpha 0.0
|
||||
|
||||
on replaced: # Old widget
|
||||
alpha 0.0
|
||||
|
||||
on hide:
|
||||
linear 0.66 alpha 0.0
|
||||
|
||||
transform vibrator_interface_captions_transform:
|
||||
pause 1.0
|
||||
linear 0.66 alpha 0.0
|
||||
|
||||
layeredimage vibrator_interface:
|
||||
fit_first True
|
||||
|
||||
always "vibrator_interface_background"
|
||||
|
||||
group emoji multiple variant "emoji":
|
||||
attribute low default if_not "low_disabled"
|
||||
attribute medium default if_not "medium_disabled"
|
||||
attribute high default if_not "high_disabled"
|
||||
attribute low_disabled
|
||||
attribute medium_disabled
|
||||
attribute high_disabled
|
||||
|
||||
group vibration auto prefix "vibration":
|
||||
attribute off null default
|
||||
|
||||
at shake
|
||||
|
||||
group caption prefix "caption":
|
||||
attribute low default
|
||||
attribute medium default
|
||||
attribute high default
|
||||
|
||||
at vibrator_interface_captions_transform
|
||||
|
||||
at vibrator_interface_transform
|
Loading…
Reference in New Issue
Block a user