Merge branch 'vechro/dungeons' into 'master'

Add a new dungeon, fixes for existing ones

See merge request veloren/veloren!414
This commit is contained in:
Joshua Barretto 2019-08-06 10:21:39 +00:00
commit cbae0d753f
5 changed files with 13 additions and 7 deletions

BIN
assets/world/structure/dungeon/ruins-2.vox (Stored with Git LFS)

Binary file not shown.

BIN
assets/world/structure/dungeon/ruins.vox (Stored with Git LFS)

Binary file not shown.

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

Binary file not shown.

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

Binary file not shown.

View File

@ -29,11 +29,14 @@ static DUNGEON_RAND: RandomPerm = RandomPerm::new(0x42782335);
lazy_static! {
pub static ref DUNGEONS: Vec<Arc<Structure>> = vec![
assets::load_map("world.structure.dungeon.ruins", |s: Structure| s
.with_center(Vec3::new(57, 58, 62)))
.with_center(Vec3::new(57, 58, 61)))
.unwrap(),
assets::load_map("world.structure.dungeon.ruins-2", |s: Structure| s
assets::load_map("world.structure.dungeon.ruins_2", |s: Structure| s
.with_center(Vec3::new(53, 57, 60)))
.unwrap(),
assets::load_map("world.structure.dungeon.ruins_3", |s: Structure| s
.with_center(Vec3::new(58, 45, 72)))
.unwrap(),
];
}