mirror of
https://github.com/Siccity/xNode.git
synced 2025-12-21 01:36:03 +08:00
Removal of scripts now also clears dependant nodes, to avoid null objects. NodePorts now support fallback values. UI Changes. node.graph is now serialized as well.
7 lines
111 B
C#
7 lines
111 B
C#
using UnityEngine;
|
|
|
|
public class DisplayValue : ExampleNodeBase {
|
|
[Input(false)] public float value;
|
|
|
|
}
|