Files
2024-11-20 15:21:28 +01:00

43 lines
1.4 KiB
C#

// (c) Copyright HutongGames, LLC 2010-2013. All rights reserved.
using UnityEngine;
namespace HutongGames.PlayMaker.Actions
{
[ActionCategory(ActionCategory.Debug)]
[Tooltip("Draws a line from a Start point to an End point. Specify the points as Game Objects or Vector3 world positions. If both are specified, position is used as a local offset from the Object's position.")]
public class DrawDebugLine : FsmStateAction
{
[Tooltip("Draw line from a GameObject.")]
public FsmGameObject fromObject;
[Tooltip("Draw line from a world position, or local offset from GameObject if provided.")]
public FsmVector3 fromPosition;
[Tooltip("Draw line to a GameObject.")]
public FsmGameObject toObject;
[Tooltip("Draw line to a world position, or local offset from GameObject if provided.")]
public FsmVector3 toPosition;
[Tooltip("The color of the line.")]
public FsmColor color;
public override void Reset()
{
fromObject = new FsmGameObject { UseVariable = true} ;
fromPosition = new FsmVector3 { UseVariable = true};
toObject = new FsmGameObject { UseVariable = true} ;
toPosition = new FsmVector3 { UseVariable = true};
color = Color.white;
}
public override void OnUpdate()
{
var startPos = ActionHelpers.GetPosition(fromObject, fromPosition);
var endPos = ActionHelpers.GetPosition(toObject, toPosition);
Debug.DrawLine(startPos, endPos, color.Value);
}
}
}