Add water-based dungeons

This commit is contained in:
Vechro 2019-08-16 19:13:06 +03:00 committed by Joshua Barretto
parent f0e52e6002
commit 6cf5b99857
3 changed files with 14 additions and 0 deletions

BIN
assets/world/structure/dungeon/meso_sewer_temple.vox (Stored with Git LFS) Normal file

Binary file not shown.

BIN
assets/world/structure/dungeon/ruins_maze.vox (Stored with Git LFS) Normal file

Binary file not shown.

View File

@ -37,6 +37,14 @@ lazy_static! {
assets::load_map("world.structure.dungeon.ruins_3", |s: Structure| s
.with_center(Vec3::new(58, 45, 72)))
.unwrap(),
assets::load_map(
"world.structure.dungeon.meso_sewer_temple",
|s: Structure| s.with_center(Vec3::new(66, 56, 60))
)
.unwrap(),
assets::load_map("world.structure.dungeon.ruins_maze", |s: Structure| s
.with_center(Vec3::new(56, 62, 116)))
.unwrap(),
];
}