From 36e4a68e5422e32efe97343d2d84a6fab57d5608 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sebastian=20B=C3=B6ckelmann?= Date: Fri, 22 Mar 2024 09:47:39 +0100 Subject: [PATCH] Edit Character --- src/app/app.component.ts | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/src/app/app.component.ts b/src/app/app.component.ts index c972bbf..a0ab599 100644 --- a/src/app/app.component.ts +++ b/src/app/app.component.ts @@ -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 + } }