|
|
@ -19,11 +19,12 @@ namespace TNodeCore.Components{ |
|
|
|
/// <summary> |
|
|
|
/// <summary> |
|
|
|
/// Map of node id to runtime node |
|
|
|
/// Map of node id to runtime node |
|
|
|
/// </summary> |
|
|
|
/// </summary> |
|
|
|
|
|
|
|
[NonSerialized] |
|
|
|
public readonly Dictionary<string, RuntimeNode> RuntimeNodes = new Dictionary<string, RuntimeNode>(); |
|
|
|
public readonly Dictionary<string, RuntimeNode> RuntimeNodes = new Dictionary<string, RuntimeNode>(); |
|
|
|
///<summary> |
|
|
|
///<summary> |
|
|
|
/// The graph tool the current runtime graph is using |
|
|
|
/// The graph tool the current runtime graph is using |
|
|
|
/// </summary> |
|
|
|
/// </summary> |
|
|
|
|
|
|
|
[NonSerialized] |
|
|
|
private GraphTool _graphTool; |
|
|
|
private GraphTool _graphTool; |
|
|
|
/// <summary> |
|
|
|
/// <summary> |
|
|
|
/// Inner graph tool to help with graph operations |
|
|
|
/// Inner graph tool to help with graph operations |
|
|
|