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