forked from akanyan/mu3-mods
feat!: rename and reorganize
This commit is contained in:
35
Enhancements/BetterGiveUp/MU3/patch_Scene_38_End.cs
Normal file
35
Enhancements/BetterGiveUp/MU3/patch_Scene_38_End.cs
Normal file
@ -0,0 +1,35 @@
|
||||
using MonoMod;
|
||||
using MU3.Sequence;
|
||||
using MU3.Util;
|
||||
|
||||
namespace MU3;
|
||||
|
||||
class patch_Scene_38_End: Scene_38_End {
|
||||
private Mode<Scene_38_End, State> mode_;
|
||||
private extern void orig_Init_Init();
|
||||
private int result_;
|
||||
private UICommonWindow commonWindow_;
|
||||
|
||||
[MonoModIgnore]
|
||||
private enum State {
|
||||
End = 6
|
||||
}
|
||||
|
||||
private void Init_Init() {
|
||||
orig_Init_Init();
|
||||
|
||||
if(patch_PlayMusic.QuickSkip) {
|
||||
result_ = 0;
|
||||
mode_.set(State.End);
|
||||
}
|
||||
}
|
||||
|
||||
private void End_Init() {
|
||||
SystemUI instance = SingletonMonoBehaviour<SystemUI>.instance;
|
||||
instance.Panel.popState();
|
||||
if(!patch_PlayMusic.QuickSkip) {
|
||||
instance.fadeOut();
|
||||
}
|
||||
commonWindow_.end();
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user