forked from akanyan/mu3-mods
feat: add LockSelectionTime
This commit is contained in:
15
LockSelectionTime/MU3/patch_UITimer.cs
Normal file
15
LockSelectionTime/MU3/patch_UITimer.cs
Normal file
@ -0,0 +1,15 @@
|
||||
#pragma warning disable CS0626
|
||||
|
||||
using UnityEngine;
|
||||
|
||||
namespace MU3;
|
||||
|
||||
public class patch_UITimer: UITimer {
|
||||
public new void update() { /* nop */ }
|
||||
public new void update(float externalCounter) { /* nop */ }
|
||||
public extern void orig_initialize(float counter);
|
||||
public new void initialize(float counter) {
|
||||
orig_initialize(counter);
|
||||
transform.localScale = new Vector3(0, 0, 0);
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user