FIX: help camera settings popup now only show up once

This commit is contained in:
kharhamel 2021-03-24 15:59:18 +01:00
parent 1d69af0664
commit 0b352fc5dc
3 changed files with 14 additions and 1 deletions

View file

@ -79,7 +79,10 @@ export class GameManager {
console.log('starting '+ (this.currentGameSceneName || this.startRoom.id))
scenePlugin.start(this.currentGameSceneName || this.startRoom.id);
scenePlugin.launch(MenuSceneName);
scenePlugin.launch(HelpCameraSettingsSceneName);//700
if (!localUserStore.getHelpCameraSettingsShown()) {
scenePlugin.launch(HelpCameraSettingsSceneName);//700
}
}
public gameSceneIsCreated(scene: GameScene) {