项目启动流程和资产浏览器功能

This commit is contained in:
YHH
2025-10-15 09:34:44 +08:00
parent 285279629e
commit d0fcc0e447
6 changed files with 663 additions and 30 deletions

View File

@@ -10,7 +10,7 @@ interface EntityInspectorProps {
messageHub: MessageHub;
}
export function EntityInspector({ entityStore, messageHub }: EntityInspectorProps) {
export function EntityInspector({ entityStore: _entityStore, messageHub }: EntityInspectorProps) {
const [selectedEntity, setSelectedEntity] = useState<Entity | null>(null);
const [showAddComponent, setShowAddComponent] = useState(false);
const [expandedComponents, setExpandedComponents] = useState<Set<number>>(new Set());