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