mirror of
https://github.com/Siccity/xNode.git
synced 2025-12-21 01:36:03 +08:00
12 lines
274 B
C#
12 lines
274 B
C#
using XNode;
|
|
|
|
namespace BasicNodes {
|
|
public class DisplayValue : Node {
|
|
[Input(ShowBackingValue.Never)] public object value;
|
|
|
|
public override object GetValue(NodePort port) {
|
|
return GetInputValue<object>("value", value);
|
|
}
|
|
}
|
|
}
|