Implement basic version of characters #32

Merged
sebastian merged 8 commits from characters-2 into main 2024-04-13 11:59:09 +02:00
Showing only changes of commit 36e4a68e54 - Show all commits

View File

@ -95,6 +95,12 @@ export class AppComponent implements OnInit{
this.editor!.openGameModelComponent(gamesystem!);
}
} break
case ModelComponentType.CHARACTER: {
if(this.characterOverview!.selectedCharacter != undefined) {
this.editor!.openGameModelComponent(this.characterOverview!.selectedCharacter);
}
}break
}
}