refactor(fix-system): 重构维修侧边栏面板架构并整合方块拼图

Made-with: Cursor
This commit is contained in:
2026-03-02 20:00:18 +08:00
parent dd994fc912
commit 5794c49a39
19 changed files with 290 additions and 220 deletions
@@ -38,13 +38,10 @@ namespace AibisDream.FixSystem
#endregion
private void Awake()
{
InitComponentRefs();
}
private void Start()
{
InitComponentRefs();
InitSystem();
LoadCableState();
}
@@ -69,7 +66,7 @@ namespace AibisDream.FixSystem
CableRootPos = CableReelRef.transform.Find("Cable Root Pos").transform;
PhysicCableRef = transform.Find("PhysicCable").GetComponent<PhysicCable>();
BodyModuleSystem = transform.parent.GetComponent<BodyModuleSystem>();
BodyModuleSystem = FixSystemCenter.SystemDic.Get<BodyModuleSystem>();
}
private void InitSystem()