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

@@ -25,7 +25,7 @@ Transform:
m_GameObject: {fileID: 3292419760055380793}
serializedVersion: 2
m_LocalRotation: {x: 0.010896653, y: -0.010896653, z: 0.7070228, w: 0.70702285}
m_LocalPosition: {x: 0.0003, y: -0.0603, z: -0.0017}
m_LocalPosition: {x: 0.0003, y: -0.0518, z: -0.0014}
m_LocalScale: {x: 0.049999997, y: 0.049999997, z: 0.05}
m_ConstrainProportionsScale: 0
m_Children: []

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);