added two meat assets for mobs to drop

This commit is contained in:
AlKabir 2020-11-07 23:34:20 -06:00
parent 0bf437f2b1
commit 6535deae9c
5 changed files with 18 additions and 2 deletions

BIN
assets/voxygen/voxel/object/meat_drop.vox (Stored with Git LFS) Normal file

Binary file not shown.

BIN
assets/voxygen/voxel/object/steak.vox (Stored with Git LFS) Normal file

Binary file not shown.

View File

@ -68,6 +68,8 @@ make_case_elim!(
FireworkYellow = 58,
MultiArrow = 59,
BoltNature = 60,
MeatDrop = 61,
Steak = 62,
}
);
@ -78,7 +80,7 @@ impl Body {
}
}
pub const ALL_OBJECTS: [Body; 61] = [
pub const ALL_OBJECTS: [Body; 63] = [
Body::Arrow,
Body::Bomb,
Body::Scarecrow,
@ -140,6 +142,8 @@ pub const ALL_OBJECTS: [Body; 61] = [
Body::FireworkYellow,
Body::MultiArrow,
Body::BoltNature,
Body::MeatDrop,
Body::Steak,
];
impl From<Body> for super::Body {
@ -210,6 +214,8 @@ impl Body {
Body::FireworkYellow => "firework_yellow",
Body::MultiArrow => "multi_arrow",
Body::BoltNature => "bolt_nature",
Body::MeatDrop => "meat_drop",
Body::Steak => "steak",
}
}
}

View File

@ -436,7 +436,9 @@ pub fn handle_destroy(server: &mut Server, entity: EcsEntity, cause: HealthSourc
.create_object(comp::Pos(pos.0 + Vec3::unit_z() * 0.25), match old_body {
Some(common::comp::Body::Humanoid(_)) => object::Body::Pouch,
Some(common::comp::Body::Golem(_)) => object::Body::Chest,
_ => object::Body::Pumpkin,
Some(common::comp::Body::BipedLarge(_)) => object::Body::MeatDrop,
Some(common::comp::Body::QuadrupedLow(_)) => object::Body::MeatDrop,
_ => object::Body::Steak,
})
.with(item)
.build();

View File

@ -3649,6 +3649,8 @@ fn mesh_object(obj: &object::Body) -> BoneMeshes {
Body::TrainingDummy => ("object.training_dummy", Vec3::new(-7.0, -5.0, 0.0)),
Body::MultiArrow => ("weapon.projectile.multi-arrow", Vec3::new(-4.0, -9.5, -5.0)),
Body::BoltNature => ("weapon.projectile.nature-bolt", Vec3::new(-6.0, -6.0, -6.0)),
Body::MeatDrop => ("object.meat_drop", Vec3::new(0.0, 0.0, 0.0)),
Body::Steak => ("object.steak", Vec3::new(0.0, 0.0, -1.0)),
};
load_mesh(name, offset)
}