Bug fixes and additions

* Added rummage sound
* Added noshake parameter to personal CG
* Remastered vibrator sounds to avoid clipping
* Improved dialogue pacing
* Improved chibis positioning
* Fixed weather sounds playing over public CG
* Fixed shaking CG displayable
* Fixed logic issues
This commit is contained in:
LoafyLemon 2022-10-06 22:16:39 +01:00
parent 1e63a1651c
commit 10e99cbc05
8 changed files with 100 additions and 78 deletions

View File

@ -68,6 +68,7 @@ image CG ass expand classroom A2:
layeredimage her_vibrators_public:
fit "cover"
fit_first True
attribute background default
@ -146,10 +147,14 @@ layeredimage her_vibrators_personal hermione1:
group vibrator multiple variant "vibrator":
attribute base default
attribute eggl default at shake_xlinear
attribute eggr default at shake_xlinear
attribute eggl default at shake_xlinear if_not "noshake"
attribute eggr default at shake_xlinear if_not "noshake"
attribute eggl default if_any "noshake"
attribute eggr default if_any "noshake"
attribute tape default
attribute noshake null
layeredimage her_vibrators_personal hermione2:
fit "cover"
fit_first True
@ -172,11 +177,16 @@ layeredimage her_vibrators_personal hermione2:
group vibrator multiple variant "vibrator":
attribute base default
attribute eggl default at shake_xlinear
attribute eggr default at shake_xlinear
attribute eggm default at shake_xlinear
attribute eggl default at shake_xlinear if_not "noshake"
attribute eggr default at shake_xlinear if_not "noshake"
attribute eggm default at shake_xlinear if_not "noshake"
attribute eggl default if_any "noshake"
attribute eggr default if_any "noshake"
attribute eggm default if_any "noshake"
attribute tape default
attribute noshake null
layeredimage her_vibrators_personal hermione3:
fit "cover"
fit_first True

File diff suppressed because it is too large Load Diff

View File

@ -38,5 +38,5 @@ transform color_temperature(factor=1.0, strength=1.0):
mesh True
shader "color_temperature_shader"
u_factor factor
u_factor factor # 0.075 dusk, 0.1 dawn, 0.5 evening, 1.0 night
u_strength strength

BIN
game/sounds/rummage.ogg (Stored with Git LFS) Normal file

Binary file not shown.

BIN
game/sounds/vibrator_high.ogg (Stored with Git LFS)

Binary file not shown.

BIN
game/sounds/vibrator_low.ogg (Stored with Git LFS)

Binary file not shown.

BIN
game/sounds/vibrator_medium.ogg (Stored with Git LFS)

Binary file not shown.

BIN
game/sounds/vibrator_overdrive.ogg (Stored with Git LFS)

Binary file not shown.