From c341715901387c194a4920af8a13f52c0923dae2 Mon Sep 17 00:00:00 2001 From: minenice55 Date: Wed, 17 Jan 2024 19:50:12 -0500 Subject: [PATCH] fix minor pj party anim bug update credits adjust a mixer effect setting --- Assets/Resources/Credits.txt | 5 ++--- Assets/Resources/MainMixer.mixer | 2 +- Assets/Scripts/Games/PajamaParty/CtrPillowPlayer.cs | 7 +++++-- 3 files changed, 8 insertions(+), 6 deletions(-) diff --git a/Assets/Resources/Credits.txt b/Assets/Resources/Credits.txt index 6a485a4ba..dffb32968 100644 --- a/Assets/Resources/Credits.txt +++ b/Assets/Resources/Credits.txt @@ -7,7 +7,6 @@ -Mytiaoga -Carson -saladplainzone --Pengu123 -Krıspy Kreme -DPS2004 -Jellirby @@ -18,7 +17,7 @@ -Maddy / saladplainzone -NoahAmp -Bhaos --Raffy +-RaffyTaffy14 -Thinedave Artwork @@ -54,7 +53,7 @@ -Butternnife -Minesweeper95 -mizuno --Flowercardiganwillow +-Malleable Frog -vincells Music diff --git a/Assets/Resources/MainMixer.mixer b/Assets/Resources/MainMixer.mixer index 62c8a18e3..539be04b3 100644 --- a/Assets/Resources/MainMixer.mixer +++ b/Assets/Resources/MainMixer.mixer @@ -86,7 +86,7 @@ AudioMixerController: m_StartSnapshot: {fileID: 24500006} m_SuspendThreshold: -80 m_EnableSuspend: 1 - m_UpdateMode: 0 + m_UpdateMode: 1 m_ExposedParameters: [] m_AudioMixerGroupViews: - guids: diff --git a/Assets/Scripts/Games/PajamaParty/CtrPillowPlayer.cs b/Assets/Scripts/Games/PajamaParty/CtrPillowPlayer.cs index c24d14399..a37dddbfb 100644 --- a/Assets/Scripts/Games/PajamaParty/CtrPillowPlayer.cs +++ b/Assets/Scripts/Games/PajamaParty/CtrPillowPlayer.cs @@ -238,8 +238,11 @@ namespace HeavenStudio.Games.Scripts_PajamaParty beat + 2, delegate { - anim.DoUnscaledAnimation("MakoThrow" + animSuffix, 1); - game.PrepareHighState(); + if (hit && !ng) + { + anim.DoUnscaledAnimation("MakoThrow" + animSuffix, 1); + game.PrepareHighState(); + } } ) });