1
0
mirror of https://github.com/Artemis-RGB/Artemis synced 2025-12-13 05:48:35 +00:00

simplify node output names

This commit is contained in:
aytac.kayadelen 2022-08-24 13:12:00 +03:00
parent a92c0adaf4
commit 37f544a9c1

View File

@ -10,8 +10,8 @@ public class StringNullOrWhiteSpaceNode : Node
: base("Null or White Space", "Returns true if null or white space")
{
Input1 = CreateInputPin<string>();
NullOrWhiteSpaceResult = CreateOutputPin<bool>("White Space");
HasContentResult = CreateOutputPin<bool>("Has Content");
NullOrWhiteSpaceResult = CreateOutputPin<bool>("true");
HasContentResult = CreateOutputPin<bool>("false");
}
public InputPin<string> Input1 { get; }