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

remove 'Text Empty' node output name

This commit is contained in:
aytac.kayadelen 2022-08-25 14:08:22 +03:00
parent 2e5977b55f
commit ce1cf948ce

View File

@ -10,7 +10,7 @@ public class StringNullOrEmptyNode : Node
: base("Text is empty", "Outputs true if empty") : base("Text is empty", "Outputs true if empty")
{ {
Input1 = CreateInputPin<string>(); Input1 = CreateInputPin<string>();
Output1 = CreateOutputPin<bool>("true"); Output1 = CreateOutputPin<bool>();
} }
public InputPin<string> Input1 { get; } public InputPin<string> Input1 { get; }