Skip to content

Commit

Permalink
tops of walls/pillars
Browse files Browse the repository at this point in the history
  • Loading branch information
atar13 committed Jun 7, 2024
1 parent 5bbb831 commit 6a0f4a0
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/client/client.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -205,10 +205,10 @@ bool Client::init() {
auto floor_model_path = env_models_dir / "floor-normal.obj";
this->floor_model = std::make_unique<Model>(floor_model_path.string(), true);

auto wall_model_path = env_models_dir / "wall-normals.obj";
auto wall_model_path = env_models_dir / "wall-tops.obj";
this->wall_model = std::make_unique<Model>(wall_model_path.string(), true);

auto pillar_model_path = env_models_dir / "pillar-normals.obj";
auto pillar_model_path = env_models_dir / "pillar-tops.obj";
this->pillar_model = std::make_unique<Model>(pillar_model_path.string(), true);

auto torchlight_model_path = env_models_dir / "exit.obj";
Expand Down

0 comments on commit 6a0f4a0

Please sign in to comment.