blob: 37daaa4139f85e8a1caee85813ca1c779568356c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
|
using UnityEngine;
namespace BehaviorDesigner.Runtime.Tasks.Basic.UnityVector3
{
[TaskCategory("Basic/Vector3")]
[TaskDescription("Stores the dot product of two Vector3 values.")]
public class Dot : Action
{
[Tooltip("The left hand side of the dot product")]
public SharedVector3 leftHandSide;
[Tooltip("The right hand side of the dot product")]
public SharedVector3 rightHandSide;
[Tooltip("The dot product result")]
[RequiredField]
public SharedFloat storeResult;
public override TaskStatus OnUpdate()
{
storeResult.Value = Vector3.Dot(leftHandSide.Value, rightHandSide.Value);
return TaskStatus.Success;
}
public override void OnReset()
{
leftHandSide = rightHandSide = Vector3.zero;
storeResult = 0;
}
}
}
|