- 다중 젬 슬롯용 타입을 별도 스크립트로 분리하고 테스트 젬/로드아웃 자산 생성 경로를 정리 - 젬 테스트 전용 공격 스킬과 분리된 애니메이션 자산을 추가해 베이스 스킬 검증 경로를 마련 - PlayerSkillDebugMenu와 MPP 디버그 메뉴를 보강해 젬 프리셋 적용, 원격 테스트, 보스 기절 디버그 메뉴를 추가 - BossCombatBehaviorContext와 공통 BT 액션이 기절 상태를 존중하도록 수정해 보스 추적과 패턴 실행을 중단 - Unity 리프레시와 외부 빌드 통과를 확인하고 드로그전 및 MPP 기준 젬 프리셋 적용 흐름을 검증
32 lines
901 B
C#
32 lines
901 B
C#
using System;
|
|
|
|
using Colosseum.Enemy;
|
|
|
|
using Unity.Behavior;
|
|
using Unity.Properties;
|
|
|
|
using Action = Unity.Behavior.Action;
|
|
|
|
/// <summary>
|
|
/// 시그니처 패턴 사용 가능 여부를 확인하는 체크 액션입니다.
|
|
/// </summary>
|
|
[Serializable, GeneratePropertyBag]
|
|
[NodeDescription(
|
|
name: "Check Signature Pattern Ready",
|
|
story: "시그니처 패턴 준비 여부 확인",
|
|
category: "Action",
|
|
id: "b3b2916257134e0eb3a71a5f544a8d6f")]
|
|
public partial class CheckSignaturePatternReadyAction : Action
|
|
{
|
|
protected override Status OnStart()
|
|
{
|
|
BossCombatBehaviorContext context = GameObject.GetComponent<BossCombatBehaviorContext>();
|
|
if (context != null && context.IsBehaviorSuppressed)
|
|
return Status.Failure;
|
|
|
|
return context != null && context.IsSignaturePatternReady()
|
|
? Status.Success
|
|
: Status.Failure;
|
|
}
|
|
}
|