feat: Implement Room Streaming System

- Add RoomStreamingManager to manage room loading and unloading based on player proximity.
- Create StreamingBudgetConfigSO for memory and performance budgeting of the streaming system.
- Introduce TransitionDirector to handle seamless and atmospheric fade transitions between rooms.
- Develop WorldGraph to represent room connectivity and facilitate neighbor queries and distance calculations.
- Implement RoomNode and RoomEdge classes to structure room data and connections.
This commit is contained in:
2026-05-23 19:10:29 +08:00
parent 81c326af53
commit a1b4e629aa
165 changed files with 7904 additions and 313 deletions

View File

@@ -20,8 +20,16 @@ namespace BaseGames.Enemies
[Header("受击")]
public AnimationClip Hurt;
public AnimationClip Stagger;
[Tooltip("击飞腾空动画(可选);留空时由 EnemyBase.ScheduleStateRecovery 按时长自动恢复")]
public AnimationClip KnockUp;
public AnimationClip Dead;
[Header("AI 阶段")]
[Tooltip("发现目标时的短暂警觉姿态(可选)")]
public AnimationClip Alert;
[Tooltip("搜查时的慢走或环顾动作(留空则回退到 Walk")]
public AnimationClip Investigate;
/// <summary>
/// 按字段名返回 ClipBD_PlayAnimation 使用)。
/// 支持字段名和常见别名(如 Attack_Melee / Idle 等)。
@@ -32,11 +40,14 @@ namespace BaseGames.Enemies
{
"Idle" => Idle,
"Walk" => Walk,
"Run" => Run,
"Attack" or "Attack_Melee" => Attack,
"Run" or "Chase" => Run,
"Attack" or "Attack_Melee" => Attack,
"Hurt" => Hurt,
"Stagger" => Stagger,
"KnockUp" => KnockUp,
"Dead" or "Death" => Dead,
"Alert" => Alert,
"Investigate" => Investigate ?? Walk,
_ => null,
};
}