Files
Colosseum/Assets/Scripts/AI/BehaviorActions/Actions/SetTargetInRangeAction.cs
dal4segno aeb4fc2847 feat: AI 타겟팅 개선 - 사망한 대상 무시
- FindTargetAction: IDamageable.IsDead 체크로 사망한 타겟 제외
- SetTargetInRangeAction: 사망한 타겟을 거리 검색에서 제외
- HasTargetCondition: 타겟 생존 여부 추가 확인
- BossArea: FindObjectOfType → FindFirstObjectByType 변경

Ultraworked with [Sisyphus](https://github.com/code-yeongyu/oh-my-opencode)

Co-authored-by: Sisyphus <clio-agent@sisyphuslabs.ai>
2026-03-14 15:08:47 +09:00

71 lines
2.0 KiB
C#

using System;
using Unity.Behavior;
using UnityEngine;
using Action = Unity.Behavior.Action;
using Unity.Properties;
using Colosseum.Combat;
[Serializable, GeneratePropertyBag]
[NodeDescription(name: "SetTargetInRange", story: "[거리] [] ", category: "Action", id: "93b7a5d823a58618d5371c01ef894948")]
public partial class SetTargetInRangeAction : Action
{
[SerializeReference]
public BlackboardVariable<GameObject> Target;
[SerializeReference]
public BlackboardVariable<string> Tag = new BlackboardVariable<string>("Player");
[SerializeReference]
public BlackboardVariable<float> Range = new BlackboardVariable<float>(10f);
protected override Status OnStart()
{
if (string.IsNullOrEmpty(Tag.Value))
{
return Status.Failure;
}
// 모든 타겟 태그 오브젝트 찾기
GameObject[] targets = GameObject.FindGameObjectsWithTag(Tag.Value);
if (targets == null || targets.Length == 0)
{
return Status.Failure;
}
// 가장 가까운 살아있는 타겟 찾기
GameObject nearestTarget = null;
float nearestDistance = Range.Value; // Range 내에서만 검색
foreach (GameObject potentialTarget in targets)
{
// 사망한 타겟은 제외
IDamageable damageable = potentialTarget.GetComponent<IDamageable>();
if (damageable != null && damageable.IsDead)
{
continue;
}
float distance = Vector3.Distance(
GameObject.transform.position,
potentialTarget.transform.position
);
if (distance < nearestDistance)
{
nearestDistance = distance;
nearestTarget = potentialTarget;
}
}
if (nearestTarget == null)
{
return Status.Failure;
}
Target.Value = nearestTarget;
return Status.Success;
}
}