33306c9f5e
Adds a Quick Restart and Quick exit to Select Song patch as well as a patch to load saves offline. and of course, credit to Lukino for that offline saving patch.
23 lines
679 B
C#
23 lines
679 B
C#
using UnityEngine;
|
|
using UnityEngine.SceneManagement;
|
|
using BepInEx;
|
|
using HarmonyLib;
|
|
|
|
namespace TaikoModStuff
|
|
{
|
|
[HarmonyPatch]
|
|
public class QuickRestart
|
|
{
|
|
[HarmonyPatch(typeof(EnsoGameManager), "ProcExecPause")]
|
|
[HarmonyPrefix]
|
|
static void customProcExecPause()
|
|
{
|
|
bool keyDown = Input.GetKeyDown(KeyCode.Backspace);
|
|
if (keyDown)
|
|
{
|
|
//TaikoSingletonMonoBehaviour<EnsoGameManager>.Instance.Invoke("RestartPlay", 1);
|
|
TaikoSingletonMonoBehaviour<CommonObjects>.Instance.MySceneManager.ChangeRelayScene("Enso", true);
|
|
}
|
|
}
|
|
}
|
|
} |