mirror of
https://github.com/Siccity/xNode.git
synced 2025-12-20 17:26:02 +08:00
10 lines
266 B
C#
10 lines
266 B
C#
namespace BasicNodes {
|
|
public class DisplayValue : Node {
|
|
[Input(ShowBackingValue.Never)] public object value;
|
|
|
|
public override object GetValue(NodePort port) {
|
|
return GetInputByFieldName<object>("value", value);
|
|
}
|
|
}
|
|
}
|