1
0
mirror of https://github.com/Siccity/xNode.git synced 2025-12-21 01:36:03 +08:00

Example Display node init fix. Release version.

This commit is contained in:
Thor Kramer Brigsted 2017-11-06 12:04:14 +01:00
parent 42d13ad6a9
commit 8bb30e2f87

View File

@ -3,6 +3,7 @@
namespace BasicNodes {
public class DisplayValue : Node {
protected override void Init() {
base.Init();
if (!HasPort("input")) AddInstanceInput(typeof(object), "input");
}