summaryrefslogtreecommitdiff
path: root/Assets/ThirdParty/Behavior Designer/Runtime/Basic Tasks/Vector3/GetUpVector.cs
diff options
context:
space:
mode:
Diffstat (limited to 'Assets/ThirdParty/Behavior Designer/Runtime/Basic Tasks/Vector3/GetUpVector.cs')
-rw-r--r--Assets/ThirdParty/Behavior Designer/Runtime/Basic Tasks/Vector3/GetUpVector.cs24
1 files changed, 0 insertions, 24 deletions
diff --git a/Assets/ThirdParty/Behavior Designer/Runtime/Basic Tasks/Vector3/GetUpVector.cs b/Assets/ThirdParty/Behavior Designer/Runtime/Basic Tasks/Vector3/GetUpVector.cs
deleted file mode 100644
index b6d270ae..00000000
--- a/Assets/ThirdParty/Behavior Designer/Runtime/Basic Tasks/Vector3/GetUpVector.cs
+++ /dev/null
@@ -1,24 +0,0 @@
-using UnityEngine;
-
-namespace BehaviorDesigner.Runtime.Tasks.Basic.UnityVector3
-{
- [TaskCategory("Basic/Vector3")]
- [TaskDescription("Stores the up vector value.")]
- public class GetUpVector : Action
- {
- [Tooltip("The stored result")]
- [RequiredField]
- public SharedVector3 storeResult;
-
- public override TaskStatus OnUpdate()
- {
- storeResult.Value = Vector3.up;
- return TaskStatus.Success;
- }
-
- public override void OnReset()
- {
- storeResult = Vector3.zero;
- }
- }
-} \ No newline at end of file