mirror of
https://github.com/Siccity/xNode.git
synced 2025-12-22 02:06:05 +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);
|
|
}
|
|
}
|
|
}
|