鼠标指针问题修复

This commit is contained in:
2025-11-17 20:42:47 +08:00
parent 69ba967065
commit c1aa8ebe01
10 changed files with 666 additions and 655 deletions
@@ -51,14 +51,14 @@ namespace AibisDream.FixSystem
private void OnEnable()
{
EnumEventSystem.Global.Register(InteractionEventEnum.DialogEnd, HandleDialogueStart);
EnumEventSystem.Global.Register(InteractionEventEnum.DialogStart, HandleDialogueComplete);
EnumEventSystem.Global.Register(InteractionEventEnum.DialogEnd, HandleDialogueComplete);
EnumEventSystem.Global.Register(InteractionEventEnum.DialogStart, HandleDialogueStart);
}
private void OnDisable()
{
EnumEventSystem.Global.UnRegister(InteractionEventEnum.DialogEnd, HandleDialogueStart);
EnumEventSystem.Global.UnRegister(InteractionEventEnum.DialogStart, HandleDialogueComplete);
EnumEventSystem.Global.UnRegister(InteractionEventEnum.DialogEnd, HandleDialogueComplete);
EnumEventSystem.Global.UnRegister(InteractionEventEnum.DialogStart, HandleDialogueStart);
}
private void InitComponentRefs()