chore: initial commit

This commit is contained in:
2026-05-08 11:04:00 +08:00
commit f55d2a57c3
6278 changed files with 866081 additions and 0 deletions

View File

@@ -0,0 +1,14 @@
using BaseGames.Core.Events;
using UnityEngine;
namespace BaseGames.Dialogue
{
/// <summary>
/// 对话请求事件频道EVT_DialogueStartRequest
/// ⚠️ 负载为 DialogueDataSOSO 引用),不是 struct避免序列化开销。
/// 发布NpcInteractable玩家触发互动、CutsceneTrigger
/// 订阅DialogueController弹出对话 UI 并开始播放)
/// </summary>
[CreateAssetMenu(menuName = "Events/Dialogue/DialogueStartRequest")]
public class DialogueEventChannelSO : BaseEventChannelSO<DialogueDataSO> { }
}