mirror of
https://github.com/RHeavenStudio/HeavenStudio.git
synced 2025-06-12 10:07:38 +02:00
Misc. Fixes and Additions (#440)
* Ringside fixes * Clappy Trio bop logic fix * Quiz show answer reaction fix * prequel background begone! * You can now hide the alien in spaceball * Fixed lightning toss jank * btsds recolor, need to add lights next * Btsds lights and recolor * fixed sweat particle rendering over reporter * Asset bundles accomodation
This commit is contained in:
@ -54,8 +54,7 @@ namespace HeavenStudio.Games.Scripts_ClappyTrio
|
||||
}
|
||||
|
||||
private void Miss(PlayerActionEvent caller) {
|
||||
game.playerHitLast = false;
|
||||
game.missed = true;
|
||||
game.misses++;
|
||||
game.emoCounter = 2;
|
||||
|
||||
if (clapStarted)
|
||||
@ -71,16 +70,12 @@ namespace HeavenStudio.Games.Scripts_ClappyTrio
|
||||
{
|
||||
clapEffect.SetActive(true);
|
||||
Jukebox.PlayOneShotGame("clappyTrio/rightClap");
|
||||
|
||||
if (this.canHit)
|
||||
game.playerHitLast = true;
|
||||
}
|
||||
else
|
||||
{
|
||||
clapEffect.SetActive(false);
|
||||
Jukebox.PlayOneShot("miss");
|
||||
game.playerHitLast = false;
|
||||
game.missed = true;
|
||||
game.misses++;
|
||||
|
||||
if (clapStarted)
|
||||
this.canHit = false;
|
||||
|
Reference in New Issue
Block a user