diff options
Diffstat (limited to 'Client/Assets/Behavior Designer/Runtime/Basic Tasks/Animation/IsPlaying.cs')
-rw-r--r-- | Client/Assets/Behavior Designer/Runtime/Basic Tasks/Animation/IsPlaying.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Client/Assets/Behavior Designer/Runtime/Basic Tasks/Animation/IsPlaying.cs b/Client/Assets/Behavior Designer/Runtime/Basic Tasks/Animation/IsPlaying.cs index 07b99732..f86a854b 100644 --- a/Client/Assets/Behavior Designer/Runtime/Basic Tasks/Animation/IsPlaying.cs +++ b/Client/Assets/Behavior Designer/Runtime/Basic Tasks/Animation/IsPlaying.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;
}
|