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: "Check Primary Pattern Ready",
story: "기본 패턴 준비 여부 확인",
category: "Action",
id: "88626617015e43ef97ea4dd05cce55e0")]
public partial class CheckPrimaryPatternReadyAction : CheckPatternReadyActionBase
{
protected override BossCombatPatternRole PatternRole => BossCombatPatternRole.Primary;
}