Skip to content

Commit

Permalink
* Load #tunnel_mesh-02.tmj# in MindDive/MindDive
Browse files Browse the repository at this point in the history
  • Loading branch information
MarkOates committed Oct 3, 2022
1 parent 3d74954 commit c8702b2
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
4 changes: 3 additions & 1 deletion quintessence/AllegroFlare/Prototypes/MindDive/MindDive.q.yml
Original file line number Diff line number Diff line change
Expand Up @@ -162,7 +162,9 @@ functions:
body: |
AllegroFlare::Prototypes::MindDive::TunnelMeshFactory factory(bitmap_bin);
//current_tunnel_mesh = factory.create_classic_random();
current_tunnel_mesh = factory.create_random_with_walls();
//current_tunnel_mesh = factory.create_random_with_walls();
std::string map_filename = "/Users/markoates/Repos/allegro_flare/bin/data/maps/tunnel_mesh-02.tmj";
current_tunnel_mesh = factory.create_from_tmj(map_filename);
//current_music_track_identifier = "music_tracks/some-jamzz-04.ogg";
//std::string current_music_track_identifier = "music_tracks/tempo-track-152.ogg";
Expand Down
4 changes: 3 additions & 1 deletion src/AllegroFlare/Prototypes/MindDive/MindDive.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -175,7 +175,9 @@ void MindDive::initialize()
}
AllegroFlare::Prototypes::MindDive::TunnelMeshFactory factory(bitmap_bin);
//current_tunnel_mesh = factory.create_classic_random();
current_tunnel_mesh = factory.create_random_with_walls();
//current_tunnel_mesh = factory.create_random_with_walls();
std::string map_filename = "/Users/markoates/Repos/allegro_flare/bin/data/maps/tunnel_mesh-02.tmj";
current_tunnel_mesh = factory.create_from_tmj(map_filename);

//current_music_track_identifier = "music_tracks/some-jamzz-04.ogg";
//std::string current_music_track_identifier = "music_tracks/tempo-track-152.ogg";
Expand Down

0 comments on commit c8702b2

Please sign in to comment.