issue-5-product-gamesystems #10

Merged
sebastian merged 31 commits from issue-5-product-gamesystems into main 2024-02-16 18:00:29 +01:00
Showing only changes of commit fa7a59ffc4 - Show all commits

View File

@ -21,6 +21,8 @@ export class EditorComponent {
if(!this.gameModelComponents.includes(gameModelComponent)) { if(!this.gameModelComponents.includes(gameModelComponent)) {
this.gameModelComponents.push(gameModelComponent); this.gameModelComponents.push(gameModelComponent);
this.activeTab = this.gameModelComponents.length; this.activeTab = this.gameModelComponents.length;
} else {
this.activeTab = this.gameModelComponents.findIndex(component => component.componentName === gameModelComponent.componentName);
} }
} }