first commit
This commit is contained in:
@@ -0,0 +1,48 @@
|
||||
using NodeCanvas.Framework;
|
||||
using ParadoxNotion.Design;
|
||||
using UnityEngine;
|
||||
|
||||
|
||||
namespace NodeCanvas.Tasks.Actions
|
||||
{
|
||||
|
||||
[Category("Physics")]
|
||||
public class GetLinecastInfo2D : ActionTask<Transform>
|
||||
{
|
||||
|
||||
[RequiredField]
|
||||
public BBParameter<GameObject> target;
|
||||
public LayerMask mask = -1;
|
||||
[BlackboardOnly]
|
||||
public BBParameter<GameObject> saveHitGameObjectAs;
|
||||
[BlackboardOnly]
|
||||
public BBParameter<float> saveDistanceAs;
|
||||
[BlackboardOnly]
|
||||
public BBParameter<Vector3> savePointAs;
|
||||
[BlackboardOnly]
|
||||
public BBParameter<Vector3> saveNormalAs;
|
||||
|
||||
private RaycastHit2D hit;
|
||||
|
||||
protected override void OnExecute() {
|
||||
|
||||
hit = Physics2D.Linecast(agent.position, target.value.transform.position, mask);
|
||||
|
||||
if ( hit.collider != null ) {
|
||||
saveHitGameObjectAs.value = hit.collider.gameObject;
|
||||
saveDistanceAs.value = hit.fraction;
|
||||
savePointAs.value = hit.point;
|
||||
saveNormalAs.value = hit.normal;
|
||||
EndAction(true);
|
||||
return;
|
||||
}
|
||||
|
||||
EndAction(false);
|
||||
}
|
||||
|
||||
public override void OnDrawGizmosSelected() {
|
||||
if ( agent && target.value )
|
||||
Gizmos.DrawLine(agent.position, target.value.transform.position);
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user