Edit Character
All checks were successful
E2E Testing / test (push) Successful in 1m42s

This commit is contained in:
Sebastian Böckelmann 2024-03-22 09:47:39 +01:00
parent 4c16fb5269
commit 36e4a68e54

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
}
}