summaryrefslogtreecommitdiff
path: root/Assets/ThirdParty/Behavior Designer/Runtime/Basic Tasks/Debug/LogValue.cs
diff options
context:
space:
mode:
Diffstat (limited to 'Assets/ThirdParty/Behavior Designer/Runtime/Basic Tasks/Debug/LogValue.cs')
-rw-r--r--Assets/ThirdParty/Behavior Designer/Runtime/Basic Tasks/Debug/LogValue.cs24
1 files changed, 0 insertions, 24 deletions
diff --git a/Assets/ThirdParty/Behavior Designer/Runtime/Basic Tasks/Debug/LogValue.cs b/Assets/ThirdParty/Behavior Designer/Runtime/Basic Tasks/Debug/LogValue.cs
deleted file mode 100644
index 73605da8..00000000
--- a/Assets/ThirdParty/Behavior Designer/Runtime/Basic Tasks/Debug/LogValue.cs
+++ /dev/null
@@ -1,24 +0,0 @@
-using UnityEngine;
-
-namespace BehaviorDesigner.Runtime.Tasks.Basic.UnityDebug
-{
- [TaskCategory("Basic/Debug")]
- [TaskDescription("Log a variable value.")]
- public class LogValue : Action
- {
- [Tooltip("The variable to output")]
- public SharedGenericVariable variable;
-
- public override TaskStatus OnUpdate()
- {
- Debug.Log(variable.Value.value.GetValue());
-
- return TaskStatus.Success;
- }
-
- public override void OnReset()
- {
- variable = null;
- }
- }
-} \ No newline at end of file