This commit is contained in:
Till W
2025-05-26 18:04:51 +02:00
parent cac2ef3330
commit 87ce032833
5 changed files with 75 additions and 20 deletions

View File

@@ -180,6 +180,13 @@ namespace Game
Cubes.Get(PlayerOutsideViewCube).Setup();
}
{
Deserializer d;
d.Init("game/data/static/uiconfig.dat", "UICO");
d.ReadT(GetInstance().Player.Config);
d.Finish();
}
UIQuads.Count = 0;
PuzzleTiles.Count = 0;
PuzzleTileCovers.Count = 0;
@@ -190,16 +197,10 @@ namespace Game
Puzzles[i].Setup();
}
}
PuzzleUI.Setup();
TabletHandle = UIQuads.New();
UpdatePlayerInputMode();
{
Deserializer d;
d.Init("game/data/static/uiconfig.dat", "UICO");
d.ReadT(GetInstance().Player.Config);
d.Finish();
}
}
void Level::Update()