Refine Shose undo back to initial voice, fix video looping and hiding, make TipPanel persistent during opening

This commit is contained in:
yangbear
2026-07-10 03:50:39 +08:00
parent ec503bd3f1
commit 745b11b7f0
5 changed files with 72 additions and 22 deletions
@@ -131,6 +131,13 @@ public class PingClickHandler : MonoBehaviour
if (finishClip != null) am.PlayVoice(finishClip);
#endif
}
// 隐藏视频面板
var videoController = FindObjectOfType<VideoController>(true);
if (videoController != null)
{
videoController.StopVideo();
}
}
}
}