19 lines
431 B
C#
19 lines
431 B
C#
using NodeCanvas.Framework;
|
|
using ParadoxNotion.Design;
|
|
using UnityEngine;
|
|
|
|
|
|
namespace NodeCanvas.Tasks.Conditions
|
|
{
|
|
|
|
[Category("GameObject")]
|
|
public class IsWithinLayerMask : ConditionTask<Transform>
|
|
{
|
|
|
|
public BBParameter<LayerMask> targetLayers;
|
|
|
|
protected override bool OnCheck() {
|
|
return ParadoxNotion.ObjectUtils.IsInLayerMask(agent.gameObject, targetLayers.value);
|
|
}
|
|
}
|
|
} |