FIRST
CI / Go Backend (push) Canceled after 0s

This commit is contained in:
xyou
2026-08-07 23:39:47 +08:00
parent f2105bf14c
commit 9500c4c80a
52 changed files with 3801 additions and 0 deletions
@@ -0,0 +1,9 @@
using UnityEngine;
namespace RedCircuit.UI
{
/// <summary>编辑器主窗口,管理画布、工具栏、面板的整体布局与生命周期。</summary>
public class EditorWindow : MonoBehaviour
{
}
}
@@ -0,0 +1,9 @@
using UnityEngine;
namespace RedCircuit.UI
{
/// <summary>属性面板,显示并编辑选中元件的可调属性(延迟、阻值、模式等)。</summary>
public class InspectorPanel : MonoBehaviour
{
}
}
@@ -0,0 +1,9 @@
using UnityEngine;
namespace RedCircuit.UI
{
/// <summary>元件面板,按 8 大分类展示 80 种元件供玩家选择放置。</summary>
public class PalettePanel : MonoBehaviour
{
}
}
@@ -0,0 +1,10 @@
{
"name": "RedCircuit.UI",
"rootNamespace": "RedCircuit.UI",
"references": [],
"includePlatforms": [],
"excludePlatforms": [],
"allowUnsafeCode": false,
"autoReferenced": true,
"defineConstraints": []
}
@@ -0,0 +1,9 @@
using UnityEngine;
namespace RedCircuit.UI
{
/// <summary>工具栏控制器,管理保存/加载/运行/暂停按钮与模式切换。</summary>
public class ToolbarController : MonoBehaviour
{
}
}