+事件连琐

+对话框分化完毕
+打包Resources文件夹
This commit is contained in:
2024-09-18 13:16:54 +08:00
parent 5e7e7bbb0e
commit d4a9b7e0a3
34 changed files with 2580 additions and 251 deletions

View File

@@ -43,6 +43,18 @@ namespace Event
public event PlayerWalkStopHandler PlayerWalkStop;
public event PlayerWalkingHandler PlayerWalking;
public void DialogEventSwitch(string eventName, string args)
{
switch (eventName)
{
case "OnDialogPop":
OnDialogPop(int.Parse(args));
break;
default:
break;
}
}
public void OnCameraInterAct(GameObject item)
{
CameraInterAct?.Invoke(new CameraInterActArgs(item));