diff options
Diffstat (limited to 'Client/Assets/Behavior Designer/Runtime/Basic Tasks/Animation/Stop.cs')
-rw-r--r-- | Client/Assets/Behavior Designer/Runtime/Basic Tasks/Animation/Stop.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Client/Assets/Behavior Designer/Runtime/Basic Tasks/Animation/Stop.cs b/Client/Assets/Behavior Designer/Runtime/Basic Tasks/Animation/Stop.cs index 138de081..8625b0bd 100644 --- a/Client/Assets/Behavior Designer/Runtime/Basic Tasks/Animation/Stop.cs +++ b/Client/Assets/Behavior Designer/Runtime/Basic Tasks/Animation/Stop.cs @@ -27,7 +27,7 @@ namespace BehaviorDesigner.Runtime.Tasks.Basic.UnityAnimation public override TaskStatus OnUpdate()
{
if (animation == null) {
- //Debug.LogWarning("Animation is null");
+ Debug.LogWarning("Animation is null");
return TaskStatus.Failure;
}
|