From 37f544a9c1f66f7cdfbcf86afaff88916d13b4cc Mon Sep 17 00:00:00 2001 From: "aytac.kayadelen" Date: Wed, 24 Aug 2022 13:12:00 +0300 Subject: [PATCH] simplify node output names --- src/Artemis.VisualScripting/Nodes/Text/StrıngNullOrEmpty.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Artemis.VisualScripting/Nodes/Text/StrıngNullOrEmpty.cs b/src/Artemis.VisualScripting/Nodes/Text/StrıngNullOrEmpty.cs index df1f5ee65..705946cdb 100644 --- a/src/Artemis.VisualScripting/Nodes/Text/StrıngNullOrEmpty.cs +++ b/src/Artemis.VisualScripting/Nodes/Text/StrıngNullOrEmpty.cs @@ -10,8 +10,8 @@ public class StringNullOrWhiteSpaceNode : Node : base("Null or White Space", "Returns true if null or white space") { Input1 = CreateInputPin(); - NullOrWhiteSpaceResult = CreateOutputPin("White Space"); - HasContentResult = CreateOutputPin("Has Content"); + NullOrWhiteSpaceResult = CreateOutputPin("true"); + HasContentResult = CreateOutputPin("false"); } public InputPin Input1 { get; }