鼠标指针问题修复

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
+1 -1
View File
@@ -268,7 +268,7 @@ namespace AibisDream
_unRegisters[3] = EnumEventSystem.Global.Register(GameLoopEnum.UnPauseGame, () => state.OnPause(false));
_unRegisters[4] = EnumEventSystem.Global.Register(InteractionEventEnum.DialogStart, () => state.OnDialog(true));
_unRegisters[5] = EnumEventSystem.Global.Register(InteractionEventEnum.DialogEnd, () => state.OnDialog(true));
_unRegisters[5] = EnumEventSystem.Global.Register(InteractionEventEnum.DialogEnd, () => state.OnDialog(false));
}
private void UnRegisterEvents()