[F] Remove debug log
Build AquaMai / build (SDEZ) (push) Has been cancelled Details
Build AquaMai / build (SDGA145) (push) Has been cancelled Details

pull/55/head
Clansty 2024-09-20 02:36:48 +08:00
parent 1873ad8355
commit 6b51155bac
No known key found for this signature in database
GPG Key ID: 3A6BE8BAF2EDE134
2 changed files with 1 additions and 8 deletions

View File

@ -21,7 +21,7 @@ public class DebugFeature
{
GameManager.AutoPlay = (GameManager.AutoPlayMode)((int)(GameManager.AutoPlay + 1) % Enum.GetNames(typeof(GameManager.AutoPlayMode)).Length);
}
else if (DebugInput.GetKeyDown(KeyCode.Return))
else if (Input.GetKeyDown(KeyCode.Return))
{
isPause = !isPause;
SoundManager.PauseMusic(isPause);

View File

@ -116,11 +116,4 @@ public class ExtendNotesPool
____barGuideObjectList.Add(barGuide);
}
}
[HarmonyPrefix]
[HarmonyPatch(typeof(SlideRoot), "UpdateAlpha")]
public static void UpdateAlpha(int ____dispLaneNum)
{
MelonLogger.Msg(____dispLaneNum);
}
}