diff options
Diffstat (limited to 'Assets/ThirdParty/Behavior Designer/Runtime/Basic Tasks/Vector3/SetValue.cs')
-rw-r--r-- | Assets/ThirdParty/Behavior Designer/Runtime/Basic Tasks/Vector3/SetValue.cs | 25 |
1 files changed, 0 insertions, 25 deletions
diff --git a/Assets/ThirdParty/Behavior Designer/Runtime/Basic Tasks/Vector3/SetValue.cs b/Assets/ThirdParty/Behavior Designer/Runtime/Basic Tasks/Vector3/SetValue.cs deleted file mode 100644 index 20034af0..00000000 --- a/Assets/ThirdParty/Behavior Designer/Runtime/Basic Tasks/Vector3/SetValue.cs +++ /dev/null @@ -1,25 +0,0 @@ -using UnityEngine;
-
-namespace BehaviorDesigner.Runtime.Tasks.Basic.UnityVector3
-{
- [TaskCategory("Basic/Vector3")]
- [TaskDescription("Sets the value of the Vector3.")]
- public class SetValue : Action
- {
- [Tooltip("The Vector3 to get the values of")]
- public SharedVector3 vector3Value;
- [Tooltip("The Vector3 to set the values of")]
- public SharedVector3 vector3Variable;
-
- public override TaskStatus OnUpdate()
- {
- vector3Variable.Value = vector3Value.Value;
- return TaskStatus.Success;
- }
-
- public override void OnReset()
- {
- vector3Value = vector3Variable = Vector3.zero;
- }
- }
-}
\ No newline at end of file |