From e3ff755e371ffa317149e68e53bfdbdfc715a3d4 Mon Sep 17 00:00:00 2001 From: akanyan Date: Mon, 3 Feb 2025 20:12:36 +0000 Subject: [PATCH] fix(SkipCutscenes): bottom cardinfo w/ intro skip --- Extras/SkipCutscenes/MU3/patch_BattleUI.cs | 4 +++- Mu3Mods.csproj | 2 +- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/Extras/SkipCutscenes/MU3/patch_BattleUI.cs b/Extras/SkipCutscenes/MU3/patch_BattleUI.cs index cc4ade8..297197d 100644 --- a/Extras/SkipCutscenes/MU3/patch_BattleUI.cs +++ b/Extras/SkipCutscenes/MU3/patch_BattleUI.cs @@ -6,6 +6,8 @@ using UnityEngine; namespace MU3; class patch_BattleUI: BattleUI { + private UICardInfo _cardInfo; + [MonoModIgnore] private extern System.Collections.IEnumerator playReadyProc(Action onFinish); private System.Collections.IEnumerator playReadyProcSkipped(Action onFinish) { @@ -25,10 +27,10 @@ class patch_BattleUI: BattleUI { public new void playReady(Action onFinish) { if(Singleton.instance.SkipMusicIntro) { + _cardInfo.state = ANM_PLY_Cardinfo_00.State.In; StartCoroutine(playReadyProcSkipped(onFinish)); } else { StartCoroutine(playReadyProc(onFinish)); } - } } \ No newline at end of file diff --git a/Mu3Mods.csproj b/Mu3Mods.csproj index a65a21c..4d23dca 100644 --- a/Mu3Mods.csproj +++ b/Mu3Mods.csproj @@ -2,7 +2,7 @@ net35 7EVENDAYS⇔HOLIDAYS - 3.3.0.0 + 3.3.1.0 true latest x64