1
0
mirror of https://github.com/Siccity/xNode.git synced 2025-12-20 17:26:02 +08:00
xNode/Example/Nodes/DisplayValue.cs
2017-10-28 00:06:25 +02:00

10 lines
219 B
C#

namespace ExampleNodes {
public class DisplayValue : Node {
[Input] public float value;
public float GetValue() {
return GetInputByFieldName<float>("value", value);
}
}
}