mirror of
https://github.com/Artemis-RGB/Artemis
synced 2025-12-13 05:48:35 +00:00
19 lines
494 B
C#
19 lines
494 B
C#
using Artemis.Core;
|
|
using Artemis.VisualScripting.Nodes.Static.Screens;
|
|
|
|
namespace Artemis.VisualScripting.Nodes.Static;
|
|
|
|
[Node("Display Value", "Displays an input value for testing purposes.", "Static", InputType = typeof(object))]
|
|
public class DisplayValueNode : Node<string, DisplayValueNodeCustomViewModel>
|
|
{
|
|
public DisplayValueNode()
|
|
{
|
|
Input = CreateInputPin<object>();
|
|
}
|
|
|
|
public InputPin<object> Input { get; }
|
|
|
|
public override void Evaluate()
|
|
{
|
|
}
|
|
} |