feat(Console MovePlateform): 实现控制台和移动平台

This commit is contained in:
2025-10-22 11:32:53 +08:00
parent 93b83b3af3
commit acd8282ff0
27 changed files with 936 additions and 46 deletions

View File

@@ -24,7 +24,7 @@ namespace UI
private void OnClickButton()
{
_component.IsEditableActive = !_component.IsEditableActive;
_component.IsComponentActive = !_component.IsComponentActive;
RefreshUI();
}
@@ -33,7 +33,7 @@ namespace UI
if (_component != null)
{
componentName.text = _component.ComponentName;
componentState.text = _component.IsEditableActive ? "Active" : "Inactive";
componentState.text = _component.IsComponentActive ? "Active" : "Inactive";
}
}
}