mirror of
https://github.com/RHeavenStudioPlus/HeavenStudioPlus.git
synced 2024-11-10 03:35:10 +00:00
Changing the "Update" function to "LateUpdate" in GameManager might fix some animation bugs. But also might cause a few others
This commit is contained in:
parent
0c2fbf72e5
commit
10ffad5d3f
1 changed files with 1 additions and 1 deletions
|
@ -125,7 +125,7 @@ namespace RhythmHeavenMania
|
||||||
}
|
}
|
||||||
|
|
||||||
// LateUpdate works a bit better but causes a bit of bugs, so remind me to fix those eventually
|
// LateUpdate works a bit better but causes a bit of bugs, so remind me to fix those eventually
|
||||||
private void Update()
|
private void LateUpdate()
|
||||||
{
|
{
|
||||||
if (Beatmap.entities.Count < 1)
|
if (Beatmap.entities.Count < 1)
|
||||||
return;
|
return;
|
||||||
|
|
Loading…
Reference in a new issue