Tree fixes

This commit is contained in:
Monty Marz 2019-06-10 10:50:16 +00:00 committed by Joshua Barretto
parent 7f5a0970f1
commit bac7bad9f7
33 changed files with 50 additions and 89 deletions

BIN
assets/world/tree/birch/1.vox (Stored with Git LFS)

Binary file not shown.

BIN
assets/world/tree/birch/10.vox (Stored with Git LFS)

Binary file not shown.

BIN
assets/world/tree/birch/11.vox (Stored with Git LFS)

Binary file not shown.

BIN
assets/world/tree/birch/12.vox (Stored with Git LFS)

Binary file not shown.

BIN
assets/world/tree/birch/2.vox (Stored with Git LFS)

Binary file not shown.

BIN
assets/world/tree/birch/3.vox (Stored with Git LFS)

Binary file not shown.

BIN
assets/world/tree/birch/4.vox (Stored with Git LFS)

Binary file not shown.

BIN
assets/world/tree/birch/5.vox (Stored with Git LFS)

Binary file not shown.

BIN
assets/world/tree/birch/6.vox (Stored with Git LFS)

Binary file not shown.

BIN
assets/world/tree/birch/7.vox (Stored with Git LFS)

Binary file not shown.

BIN
assets/world/tree/birch/8.vox (Stored with Git LFS)

Binary file not shown.

BIN
assets/world/tree/birch/9.vox (Stored with Git LFS)

Binary file not shown.

BIN
assets/world/tree/oak_green/4.vox (Stored with Git LFS)

Binary file not shown.

BIN
assets/world/tree/oak_green/5.vox (Stored with Git LFS)

Binary file not shown.

BIN
assets/world/tree/oak_green/6.vox (Stored with Git LFS)

Binary file not shown.

BIN
assets/world/tree/oak_green/8.vox (Stored with Git LFS)

Binary file not shown.

BIN
assets/world/tree/pine_green/7.vox (Stored with Git LFS)

Binary file not shown.

BIN
assets/world/tree/pine_green_2/5.vox (Stored with Git LFS)

Binary file not shown.

BIN
assets/world/tree/pine_green_2/6.vox (Stored with Git LFS)

Binary file not shown.

BIN
assets/world/tree/pine_green_2/7.vox (Stored with Git LFS)

Binary file not shown.

BIN
assets/world/tree/snow_birch/1.vox (Stored with Git LFS)

Binary file not shown.

BIN
assets/world/tree/snow_birch/10.vox (Stored with Git LFS)

Binary file not shown.

BIN
assets/world/tree/snow_birch/11.vox (Stored with Git LFS)

Binary file not shown.

BIN
assets/world/tree/snow_birch/12.vox (Stored with Git LFS)

Binary file not shown.

BIN
assets/world/tree/snow_birch/2.vox (Stored with Git LFS)

Binary file not shown.

BIN
assets/world/tree/snow_birch/3.vox (Stored with Git LFS)

Binary file not shown.

BIN
assets/world/tree/snow_birch/4.vox (Stored with Git LFS)

Binary file not shown.

BIN
assets/world/tree/snow_birch/5.vox (Stored with Git LFS)

Binary file not shown.

BIN
assets/world/tree/snow_birch/6.vox (Stored with Git LFS)

Binary file not shown.

BIN
assets/world/tree/snow_birch/7.vox (Stored with Git LFS)

Binary file not shown.

BIN
assets/world/tree/snow_birch/8.vox (Stored with Git LFS)

Binary file not shown.

BIN
assets/world/tree/snow_birch/9.vox (Stored with Git LFS)

Binary file not shown.

View File

@ -1,10 +1,7 @@
use common::{assets, terrain::Structure};
use lazy_static::lazy_static;
use std::sync::Arc;
use vek::*;
use lazy_static::lazy_static;
use common::{
assets,
terrain::Structure,
};
lazy_static! {
pub static ref TREES: [Arc<Structure>; 61] = [
@ -132,40 +129,40 @@ lazy_static! {
.unwrap(),
// birch
assets::load_map("world/tree/birch/1.vox", |s: Structure| s
.with_center(Vec3::new(12, 9, 5)))
.with_center(Vec3::new(12, 9, 10)))
.unwrap(),
assets::load_map("world/tree/birch/2.vox", |s: Structure| s
.with_center(Vec3::new(11, 10, 5)))
.with_center(Vec3::new(11, 10, 10)))
.unwrap(),
assets::load_map("world/tree/birch/3.vox", |s: Structure| s
.with_center(Vec3::new(9, 10, 5)))
.with_center(Vec3::new(9, 10, 10)))
.unwrap(),
assets::load_map("world/tree/birch/4.vox", |s: Structure| s
.with_center(Vec3::new(9, 10, 5)))
.with_center(Vec3::new(9, 10, 10)))
.unwrap(),
assets::load_map("world/tree/birch/5.vox", |s: Structure| s
.with_center(Vec3::new(9, 11, 5)))
.with_center(Vec3::new(9, 11, 10)))
.unwrap(),
assets::load_map("world/tree/birch/6.vox", |s: Structure| s
.with_center(Vec3::new(9, 9, 5)))
.with_center(Vec3::new(9, 9, 10)))
.unwrap(),
assets::load_map("world/tree/birch/7.vox", |s: Structure| s
.with_center(Vec3::new(10, 10, 5)))
.with_center(Vec3::new(10, 10, 10)))
.unwrap(),
assets::load_map("world/tree/birch/8.vox", |s: Structure| s
.with_center(Vec3::new(9, 9, 5)))
.with_center(Vec3::new(9, 9, 10)))
.unwrap(),
assets::load_map("world/tree/birch/9.vox", |s: Structure| s
.with_center(Vec3::new(9, 10, 5)))
.with_center(Vec3::new(9, 10, 10)))
.unwrap(),
assets::load_map("world/tree/birch/10.vox", |s: Structure| s
.with_center(Vec3::new(10, 9, 5)))
.with_center(Vec3::new(10, 9, 10)))
.unwrap(),
assets::load_map("world/tree/birch/11.vox", |s: Structure| s
.with_center(Vec3::new(9, 10, 5)))
.with_center(Vec3::new(9, 10, 10)))
.unwrap(),
assets::load_map("world/tree/birch/12.vox", |s: Structure| s
.with_center(Vec3::new(10, 9, 5)))
.with_center(Vec3::new(10, 9, 10)))
.unwrap(),
// poplar
assets::load_map("world/tree/poplar/1.vox", |s: Structure| s