From 8c3f4926effd286517ddedb7bcf418c8aa4f0029 Mon Sep 17 00:00:00 2001 From: Chris Date: Wed, 6 Aug 2025 15:24:40 -0400 Subject: [PATCH] maint: comment change --- Assets/Scripts/Core/Graph Tasks/CheckInputValue.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Assets/Scripts/Core/Graph Tasks/CheckInputValue.cs b/Assets/Scripts/Core/Graph Tasks/CheckInputValue.cs index 2b5f1f4..ab17523 100644 --- a/Assets/Scripts/Core/Graph Tasks/CheckInputValue.cs +++ b/Assets/Scripts/Core/Graph Tasks/CheckInputValue.cs @@ -32,7 +32,7 @@ namespace NodeCanvas.Tasks.Actions { } protected override void OnExecute(){ - Debug.Log($"{outputTo.value}, {agent.actions[actionName.value].ReadValue()}"); + // Debug.Log($"{outputTo.value}, {agent.actions[actionName.value].ReadValue()}"); outputTo.value = agent.actions[actionName.value].ReadValue(); EndAction();