mu3-mods/BetterGiveUp/MU3.Notes/patch_FieldObject.cs
akanyan a4104a67e7 feat: add infinite gp and skip premusic
Also, run the autoformatter.
Also, the skip is now cleaner.
2024-05-26 08:15:13 +09:00

24 lines
721 B
C#

#pragma warning disable CS0626
#pragma warning disable CS0649
#pragma warning disable IDE0051
#pragma warning disable IDE1006
using UnityEngine;
namespace MU3.Notes;
public class patch_FieldObject: FieldObject {
public class patch_BarNotes {
public 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;
}
}
}
}