1
0
forked from akanyan/mu3-mods
Files
mu3-mods/BetterGiveUp/MU3.Notes/patch_FieldObject.cs
akanyan 25ca07edd6 fix: misc cleanup
Also set HideVersion default to false
Also fix the new skipper crashing on tutorial
2024-12-21 13:55:36 +00:00

19 lines
573 B
C#

using UnityEngine;
namespace MU3.Notes;
class patch_FieldObject: FieldObject {
class patch_BarNotes {
class patch_Bar: BarNotes.Bar {
public extern void orig_update(NotesManager mgr, float width = 1f);
public new void update(NotesManager mgr, float width = 1f) {
orig_update(mgr, width);
if(frameAppear <= (double)mgr.getCurrentFrame() || itemBar == null) {
return;
}
itemBar.go.transform.localScale = Vector3.zero;
}
}
}
}