feat: 드로그 공통 보스 BT 프레임워크 정리

This commit is contained in:
2026-03-23 16:02:45 +09:00
parent 3ae3cbcac1
commit de2cb2194e
65 changed files with 4514 additions and 2374 deletions

View File

@@ -0,0 +1,20 @@
using System;
using Colosseum.Enemy;
using Unity.Behavior;
using Unity.Properties;
/// <summary>
/// 징벌 패턴을 실행하는 공통 액션입니다.
/// </summary>
[Serializable, GeneratePropertyBag]
[NodeDescription(
name: "Use Punish Pattern",
story: "징벌 패턴 실행",
category: "Action",
id: "55f3c204a22b42dca6ae96e555f11a70")]
public partial class UsePunishPatternAction : UsePatternRoleActionBase
{
protected override BossCombatPatternRole PatternRole => BossCombatPatternRole.Punish;
}