mirror of
https://github.com/BotChain-Robots/ui.git
synced 2026-07-08 15:07:22 +02:00
Pipeline saving and View popup window added
Made-with: Cursor
This commit is contained in:
@@ -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: []
|
||||
|
||||
@@ -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);
|
||||
|
||||
Reference in New Issue
Block a user