diff --git a/Assets/Resources/Sprites/Games/DJSchool/Animations/DJ Yellow/IdleBop2.anim b/Assets/Resources/Sprites/Games/DJSchool/Animations/DJ Yellow/IdleBop2.anim index 24499bcf..46a8579e 100644 --- a/Assets/Resources/Sprites/Games/DJSchool/Animations/DJ Yellow/IdleBop2.anim +++ b/Assets/Resources/Sprites/Games/DJSchool/Animations/DJ Yellow/IdleBop2.anim @@ -66,7 +66,7 @@ AnimationClip: m_Level: 0 m_CycleOffset: 0 m_HasAdditiveReferencePose: 0 - m_LoopTime: 1 + m_LoopTime: 0 m_LoopBlend: 0 m_LoopBlendOrientation: 0 m_LoopBlendPositionY: 0 diff --git a/Assets/Scripts/Conductor.cs b/Assets/Scripts/Conductor.cs index 1acfb49b..7f60d3cf 100644 --- a/Assets/Scripts/Conductor.cs +++ b/Assets/Scripts/Conductor.cs @@ -203,6 +203,10 @@ namespace HeavenStudio if (result) { lastReportedBeat += 1f; + if (lastReportedBeat < songPositionInBeats) + { + lastReportedBeat = Mathf.Round(songPositionInBeats); + } } return result; }