Pipeline saving and View popup window added

Made-with: Cursor
This commit is contained in:
Leo Qu
2026-03-10 18:13:32 -04:00
parent 477a86a495
commit 7212f692a6
10 changed files with 5260 additions and 21 deletions

View File

@@ -112,6 +112,15 @@ public class TopologyBuilder : MonoBehaviour
}
}
_skipControlLibraryCalls = false;
Debug.Log("=== Control Library Topology ===");
Debug.Log($"Modules ({graph.Modules.Count}):");
foreach (var m in graph.Modules)
Debug.Log($" Id={m.Id}, Type={m.Type}, Degree={m.Degree}");
Debug.Log($"Connections ({graph.Connections.Count}):");
foreach (var c in graph.Connections)
Debug.Log($" {c.FromModuleId} ({c.FromSocket}) -> {c.ToModuleId} ({c.ToSocket}), Orientation={c.Orientation}");
Debug.Log("================================");
}
BuildTopologyFromGraph(graph);