From 786dd1ab8a666bbcb6e566faf1f995d3a7725770 Mon Sep 17 00:00:00 2001 From: jshipsey Date: Sun, 23 Aug 2020 03:39:18 -0400 Subject: [PATCH 01/28] golem addition, fix for axe attack --- common/src/comp/body/theropod.rs | 73 +++++++++++++ voxygen/src/anim/Cargo.toml | 2 +- voxygen/src/anim/src/character/alpha.rs | 66 ++++++------ voxygen/src/anim/src/golem/alpha.rs | 132 ++++++++++++++++++++++++ voxygen/src/anim/src/golem/idle.rs | 42 +++++--- voxygen/src/anim/src/golem/mod.rs | 45 +++++--- voxygen/src/anim/src/golem/run.rs | 103 +++++++++++------- voxygen/src/scene/figure/cache.rs | 7 -- voxygen/src/scene/figure/load.rs | 22 ++++ voxygen/src/scene/figure/mod.rs | 16 ++- 10 files changed, 392 insertions(+), 116 deletions(-) create mode 100644 common/src/comp/body/theropod.rs create mode 100644 voxygen/src/anim/src/golem/alpha.rs diff --git a/common/src/comp/body/theropod.rs b/common/src/comp/body/theropod.rs new file mode 100644 index 0000000000..cee07dd02d --- /dev/null +++ b/common/src/comp/body/theropod.rs @@ -0,0 +1,73 @@ +use rand::{seq::SliceRandom, thread_rng}; +use serde::{Deserialize, Serialize}; + +#[derive(Copy, Clone, Debug, PartialEq, Eq, Hash, Serialize, Deserialize)] +pub struct Body { + pub species: Species, + pub body_type: BodyType, +} + +impl Body { + pub fn random() -> Self { + let mut rng = thread_rng(); + let species = *(&ALL_SPECIES).choose(&mut rng).unwrap(); + Self::random_with(&mut rng, &species) + } + + #[inline] + pub fn random_with(rng: &mut impl rand::Rng, &species: &Species) -> Self { + let body_type = *(&ALL_BODY_TYPES).choose(rng).unwrap(); + Self { species, body_type } + } +} + +impl From for super::Body { + fn from(body: Body) -> Self { super::Body::Critter(body) } +} + +#[derive(Copy, Clone, Debug, PartialEq, Eq, Hash, Serialize, Deserialize)] +#[repr(u32)] +pub enum Species { + Archaeos = 0, + Odontotyrannos = 1, + +} + +/// Data representing per-species generic data. +#[derive(Clone, Debug, Serialize, Deserialize)] +pub struct AllSpecies { + pub archaeos: SpeciesMeta, + pub odontotyrannos: SpeciesMeta, +} + +impl<'a, SpeciesMeta> core::ops::Index<&'a Species> for AllSpecies { + type Output = SpeciesMeta; + + #[inline] + fn index(&self, &index: &'a Species) -> &Self::Output { + match index { + Species::Archaeos => &self.archaeos, + Species::Odontotyrannos => &self.odontotyrannos, + } + } +} + +pub const ALL_SPECIES: [Species; 2] = [ + Species::Archaeos, + Species::Odontotyrannos, +]; + +impl<'a, SpeciesMeta: 'a> IntoIterator for &'a AllSpecies { + type IntoIter = std::iter::Copied>; + type Item = Species; + + fn into_iter(self) -> Self::IntoIter { ALL_SPECIES.iter().copied() } +} + +#[derive(Copy, Clone, Debug, PartialEq, Eq, Hash, Serialize, Deserialize)] +#[repr(u32)] +pub enum BodyType { + Female = 0, + Male = 1, +} +pub const ALL_BODY_TYPES: [BodyType; 2] = [BodyType::Female, BodyType::Male]; diff --git a/voxygen/src/anim/Cargo.toml b/voxygen/src/anim/Cargo.toml index 75bb0ecbe3..10869c6cc3 100644 --- a/voxygen/src/anim/Cargo.toml +++ b/voxygen/src/anim/Cargo.toml @@ -8,7 +8,7 @@ version = "0.7.0" name = "voxygen_anim" # Uncomment to use animation hot reloading # Note: this breaks `cargo test` -# crate-type = ["lib", "cdylib"] +crate-type = ["lib", "cdylib"] [features] be-dyn-lib = [] diff --git a/voxygen/src/anim/src/character/alpha.rs b/voxygen/src/anim/src/character/alpha.rs index 697c369581..cf04b1309f 100644 --- a/voxygen/src/anim/src/character/alpha.rs +++ b/voxygen/src/anim/src/character/alpha.rs @@ -48,14 +48,14 @@ impl Animation for AlphaAnimation { / (0.4 + 4.6 * ((anim_time as f32 * lab as f32 * 18.0).sin()).powf(2.0 as f32))) .sqrt()) * ((anim_time as f32 * lab as f32 * 18.0).sin()); + let axe = (((1.0) + / (0.05 + 0.95 * ((anim_time as f32 * lab as f32 * 8.0).sin()).powf(2.0 as f32))) + .sqrt()) + * ((anim_time as f32 * lab as f32 * 8.0).sin()); let slower = (((1.0) / (0.0001 + 0.999 * ((anim_time as f32 * lab as f32 * 4.0).sin()).powf(2.0 as f32))) .sqrt()) * ((anim_time as f32 * lab as f32 * 4.0).sin()); - let slowax = (((5.0) - / (0.1 + 4.9 * ((anim_time as f32 * lab as f32 * 4.0 + 1.9).cos()).powf(2.0 as f32))) - .sqrt()) - * ((anim_time as f32 * lab as f32 * 4.0 + 1.9).cos()); match active_tool_kind { //TODO: Inventory @@ -216,51 +216,45 @@ impl Animation for AlphaAnimation { next.torso.scale = Vec3::one() / 11.0 * skeleton_attr.scaler; }, Some(ToolKind::Axe(_)) => { - next.head.position = Vec3::new( - 0.0 + slowax * 2.0, - 0.0 + skeleton_attr.head.0 + slowax * -2.0, - skeleton_attr.head.1, - ); - next.head.orientation = Quaternion::rotation_z(slowax * 0.25) - * Quaternion::rotation_x(0.0 + slowax * 0.2) - * Quaternion::rotation_y(slowax * 0.2); + next.head.position = + Vec3::new(0.0, 0.0 + skeleton_attr.head.0, skeleton_attr.head.1); + next.head.orientation = Quaternion::rotation_z(0.1 + axe * 0.2) + * Quaternion::rotation_x(0.0) + * Quaternion::rotation_y(0.2); next.head.scale = Vec3::one() * skeleton_attr.head_scale; next.chest.position = Vec3::new(0.0, 0.0, 7.0); - next.chest.orientation = Quaternion::rotation_z(slowax * 0.2) - * Quaternion::rotation_x(0.0 + slowax * 0.2) - * Quaternion::rotation_y(slowax * 0.2); + next.chest.orientation = Quaternion::rotation_z(0.2 + axe * 0.2); next.chest.scale = Vec3::one(); next.belt.position = Vec3::new(0.0, 0.0, -2.0); - next.belt.orientation = next.chest.orientation * -0.2; + next.belt.orientation = Quaternion::rotation_z(0.2 + axe * -0.1); next.shorts.position = Vec3::new(0.0, 0.0, -5.0); - next.shorts.orientation = next.chest.orientation * -0.15; + next.shorts.orientation = Quaternion::rotation_z(0.2 + axe * -0.2); - next.l_hand.position = Vec3::new(-4.0, 3.0, 2.0); - next.l_hand.orientation = Quaternion::rotation_x(-0.3) - * Quaternion::rotation_z(3.14 - 0.3) - * Quaternion::rotation_y(-0.8); + next.l_hand.position = Vec3::new(-0.5, 0.0, 4.0); + next.l_hand.orientation = Quaternion::rotation_x(PI / 2.0) + * Quaternion::rotation_z(0.0) + * Quaternion::rotation_y(0.0); next.l_hand.scale = Vec3::one() * 1.08; - next.r_hand.position = Vec3::new(-2.5, 9.0, 0.0); - next.r_hand.orientation = Quaternion::rotation_x(-0.3) - * Quaternion::rotation_z(3.14 - 0.3) - * Quaternion::rotation_y(-0.8); + next.r_hand.position = Vec3::new(0.5, 0.0, -2.5); + next.r_hand.orientation = Quaternion::rotation_x(PI / 2.0) + * Quaternion::rotation_z(0.0) + * Quaternion::rotation_y(0.0); next.r_hand.scale = Vec3::one() * 1.06; - next.main.position = Vec3::new(-6.0, 10.0, -5.0); - next.main.orientation = Quaternion::rotation_x(1.27) - * Quaternion::rotation_y(-0.3) - * Quaternion::rotation_z(-0.8); + next.main.position = Vec3::new(-0.0, -2.0, -1.0); + next.main.orientation = Quaternion::rotation_x(0.0) + * Quaternion::rotation_y(0.0) + * Quaternion::rotation_z(0.0); - next.lantern.orientation = Quaternion::rotation_x(slowax * -0.7 + 0.4) - * Quaternion::rotation_y(slowax * 0.4); + next.control.position = Vec3::new(2.0 + axe * -7.0, 11.0, 3.0); + next.control.orientation = Quaternion::rotation_x(1.6) + * Quaternion::rotation_y(-2.0 + axe * 0.5) + * Quaternion::rotation_z(PI * 0.4); + next.lantern.orientation = + Quaternion::rotation_x(0.4) * Quaternion::rotation_y(0.0); - next.control.position = Vec3::new(0.0, 0.0 + slowax * 8.2, 6.0); - next.control.orientation = Quaternion::rotation_x(0.8) - * Quaternion::rotation_y(-0.3) - * Quaternion::rotation_z(-0.7 + slowax * -1.9); - next.control.scale = Vec3::one(); next.torso.position = Vec3::new(0.0, 0.0, 0.1) * skeleton_attr.scaler; next.torso.orientation = Quaternion::rotation_z(0.0) * Quaternion::rotation_x(0.0) diff --git a/voxygen/src/anim/src/golem/alpha.rs b/voxygen/src/anim/src/golem/alpha.rs new file mode 100644 index 0000000000..d4bfbde173 --- /dev/null +++ b/voxygen/src/anim/src/golem/alpha.rs @@ -0,0 +1,132 @@ +use super::{ + super::{vek::*, Animation}, + GolemSkeleton, SkeletonAttr, +}; +use std::f32::consts::PI; + +pub struct AlphaAnimation; + +impl Animation for AlphaAnimation { + type Dependency = (f32, f64); + type Skeleton = GolemSkeleton; + + #[cfg(feature = "use-dyn-lib")] + const UPDATE_FN: &'static [u8] = b"golem_alpha\0"; + + #[cfg_attr(feature = "be-dyn-lib", export_name = "golem_alpha")] + + fn update_skeleton_inner( + skeleton: &Self::Skeleton, + (_velocity, _global_time): Self::Dependency, + anim_time: f64, + _rate: &mut f32, + skeleton_attr: &SkeletonAttr, + ) -> Self::Skeleton { + let mut next = (*skeleton).clone(); + + let lab = 1.0; + + let slower = (((1.0) + / (0.05 + + 0.95 + * ((anim_time as f32 * lab as f32 * 8.0 - 0.5 * PI).sin()).powf(2.0 as f32))) + .sqrt()) + * ((anim_time as f32 * lab as f32 * 8.0 - 0.5 * PI).sin()) + + 1.0; + let twist = (anim_time as f32 * lab as f32 * 4.0).sin() + 0.5; + + let slowersmooth = (anim_time as f32 * lab as f32 * 8.0).sin(); + next.head.position = Vec3::new(0.0, skeleton_attr.head.0, skeleton_attr.head.1) * 1.02; + next.head.orientation = Quaternion::rotation_z(0.0) * Quaternion::rotation_x(-0.2); + next.head.scale = Vec3::one() * 1.02; + + next.upper_torso.position = Vec3::new( + 0.0, + skeleton_attr.upper_torso.0, + skeleton_attr.upper_torso.1, + ) / 8.0; + next.upper_torso.orientation = + Quaternion::rotation_z(twist * 1.5) * Quaternion::rotation_x(0.0); + next.upper_torso.scale = Vec3::one() / 8.0; + + next.lower_torso.position = Vec3::new( + 0.0, + skeleton_attr.lower_torso.0, + skeleton_attr.lower_torso.1, + ); + next.lower_torso.orientation = + Quaternion::rotation_z(twist * -1.5) * Quaternion::rotation_x(0.0); + next.lower_torso.scale = Vec3::one(); + + next.shoulder_l.position = Vec3::new( + -skeleton_attr.shoulder.0, + skeleton_attr.shoulder.1, + skeleton_attr.shoulder.2, + ); + next.shoulder_l.orientation = Quaternion::rotation_z(0.0) * Quaternion::rotation_x(0.0); + next.shoulder_l.scale = Vec3::one(); + + next.shoulder_r.position = Vec3::new( + skeleton_attr.shoulder.0, + skeleton_attr.shoulder.1, + skeleton_attr.shoulder.2, + ); + next.shoulder_r.orientation = + Quaternion::rotation_z(0.0) * Quaternion::rotation_x(slower * 0.9); + next.shoulder_r.scale = Vec3::one(); + + next.hand_l.position = Vec3::new( + -skeleton_attr.hand.0, + skeleton_attr.hand.1, + skeleton_attr.hand.2, + ); + next.hand_l.orientation = Quaternion::rotation_z(0.0) * Quaternion::rotation_x(0.0); + next.hand_l.scale = Vec3::one() * 1.02; + + next.hand_r.position = Vec3::new( + skeleton_attr.hand.0, + skeleton_attr.hand.1, + skeleton_attr.hand.2, + ); + next.hand_r.orientation = + Quaternion::rotation_z(0.0) * Quaternion::rotation_x(slower * 1.5); + next.hand_r.scale = Vec3::one() * 1.02; + /* + next.leg_l.position = Vec3::new( + -skeleton_attr.leg.0, + skeleton_attr.leg.1, + skeleton_attr.leg.2, + ) * 1.02; + next.leg_l.orientation = Quaternion::rotation_z(0.0) * Quaternion::rotation_x(0.0); + next.leg_l.scale = Vec3::one() * 1.02; + + next.leg_r.position = Vec3::new( + skeleton_attr.leg.0, + skeleton_attr.leg.1, + skeleton_attr.leg.2, + ) * 1.02; + next.leg_r.orientation = Quaternion::rotation_z(0.0) * Quaternion::rotation_x(0.0); + next.leg_r.scale = Vec3::one() * 1.02; + + next.foot_l.position = Vec3::new( + -skeleton_attr.foot.0, + skeleton_attr.foot.1, + skeleton_attr.foot.2, + ); + next.foot_l.orientation = Quaternion::rotation_z(0.0) * Quaternion::rotation_x(0.0); + next.foot_l.scale = Vec3::one(); + + next.foot_r.position = Vec3::new( + skeleton_attr.foot.0, + skeleton_attr.foot.1, + skeleton_attr.foot.2, + ); + next.foot_r.orientation = Quaternion::rotation_z(0.0) * Quaternion::rotation_x(0.0); + next.foot_r.scale = Vec3::one(); + */ + next.torso.position = Vec3::new(0.0, 0.0, 0.0); + next.torso.orientation = Quaternion::rotation_z(0.0) * Quaternion::rotation_x(0.0); + next.torso.scale = Vec3::one(); + next + } +} diff --git a/voxygen/src/anim/src/golem/idle.rs b/voxygen/src/anim/src/golem/idle.rs index da453d4629..c6c2d485b5 100644 --- a/voxygen/src/anim/src/golem/idle.rs +++ b/voxygen/src/anim/src/golem/idle.rs @@ -25,7 +25,7 @@ impl Animation for IdleAnimation { let mut next = (*skeleton).clone(); let lab = 1.0; - let torso = (anim_time as f32 * lab as f32 + 1.5 * PI).sin(); + let breathe = (anim_time as f32 * lab as f32 + 1.5 * PI).sin(); let look = Vec2::new( ((global_time + anim_time) as f32 / 8.0) @@ -43,7 +43,7 @@ impl Animation for IdleAnimation { next.head.position = Vec3::new( 0.0, skeleton_attr.head.0, - skeleton_attr.head.1 + torso * 0.2, + skeleton_attr.head.1 + breathe * 0.2, ) * 1.02; next.head.orientation = Quaternion::rotation_z(look.x * 0.6) * Quaternion::rotation_x(look.y * 0.6); @@ -52,17 +52,25 @@ impl Animation for IdleAnimation { next.upper_torso.position = Vec3::new( 0.0, skeleton_attr.upper_torso.0, - skeleton_attr.upper_torso.1 + torso * 0.5, + skeleton_attr.upper_torso.1 + breathe * 0.5, ) / 8.0; next.upper_torso.orientation = Quaternion::rotation_z(0.0) * Quaternion::rotation_x(0.0); next.upper_torso.scale = Vec3::one() / 8.0; + next.lower_torso.position = Vec3::new( + 0.0, + skeleton_attr.lower_torso.0, + skeleton_attr.lower_torso.1 + breathe * -0.2, + ); + next.lower_torso.orientation = Quaternion::rotation_z(0.0) * Quaternion::rotation_x(0.0); + next.lower_torso.scale = Vec3::one(); + next.shoulder_l.position = Vec3::new( -skeleton_attr.shoulder.0, skeleton_attr.shoulder.1, skeleton_attr.shoulder.2, ); - next.shoulder_l.orientation = Quaternion::rotation_z(0.0) * Quaternion::rotation_x(0.0); + next.shoulder_l.orientation = Quaternion::rotation_z(0.0) * Quaternion::rotation_x(-0.2); next.shoulder_l.scale = Vec3::one(); next.shoulder_r.position = Vec3::new( @@ -70,29 +78,29 @@ impl Animation for IdleAnimation { skeleton_attr.shoulder.1, skeleton_attr.shoulder.2, ); - next.shoulder_r.orientation = Quaternion::rotation_z(0.0) * Quaternion::rotation_x(0.0); + next.shoulder_r.orientation = Quaternion::rotation_z(0.0) * Quaternion::rotation_x(-0.2); next.shoulder_r.scale = Vec3::one(); next.hand_l.position = Vec3::new( -skeleton_attr.hand.0, skeleton_attr.hand.1, - skeleton_attr.hand.2 + torso * 0.6, + skeleton_attr.hand.2 + breathe * 0.6, ); - next.hand_l.orientation = Quaternion::rotation_z(0.0) * Quaternion::rotation_x(0.0); + next.hand_l.orientation = Quaternion::rotation_z(0.0) * Quaternion::rotation_x(0.2); next.hand_l.scale = Vec3::one() * 1.02; next.hand_r.position = Vec3::new( skeleton_attr.hand.0, skeleton_attr.hand.1, - skeleton_attr.hand.2 + torso * 0.6, + skeleton_attr.hand.2 + breathe * 0.6, ); - next.hand_r.orientation = Quaternion::rotation_z(0.0) * Quaternion::rotation_x(0.0); + next.hand_r.orientation = Quaternion::rotation_z(0.0) * Quaternion::rotation_x(0.2); next.hand_r.scale = Vec3::one() * 1.02; next.leg_l.position = Vec3::new( -skeleton_attr.leg.0, skeleton_attr.leg.1, - skeleton_attr.leg.2, + skeleton_attr.leg.2 + breathe * -0.2, ) * 1.02; next.leg_l.orientation = Quaternion::rotation_z(0.0) * Quaternion::rotation_x(0.0); next.leg_l.scale = Vec3::one() * 1.02; @@ -100,7 +108,7 @@ impl Animation for IdleAnimation { next.leg_r.position = Vec3::new( skeleton_attr.leg.0, skeleton_attr.leg.1, - skeleton_attr.leg.2, + skeleton_attr.leg.2 + breathe * -0.2, ) * 1.02; next.leg_r.orientation = Quaternion::rotation_z(0.0) * Quaternion::rotation_x(0.0); next.leg_r.scale = Vec3::one() * 1.02; @@ -108,18 +116,18 @@ impl Animation for IdleAnimation { next.foot_l.position = Vec3::new( -skeleton_attr.foot.0, skeleton_attr.foot.1, - skeleton_attr.foot.2, - ) / 8.0; + skeleton_attr.foot.2 + breathe * -0.2, + ); next.foot_l.orientation = Quaternion::rotation_z(0.0) * Quaternion::rotation_x(0.0); - next.foot_l.scale = Vec3::one() / 8.0; + next.foot_l.scale = Vec3::one(); next.foot_r.position = Vec3::new( skeleton_attr.foot.0, skeleton_attr.foot.1, - skeleton_attr.foot.2, - ) / 8.0; + skeleton_attr.foot.2 + breathe * -0.2, + ); next.foot_r.orientation = Quaternion::rotation_z(0.0) * Quaternion::rotation_x(0.0); - next.foot_r.scale = Vec3::one() / 8.0; + next.foot_r.scale = Vec3::one(); next.torso.position = Vec3::new(0.0, 0.0, 0.0); next.torso.orientation = Quaternion::rotation_z(0.0) * Quaternion::rotation_x(0.0); diff --git a/voxygen/src/anim/src/golem/mod.rs b/voxygen/src/anim/src/golem/mod.rs index 8a39b74dec..5d5079f721 100644 --- a/voxygen/src/anim/src/golem/mod.rs +++ b/voxygen/src/anim/src/golem/mod.rs @@ -1,9 +1,12 @@ +pub mod alpha; pub mod idle; pub mod jump; pub mod run; // Reexports -pub use self::{idle::IdleAnimation, jump::JumpAnimation, run::RunAnimation}; +pub use self::{ + alpha::AlphaAnimation, idle::IdleAnimation, jump::JumpAnimation, run::RunAnimation, +}; use super::{make_bone, vek::*, FigureBoneData, Skeleton}; use common::comp::{self}; @@ -14,6 +17,7 @@ pub type Body = comp::golem::Body; skeleton_impls!(struct GolemSkeleton { + head, + upper_torso, + + lower_torso, + shoulder_l, + shoulder_r, + hand_l, @@ -29,7 +33,7 @@ impl Skeleton for GolemSkeleton { type Attr = SkeletonAttr; type Body = Body; - const BONE_COUNT: usize = 10; + const BONE_COUNT: usize = 11; #[cfg(feature = "use-dyn-lib")] const COMPUTE_FN: &'static [u8] = b"golem_compute_mats\0"; @@ -40,21 +44,25 @@ impl Skeleton for GolemSkeleton { buf: &mut [FigureBoneData; super::MAX_BONE_COUNT], ) -> Vec3 { let torso_mat = base_mat * Mat4::::from(self.torso); - let foot_l_mat = base_mat * Mat4::::from(self.foot_l); - let foot_r_mat = base_mat * Mat4::::from(self.foot_r); let upper_torso_mat = torso_mat * Mat4::::from(self.upper_torso); + let lower_torso_mat = upper_torso_mat * Mat4::::from(self.lower_torso); + let leg_l_mat = lower_torso_mat * Mat4::::from(self.leg_l); + let leg_r_mat = lower_torso_mat * Mat4::::from(self.leg_r); + let shoulder_l_mat = upper_torso_mat * Mat4::::from(self.shoulder_l); + let shoulder_r_mat = upper_torso_mat * Mat4::::from(self.shoulder_r); *(<&mut [_; Self::BONE_COUNT]>::try_from(&mut buf[0..Self::BONE_COUNT]).unwrap()) = [ make_bone(upper_torso_mat * Mat4::::from(self.head)), make_bone(upper_torso_mat), + make_bone(lower_torso_mat), make_bone(upper_torso_mat * Mat4::::from(self.shoulder_l)), make_bone(upper_torso_mat * Mat4::::from(self.shoulder_r)), - make_bone(upper_torso_mat * Mat4::::from(self.hand_l)), - make_bone(upper_torso_mat * Mat4::::from(self.hand_r)), - make_bone(foot_l_mat * Mat4::::from(self.leg_l)), - make_bone(foot_r_mat * Mat4::::from(self.leg_r)), - make_bone(foot_l_mat), - make_bone(foot_r_mat), + make_bone(shoulder_l_mat * Mat4::::from(self.hand_l)), + make_bone(shoulder_r_mat * Mat4::::from(self.hand_r)), + make_bone(leg_l_mat), + make_bone(leg_r_mat), + make_bone(leg_l_mat * Mat4::::from(self.foot_l)), + make_bone(leg_r_mat * Mat4::::from(self.foot_r)), ]; Vec3::default() } @@ -63,6 +71,7 @@ impl Skeleton for GolemSkeleton { pub struct SkeletonAttr { head: (f32, f32), upper_torso: (f32, f32), + lower_torso: (f32, f32), shoulder: (f32, f32, f32), hand: (f32, f32, f32), leg: (f32, f32, f32), @@ -85,6 +94,7 @@ impl Default for SkeletonAttr { Self { head: (0.0, 0.0), upper_torso: (0.0, 0.0), + lower_torso: (0.0, 0.0), shoulder: (0.0, 0.0, 0.0), hand: (0.0, 0.0, 0.0), leg: (0.0, 0.0, 0.0), @@ -98,22 +108,25 @@ impl<'a> From<&'a Body> for SkeletonAttr { use comp::golem::Species::*; Self { head: match (body.species, body.body_type) { - (StoneGolem, _) => (0.0, 16.0), + (StoneGolem, _) => (0.0, 2.0), }, upper_torso: match (body.species, body.body_type) { - (StoneGolem, _) => (0.0, 33.0), + (StoneGolem, _) => (0.0, 34.5), + }, + lower_torso: match (body.species, body.body_type) { + (StoneGolem, _) => (0.0, -10.5), }, shoulder: match (body.species, body.body_type) { - (StoneGolem, _) => (8.0, -0.5, 7.5), + (StoneGolem, _) => (8.0, -1.5, 4.0), }, hand: match (body.species, body.body_type) { - (StoneGolem, _) => (9.5, -1.0, 4.5), + (StoneGolem, _) => (12.5, -1.0, -7.0), }, leg: match (body.species, body.body_type) { - (StoneGolem, _) => (-1.0, 0.0, 9.0), + (StoneGolem, _) => (4.0, 0.0, -3.5), }, foot: match (body.species, body.body_type) { - (StoneGolem, _) => (4.0, 0.5, 11.0), + (StoneGolem, _) => (3.5, 0.5, -9.5), }, } } diff --git a/voxygen/src/anim/src/golem/run.rs b/voxygen/src/anim/src/golem/run.rs index 63761bb1a2..c1226293ed 100644 --- a/voxygen/src/anim/src/golem/run.rs +++ b/voxygen/src/anim/src/golem/run.rs @@ -24,46 +24,68 @@ impl Animation for RunAnimation { ) -> Self::Skeleton { let mut next = (*skeleton).clone(); - let lab = 10.0; - - let belt = (anim_time as f32 * lab as f32 + 1.5 * PI).sin(); - - let foothoril = (anim_time as f32 * lab as f32 + PI * 1.4).sin(); - let foothorir = (anim_time as f32 * lab as f32 + PI * 0.4).sin(); - - let footvertl = (anim_time as f32 * lab as f32).sin().max(0.1); - let footvertr = (anim_time as f32 * lab as f32 + PI).sin().max(0.1); + let lab = 0.45; //.65 + let foothoril = (((1.0) + / (0.4 + + (0.6) + * ((anim_time as f32 * 16.0 * lab as f32 + PI * 1.4).sin()).powf(2.0 as f32))) + .sqrt()) + * ((anim_time as f32 * 16.0 * lab as f32 + PI * 1.4).sin()); + let foothorir = (((1.0) + / (0.4 + + (0.6) + * ((anim_time as f32 * 16.0 * lab as f32 + PI * 0.4).sin()).powf(2.0 as f32))) + .sqrt()) + * ((anim_time as f32 * 16.0 * lab as f32 + PI * 0.4).sin()); + let footvertl = (anim_time as f32 * 16.0 * lab as f32).sin(); + let footvertr = (anim_time as f32 * 16.0 * lab as f32 + PI).sin(); let footrotl = (((5.0) - / (1.0 + (4.0) * ((anim_time as f32 * lab as f32 + PI * 1.4).sin()).powf(2.0 as f32))) + / (2.5 + + (2.5) + * ((anim_time as f32 * 16.0 * lab as f32 + PI * 1.4).sin()).powf(2.0 as f32))) .sqrt()) - * ((anim_time as f32 * lab as f32 + PI * 1.4).sin()); + * ((anim_time as f32 * 16.0 * lab as f32 + PI * 1.4).sin()); let footrotr = (((5.0) - / (1.0 + (4.0) * ((anim_time as f32 * lab as f32 + PI * 0.4).sin()).powf(2.0 as f32))) + / (1.0 + + (4.0) + * ((anim_time as f32 * 16.0 * lab as f32 + PI * 0.4).sin()).powf(2.0 as f32))) .sqrt()) - * ((anim_time as f32 * lab as f32 + PI * 0.4).sin()); + * ((anim_time as f32 * 16.0 * lab as f32 + PI * 0.4).sin()); + + let short = (anim_time as f32 * lab as f32 * 16.0).sin(); + let shortalt = (anim_time as f32 * lab as f32 * 16.0 + PI / 2.0).sin(); next.head.position = Vec3::new(0.0, skeleton_attr.head.0, skeleton_attr.head.1) * 1.02; - next.head.orientation = Quaternion::rotation_z(belt * -0.3) * Quaternion::rotation_x(0.3); + next.head.orientation = Quaternion::rotation_z(short * -0.3) * Quaternion::rotation_x(-0.2); next.head.scale = Vec3::one() * 1.02; next.upper_torso.position = Vec3::new( 0.0, skeleton_attr.upper_torso.0, - skeleton_attr.upper_torso.1 + belt * 1.0, + skeleton_attr.upper_torso.1 + short * 1.0, ) / 8.0; next.upper_torso.orientation = - Quaternion::rotation_z(belt * 0.40) * Quaternion::rotation_x(0.0); + Quaternion::rotation_z(short * 0.40) * Quaternion::rotation_x(0.0); next.upper_torso.scale = Vec3::one() / 8.0; + next.lower_torso.position = Vec3::new( + 0.0, + skeleton_attr.lower_torso.0, + skeleton_attr.lower_torso.1, + ); + next.lower_torso.orientation = Quaternion::rotation_z(shortalt * 0.60); + next.lower_torso.scale = Vec3::one(); + next.shoulder_l.position = Vec3::new( -skeleton_attr.shoulder.0, skeleton_attr.shoulder.1, skeleton_attr.shoulder.2, ); - next.shoulder_l.orientation = - Quaternion::rotation_z(0.0) * Quaternion::rotation_x(footrotl * -0.15); + next.shoulder_l.orientation = Quaternion::rotation_z(footrotl * 0.5) + * Quaternion::rotation_y(0.15) + * Quaternion::rotation_x(footrotl * -0.95); next.shoulder_l.scale = Vec3::one(); next.shoulder_r.position = Vec3::new( @@ -71,8 +93,9 @@ impl Animation for RunAnimation { skeleton_attr.shoulder.1, skeleton_attr.shoulder.2, ); - next.shoulder_r.orientation = - Quaternion::rotation_z(0.0) * Quaternion::rotation_x(footrotr * -0.15); + next.shoulder_r.orientation = Quaternion::rotation_z(footrotr * -0.5) + * Quaternion::rotation_y(-0.15) + * Quaternion::rotation_x(footrotr * -0.95); next.shoulder_r.scale = Vec3::one(); next.hand_l.position = Vec3::new( @@ -80,8 +103,9 @@ impl Animation for RunAnimation { skeleton_attr.hand.1, skeleton_attr.hand.2, ); - next.hand_l.orientation = - Quaternion::rotation_z(0.0) * Quaternion::rotation_x(0.3 + footrotl * -0.8); + next.hand_l.orientation = Quaternion::rotation_x(0.5 + footrotl * -1.1) + * Quaternion::rotation_y(0.5) + * Quaternion::rotation_z(-0.35 + footrotl * -1.0); next.hand_l.scale = Vec3::one() * 1.02; next.hand_r.position = Vec3::new( @@ -89,8 +113,9 @@ impl Animation for RunAnimation { skeleton_attr.hand.1, skeleton_attr.hand.2, ); - next.hand_r.orientation = - Quaternion::rotation_z(0.0) * Quaternion::rotation_x(0.3 + footrotr * -0.8); + next.hand_r.orientation = Quaternion::rotation_x(0.5 + footrotr * -1.1) + * Quaternion::rotation_y(-0.5) + * Quaternion::rotation_z(0.35 + footrotr * 1.0); next.hand_r.scale = Vec3::one() * 1.02; next.leg_l.position = Vec3::new( @@ -98,7 +123,9 @@ impl Animation for RunAnimation { skeleton_attr.leg.1, skeleton_attr.leg.2, ) * 1.02; - next.leg_l.orientation = Quaternion::rotation_z(0.0) * Quaternion::rotation_x(0.0); + next.leg_l.orientation = Quaternion::rotation_x(footrotl * 1.5) + * Quaternion::rotation_y(-0.3) + * Quaternion::rotation_z(footrotl * -0.5); next.leg_l.scale = Vec3::one() * 1.02; next.leg_r.position = Vec3::new( @@ -107,27 +134,29 @@ impl Animation for RunAnimation { skeleton_attr.leg.2, ) * 1.02; - next.leg_r.orientation = Quaternion::rotation_z(0.0) * Quaternion::rotation_x(0.0); + next.leg_r.orientation = Quaternion::rotation_x(footrotr * 1.5) + * Quaternion::rotation_y(0.3) + * Quaternion::rotation_z(footrotr * 0.5); next.leg_r.scale = Vec3::one() * 1.02; next.foot_l.position = Vec3::new( -skeleton_attr.foot.0, - skeleton_attr.foot.1 + foothoril * 8.0 + 3.0, - skeleton_attr.foot.2 + footvertl * 4.0, - ) / 8.0; - next.foot_l.orientation = Quaternion::rotation_x(footrotl * 0.7); - next.foot_l.scale = Vec3::one() / 8.0 * 0.98; + skeleton_attr.foot.1 + foothoril * 13.0, + skeleton_attr.foot.2 - 3.0 + (footvertl * 15.0).max(-2.0), + ); + next.foot_l.orientation = Quaternion::rotation_x(footrotl * 1.8); + next.foot_l.scale = Vec3::one() * 0.98; next.foot_r.position = Vec3::new( skeleton_attr.foot.0, - skeleton_attr.foot.1 + foothorir * 8.0 + 3.0, - skeleton_attr.foot.2 + footvertr * 4.0, - ) / 8.0; + skeleton_attr.foot.1 + foothorir * 13.0, + skeleton_attr.foot.2 - 3.0 + (footvertr * 15.0).max(-2.0), + ); next.foot_r.orientation = - Quaternion::rotation_z(0.0) * Quaternion::rotation_x(footrotr * 0.7); - next.foot_r.scale = Vec3::one() / 8.0 * 0.98; + Quaternion::rotation_z(0.0) * Quaternion::rotation_x(footrotr * 1.8); + next.foot_r.scale = Vec3::one() * 0.98; - next.torso.position = Vec3::new(0.0, 0.0, belt * 0.15); + next.torso.position = Vec3::new(0.0, 0.0, short * 0.15); next.torso.orientation = Quaternion::rotation_z(0.0) * Quaternion::rotation_x(-0.2); next.torso.scale = Vec3::one(); next diff --git a/voxygen/src/scene/figure/cache.rs b/voxygen/src/scene/figure/cache.rs index 421b3259eb..60d723a4d5 100644 --- a/voxygen/src/scene/figure/cache.rs +++ b/voxygen/src/scene/figure/cache.rs @@ -254,7 +254,6 @@ where manifest_indicator, } } - /// NOTE: Intended for render time (useful with systems like wgpu that /// expect data used by the rendering pipelines to be stable throughout /// the render pass). @@ -284,12 +283,6 @@ where }), }; - if let Some(((FigureModelEntryFuture::Done(model), _), _)) = self.models.get(&key) { - Some(model) - } else { - None - } - } pub fn get_or_create_model<'c>( &'c mut self, diff --git a/voxygen/src/scene/figure/load.rs b/voxygen/src/scene/figure/load.rs index 1c73ddb797..4fb0025440 100644 --- a/voxygen/src/scene/figure/load.rs +++ b/voxygen/src/scene/figure/load.rs @@ -2777,6 +2777,7 @@ struct GolemCenterSpec(HashMap<(GSpecies, GBodyType), SidedGCenterVoxSpec>); struct SidedGCenterVoxSpec { head: GolemCenterSubSpec, torso_upper: GolemCenterSubSpec, + torso_lower: GolemCenterSubSpec, } #[derive(Deserialize)] struct GolemCenterSubSpec { @@ -2894,6 +2895,27 @@ impl GolemCenterSpec { (center, Vec3::from(spec.torso_upper.offset)) } + + pub fn mesh_torso_lower( + &self, + species: GSpecies, + body_type: GBodyType, + generate_mesh: impl FnOnce(Segment, Vec3) -> BoneMeshes, + ) -> BoneMeshes { + let spec = match self.0.get(&(species, body_type)) { + Some(spec) => spec, + None => { + error!( + "No torso lower specification exists for the combination of {:?} and {:?}", + species, body_type + ); + return load_mesh("not_found", Vec3::new(-5.0, -5.0, -2.5), generate_mesh); + }, + }; + let center = graceful_load_segment(&spec.torso_lower.center.0); + + generate_mesh(center, Vec3::from(spec.torso_lower.offset)) + } } impl GolemLateralSpec { fn mesh_shoulder_l(&self, species: GSpecies, body_type: GBodyType) -> BoneMeshes { diff --git a/voxygen/src/scene/figure/mod.rs b/voxygen/src/scene/figure/mod.rs index e02d6df6a0..b7d4dd9c10 100644 --- a/voxygen/src/scene/figure/mod.rs +++ b/voxygen/src/scene/figure/mod.rs @@ -2053,7 +2053,6 @@ impl FigureMgr { skeleton_attr, ), - // TODO! _ => anim::golem::IdleAnimation::update_skeleton( &GolemSkeleton::default(), time, @@ -2062,8 +2061,21 @@ impl FigureMgr { skeleton_attr, ), }; + let target_bones = match &character { + CharacterState::BasicMelee(_) => { + anim::golem::AlphaAnimation::update_skeleton( + &target_base, + (vel.0.magnitude(), time), + state.state_time, + &mut state_animation_rate, + skeleton_attr, + ) + }, + // TODO! + _ => target_base, + }; - state.skeleton = anim::vek::Lerp::lerp(&state.skeleton, &target_base, dt); + state.skeleton = anim::vek::Lerp::lerp(&state.skeleton, &target_bones, dt); state.update( renderer, pos.0, From aadb9349358038aafc0c61440ce5ebb471b2efd8 Mon Sep 17 00:00:00 2001 From: jshipsey Date: Sun, 23 Aug 2020 03:41:35 -0400 Subject: [PATCH 02/28] assets/manifests --- .../voxygen/voxel/golem_center_manifest.ron | 20 +++++++---- .../voxygen/voxel/golem_lateral_manifest.ron | 32 +++++++++--------- .../voxel/npc/stonegolem/male/chest.vox | Bin 0 -> 14332 bytes .../voxel/npc/stonegolem/male/chest_lower.vox | Bin 0 -> 2612 bytes .../voxel/npc/stonegolem/male/chest_upper.vox | Bin 0 -> 12816 bytes .../voxel/npc/stonegolem/male/foot_l.vox | Bin 2404 -> 3200 bytes .../voxel/npc/stonegolem/male/foot_r.vox | Bin 2404 -> 3200 bytes .../voxel/npc/stonegolem/male/hand_l.vox | Bin 2452 -> 18496 bytes .../voxel/npc/stonegolem/male/hand_r.vox | Bin 2452 -> 18496 bytes .../voxel/npc/stonegolem/male/head.vox | Bin 4360 -> 2588 bytes .../voxel/npc/stonegolem/male/leg_l.vox | Bin 1680 -> 1788 bytes .../voxel/npc/stonegolem/male/leg_r.vox | Bin 1680 -> 1788 bytes .../voxel/npc/stonegolem/male/shoulder_l.vox | Bin 2344 -> 9736 bytes .../voxel/npc/stonegolem/male/shoulder_r.vox | Bin 2344 -> 9736 bytes .../voxel/npc/stonegolem/male/torso_upper.vox | Bin 4832 -> 0 bytes common/src/states/utils.rs | 2 +- 16 files changed, 31 insertions(+), 23 deletions(-) create mode 100644 assets/voxygen/voxel/npc/stonegolem/male/chest.vox create mode 100644 assets/voxygen/voxel/npc/stonegolem/male/chest_lower.vox create mode 100644 assets/voxygen/voxel/npc/stonegolem/male/chest_upper.vox delete mode 100644 assets/voxygen/voxel/npc/stonegolem/male/torso_upper.vox diff --git a/assets/voxygen/voxel/golem_center_manifest.ron b/assets/voxygen/voxel/golem_center_manifest.ron index 2fe084ca44..12d3161079 100644 --- a/assets/voxygen/voxel/golem_center_manifest.ron +++ b/assets/voxygen/voxel/golem_center_manifest.ron @@ -1,22 +1,30 @@ ({ (StoneGolem, Male): ( head: ( - offset: (-5.0, -5.5, -7.5), + offset: (-3.5, -4.0, -0.0), center: ("npc.stonegolem.male.head"), ), torso_upper: ( - offset: (-6.0, -3.5, -10.0), - center: ("npc.stonegolem.male.torso_upper"), + offset: (-10.5, -10.5, -10.5), + center: ("npc.stonegolem.male.chest_upper"), + ), + torso_lower: ( + offset: (-4.5, -4.5, -7.0), + center: ("npc.stonegolem.male.chest_lower"), ), ), (StoneGolem, Female): ( head: ( - offset: (-5.0, -5.5, -7.5), + offset: (-3.5, -4.0, -0.0), center: ("npc.stonegolem.male.head"), ), torso_upper: ( - offset: (-6.0, -3.5, -10.0), - center: ("npc.stonegolem.male.torso_upper"), + offset: (-10.5, -10.5, -10.5), + center: ("npc.stonegolem.male.chest_upper"), + ), + torso_lower: ( + offset: (-4.5, -4.5, -7.0), + center: ("npc.stonegolem.male.chest_lower"), ), ), }) diff --git a/assets/voxygen/voxel/golem_lateral_manifest.ron b/assets/voxygen/voxel/golem_lateral_manifest.ron index 5945b66c37..4504476042 100644 --- a/assets/voxygen/voxel/golem_lateral_manifest.ron +++ b/assets/voxygen/voxel/golem_lateral_manifest.ron @@ -1,69 +1,69 @@ ({ (StoneGolem, Male): ( shoulder_l: ( - offset: (-4.5, -4.0, -5.0), + offset: (-18.0, -7.5, -7.0), lateral: ("npc.stonegolem.male.shoulder_l"), ), shoulder_r: ( - offset: (-4.5, -4.0, -5.0), + offset: (0.0, -7.5, -7.0), lateral: ("npc.stonegolem.male.shoulder_r"), ), hand_l: ( - offset: (-3.0, -3.5, -14.0), + offset: (-9.0, -11.5, -26.0), lateral: ("npc.stonegolem.male.hand_l"), ), hand_r: ( - offset: (-3.0, -3.5, -14.0), + offset: (-9.0, -11.5, -26.0), lateral: ("npc.stonegolem.male.hand_r"), ), leg_l: ( - offset: (-2.5, -2.5, -6.0), + offset: (-7.0, -3.5, -9.0), lateral: ("npc.stonegolem.male.leg_l"), ), leg_r: ( - offset: (-2.5, -2.5, -6.0), + offset: (0.0, -3.5, -9.0), lateral: ("npc.stonegolem.male.leg_r"), ), foot_l: ( - offset: (-3.0, -3.5, -9.5), + offset: (-4.5, -4.5, -11.0), lateral: ("npc.stonegolem.male.foot_l"), ), foot_r: ( - offset: (-3.0, -3.5, -9.5), + offset: (-4.5, -4.5, -11.0), lateral: ("npc.stonegolem.male.foot_r"), ) ), (StoneGolem, Female): ( shoulder_l: ( - offset: (-4.5, -4.0, -5.0), + offset: (-18.0, -7.5, -7.0), lateral: ("npc.stonegolem.male.shoulder_l"), ), shoulder_r: ( - offset: (-4.5, -4.0, -5.0), + offset: (0.0, -7.5, -7.0), lateral: ("npc.stonegolem.male.shoulder_r"), ), hand_l: ( - offset: (-3.0, -3.5, -14.0), + offset: (-9.0, -11.5, -26.0), lateral: ("npc.stonegolem.male.hand_l"), ), hand_r: ( - offset: (-3.0, -3.5, -14.0), + offset: (-9.0, -11.5, -26.0), lateral: ("npc.stonegolem.male.hand_r"), ), leg_l: ( - offset: (-2.5, -2.5, -6.0), + offset: (-7.0, -3.5, -9.0), lateral: ("npc.stonegolem.male.leg_l"), ), leg_r: ( - offset: (-2.5, -2.5, -6.0), + offset: (0.0, -3.5, -9.0), lateral: ("npc.stonegolem.male.leg_r"), ), foot_l: ( - offset: (-3.0, -3.5, -10.5), + offset: (-4.5, -4.5, -11.0), lateral: ("npc.stonegolem.male.foot_l"), ), foot_r: ( - offset: (-3.0, -3.5, -10.5), + offset: (-4.5, -4.5, -11.0), lateral: ("npc.stonegolem.male.foot_r"), ) ), diff --git a/assets/voxygen/voxel/npc/stonegolem/male/chest.vox b/assets/voxygen/voxel/npc/stonegolem/male/chest.vox new file mode 100644 index 0000000000000000000000000000000000000000..a18269c3b3736f01ececa3538ab668893fe3f0ed GIT binary patch literal 14332 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 z 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 literal 0 HcmV?d00001 diff --git a/assets/voxygen/voxel/npc/stonegolem/male/chest_upper.vox b/assets/voxygen/voxel/npc/stonegolem/male/chest_upper.vox new file mode 100644 index 0000000000000000000000000000000000000000..0416325561ba8b13f0d6d7b356ffe292f9df71eb GIT binary patch literal 12816 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 rTRZ!K}dKw|w;n-Fx_-V&rzm literal 0 HcmV?d00001 diff --git a/assets/voxygen/voxel/npc/stonegolem/male/foot_l.vox b/assets/voxygen/voxel/npc/stonegolem/male/foot_l.vox index 40ebfc452a6b5fbbe1ff7f2d92b81cc88cce1554..817d42207c9c07f3d0ddb29be3405fb3e6eede65 100644 GIT binary patch literal 3200 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 literal 2404 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 BT+9Ff literal 2452 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 G+P?tNgx5;| literal 4360 zcmai%Z_Jlv700iC=en-@_j{fv3`7J2L`)x~6hTZuMBz~%3>s2Q@s75p)B7fuqXx>J z+?4#6)6f_`Z5di)yl9d+ay4I&GiGkiHFB-3Ip0MJ}_QG%Q34Mn3_B(b>|NfH?S48JhiLI2- zmK?iSpcuQrT5IY`8FW7T-q+CQI@V=)B*!+S(0TD~DX9w*;fZZZv5h5k(Fx}YGD4S2 z?y}FFGy}fnF2NU(5uk+5%=v2X;`)r7()c#jJR5^UcIXne^Xx^zp4fE4wOStxKm2g{Y=3)%La=VUR5FGY(JX9IHV9P$MI=xQHJGaJEPu{}Ej#ZqSz z{J!S>nePd`Vm@c^k#kqEGviBPE#$HAEaW{w0}Z3BIe+^eJ(!f*)ep1Y|)O{e@K;^br5Tdo{wZ0tG=PF(}wvW79`xc{hKt z4S%W!N40jL4*E##q-Fv?$FRdNz&p4S?}*tLafYxjvL9;M@5ybbff^y74VcD%L2iPi z%4{v*%xWbeA1dBzf*gB%G~2N+;*(%QWIqzK$k~jX2n893k9b;4N9PQa^a5mgp&raf zV-9W@NWIDDa3ZX4V;Zo!oEy@3#QKnYS?-W z^_r!XL=W=g=nHMKeoCK8hP4KwH>QFdiv_ug&i7IiJ$oD;>NAgnh1$7P+r+ca*k>4E zFH?UxuvTzt7@_~WP>B`(p(_&0!gC}pIUx@m28$8=k(eaQKf1(lZn$Jmh-s`te6czP zFHi=1-tgfpo`x&*!&jgRNp#3Av)N=cwJ)sI$O~9xHS)QS^t*z+b!78+R}7;zpYlX6 zX@Z$Ryda4aeWK?iVa*ftbLqWUKF66UL+l)a`C%K;6|8SzpLo_Z#3%3@@wE(F1}s>c zKrj2?I&n^jgQMOO{0_T>vyt8+5#5p(%XEYo~pxV?kxCOpbCY?bNAuh7iJ5&%0uQ5dadu_TcHLs_Lh;& z;4m>4vdJ|)mS<|0URi?qW%m%U6>}S`CuZxtgSL>%$XriQ1;YaNBmFb6@0qOvpSPJ6 zn0d@1aZT@8D_Dp%KT(LQSl@HfM)=c+=*@6DJC;ZNk@Eln^ zGgMe3wglF~oiHLh8Xo9d0pC3o*!QDvCWG7|*PC3{WbrXQcFuT_C6G6ncIP1Xk=zF2 z8Hhz;b_Am;j|b+5XFoE(3whD&NOlfOXkN#Lr0oivKQVTZUF z{)m|n&%*sQ5f7m!3bQ@i-Ovw->97yhBjF7-qd)CW_?gIM9`#VWLvx38nYuFxA3&&(+9FNqul>Mj~y@FCj0 z0&E4#AA5m4Z#``E%uHaeCA-5w!SnyZ$JT=jpEEdQc6#QE_pS4RzLlT|PvO1rO#M5n zNqM~B?`=2Vc!Nv!FUL9MH#0M%A3o>wmKRRzMf3ipAI+PmZ@jV9KIzNTzy4I3vvIzz zYp>F&Z*9=Yqt~dL5_Nk9>R$S+y3_M@&Q_=A-RJbOsY`U_D^BYkr{f2m&OPLG{x6)a z**erM_s!8=56{&fy!JWWJmYlxVW;0b;q<{ja(4SdUED3x0PIvMCz)q)!?qYwR(@m33U)=o# z-M5)@-`S$u*DTa-YMCC`eyJY0`%0bp+SPjGjum?5d+YVo!`t=RC5v?Zl}q&2>o3)9 zQ>%5)7N-Zl?)2z)ou2xk)2Yv2sM9N!YrFP~x_9$6x^u;R?ba;Pr*FPkPwu{4x81Z- zx81N(XYRjKpL*yXJ@D;adg#$Tdh+;Vdgjd+^t!bxb-~@2_m|wr|5@U4R{!tar22=Wsvn%z%PyM#AOG*(dG-JJ zzjpD$PxXKG>ec$})kpR6RWIqfCm+%C51y}Y{mkimcLLpG$8>UXQupoKr(eG1Rdojs z=(&5()z_Z?IEN1{1Urit>$8s@)(z{P)4QH}Oc(4vPv8CJ#roQ=^YyuWppFge#e|}P*dG$^G@$b&)Rrf!s8y-2TxBm2$?s(;lZrr$0Kg1MQA^oSu zGfqGF?Z@_g0KWd;_fJYt&$_;TY*d41{l*vD|Fmy*_<|en(*@UjLl<3s;%vO`-(^dj Ao&W#< diff --git a/assets/voxygen/voxel/npc/stonegolem/male/leg_l.vox b/assets/voxygen/voxel/npc/stonegolem/male/leg_l.vox index 63483b743ebce533114693c987e82b1fef21c2e8..034ddb71a7a085a848549f083085fa062bc00b52 100644 GIT binary patch delta 947 zcmXX^J8KnD5I*xb=j`q^LJSy*iG-*zi9s|9LVOV)NDM}D?^Ux8Yl{?GSV`_(#7AL3 z0)cd*ot0@~VP|0_h(#(JYyAclERSK<&uT&8!lnRXsqK2HPPAZ}_SBix)ATd{smHJo_CxyDC zR022wkLVFY!>5%}3O${Bb-0iPA*o4FP|07**Gv=U8nsWmG_(n25> zjkz>Uk4s64974@<;j|@iN_o#C3&EkXUq^h)K`Md#0T^vv^a#|rAZ-_6@p8P zc=Rws@Nr3A69mL5w#D;eL&o;3ct#jAwq+d35|QJ%aT&(8>{C2FdUy%Op)AmP%rQ*W z^@Lq5f~eFNp<0;w%v=j`kA?ffh>GaB?ny&v)094|U;vQ?O{qlzZlEwzm?G;~w)tYzcHU3e&u=sK>&Ho(7#+5WvEfFyyP=-{0gSq*F8}}l delta 829 zcmXYvyK7WI6vof%J~o;{0wOUGSyYm^O*TOx#7K%o;$vkMHCZR6gt;lSuv(&v_-HJ$ z7}!eDM(k{o&LV}CAQq`?@;}(w2*+=N3&WW+cji0a`JMecIvDNWyR~{|NJKZ6SK0`) zl@r}r>9&ri1i$S6O8M$qcjbnpQ=+$6CPiS*f?6KMil8b%MIx(JB8FJQw;~AVk)^0a zEvk$}GLE8U6e;_aa=KUs(JU%K5CS53Bt*p-so|ScVtK_X$R!#?40lwrXj((mNX!)+ z!9)$kP{>N`3m7xhC~>b0Y*Mii>R`_~%=NR#gojuxStZPoA*51^Ldb=qvcm01P)cUd zEkhKYkt&QUx>A@<9ThNK!Z^;cxMsu?+ghaGwMB6%R?_4ww`e(GlTH z@lg^1JTNH(F|aZyAPP_tCDbL%OQi}iP}I~l8T8O`LJjO{>AV0fP=dbd2y_gzEHG;J zNi5jWeDX>Xe$2)=%@Q3j=m-H7mJ-|(3L+vW3g4F`@y&Oe)(dZ`Q!|UTMG7sf#5aSu6b2*^ zuoLa9w26hCg_R%{RyNl9BZSX0;K1R0%emkA=FY5*{T*v>-B{lH$~kv!VevZ1{Rz%3 zEtZ!ybqSvMA6>p&l#8FJt2*}{P@e{>X-Op?s>XpzK%VuL^MO)66qkk)QeUJu6w$tf ztj{hE*@pqUY>8cJ`y3*W4On_h1R=T9rw|81y+T~9#fMTzD{)yRKGi~bDcmc?$3iI7 z!U|1Rh|epbREg$=a9*p&*$@lDSz+L#yoBzU``clLNON1 zD8fWJqMnzGw_%uY==uRQXcVBVP|lF|Dux+j85Ttz(1(sx4R^;g8 zg%u05ObWA5Dy2dM*C??PY$q5l+U4C9$5L=3BHh)ar`>13lAQ^zQy3bU3PmjG8Yb5= z1L7NIfP5oFBlgq?6FjLEp@x-O2+dhK#y5kVrmEjNVp{o zChnM9M_J<}8#zvmLcBV|thcspr7zs}gN?}u%2*LIuSy}diPu_{Xc0E0HCasU7T delta 829 zcmXYvyK7WI6vof%J~o;{0wOUGSyYm^O*TOx#7K%o;$vkMHCZR6gt;lSuv(&v_-HJ$ z7}!eDM(k{o&LV}CAQq`?@;}(w2*+=N3$rt49^d)S@7%wmgVFxITdQY=M09g`rHzTU za-usc-PZ9G;FtX$DPCRcuH2BcOY}DVNfDH@z?Mg`BCtwek*I2wh+(ebtO&w+R4FP^ zi!3A2jH757Maq7~oGz9@G>c3Sgn&pM4KriU)Nm%1SYD|LVu=J1!X1_@lGZS5H0H_- z1`sQfvz1sEFlNY6;$9ilq*5c~!J2cJ>t|634>44-N|>WUh@}>V5DQ0Uh1-$9l+2)7 zhA1jCRTx)Pr7)c;Dqy&TaqMHrktwVhcc7t~2NMor8T60gJ_qe99+JWxFexyiBEufz zP!a(=ASr_}urerM7N9grs7siaiWOp@$f;^F=%M0-8ra#=egRsb1bx;K=on~OP~_~J zSfHc+@S>-nXGWldM3l606qMo&hHI!e zeIp=&7722wfk^6|!m$GF?r%BA*=_Q}jh%6;FLma}J+|uJ>rDCZVbiznUh?7Ej2}E* z^!?`@Uzj}Yi_J;Der3wrtvTPkM*d=*{KFIS{q3Eeoxk5+Zur*Y2ma>ShW8$Ieei12 z_ddV&gKzKs^2LUq8av?=C&zqty6*Fhv%b)r_SWL8UtOB>!OIE%^0Dr}zR&pK&kO!; Qn|$vR`H!!(`^Pf*2l@h@dH?_b diff --git a/assets/voxygen/voxel/npc/stonegolem/male/shoulder_l.vox b/assets/voxygen/voxel/npc/stonegolem/male/shoulder_l.vox index 6a7591e7d264c991a4bfdbf8eb4679fa6d883bbb..dbde82f7a82276d216efcd49d912600706d47fa7 100644 GIT binary patch literal 9736 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 F{1;i2^&$WO literal 2344 zcmah}ZD?0j7=O+=&pG$bUeKIVH}hp`y16o)?{CeQe>zQLTB7r25Q^SwlB^gymY_?) z#8MMA$fm`R2u)>4;Rh2D6GUW51R)~T_dZ1Q?bq+j=tC{L@Nmxa{(D}|UH#&kkw-;j z`TWKeJfyr#WL0Bx>CwpWBP%JXA8F0n=Ek3u7k)F0h}ux7x=e%3)Z5HjlLa3#t0r@a zFMJ5Ob2jso1tmEtoHLmr`N$jE7?*h$eFEjKurAO>GGm3YY+>lHiOW)-qNEc3x<&ZWFZOwHrjpEt1|>|^hYl`&Id zDa$p^U(1SA#R7CXAB=EgZ3H+>PEd)}e)=ulJ@1hWp3< zr_SY$b*Ab#GeSMHMMZaVTV^4vFN?``a321Q^FqY-s^0c&Z@#O46oRjCi~3ksR$jNpqt~VKi`8nA5S}?1QuX9|`{# z!aa6LZrCrwy?4SlBAl(*+=?NwX5;deix3)a>})DZug^nG=S)b+L$>sToO%Lstpfd*3kGi$Oel>*-8n(JMetaM zVBkSP#pi-4%OAngt^LuwYarge_#_s!3!07yUOOw;ahtwPl^C8^V@!K3rgb-`Fl$5==1d-eWzUVric&qcEEROTBItZe zaQS^f>8Vj@tQ~`F+B0ZbG!v_9E09mA!hywO(Y<~mRy<#a74z%RzHJ@$@7#p8H=1#9 z&lYr_-iw~ACop$f9fk}XfMFE_F{!2+Q|iWG*5n$L=1jukdG$E>&M=%kS&biV)Z*@~ z3HXRPySoH8FA0A7PSBQ*$MKGOTsyN6zy7!iE&Kc9z-Q$+e|sqIVnmD_v`=ke1yI4tk3gO*MIA%i9UV${iTb}!xn7CkeRQdYU0_x GY~@dl45n!S diff --git a/assets/voxygen/voxel/npc/stonegolem/male/shoulder_r.vox b/assets/voxygen/voxel/npc/stonegolem/male/shoulder_r.vox index 8b9b3a8caae5f0bc4613be30978cac4e42eab935..160ee4a4c2ac89d489dd444551c0ca37976982c4 100644 GIT binary patch literal 9736 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 Date: Sun, 23 Aug 2020 14:57:09 -0400 Subject: [PATCH 03/28] fit dt issue --- voxygen/src/scene/figure/mod.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/voxygen/src/scene/figure/mod.rs b/voxygen/src/scene/figure/mod.rs index b7d4dd9c10..6d62da3d16 100644 --- a/voxygen/src/scene/figure/mod.rs +++ b/voxygen/src/scene/figure/mod.rs @@ -2075,7 +2075,7 @@ impl FigureMgr { _ => target_base, }; - state.skeleton = anim::vek::Lerp::lerp(&state.skeleton, &target_bones, dt); + state.skeleton = anim::vek::Lerp::lerp(&state.skeleton, &target_bones, dt_lerp); state.update( renderer, pos.0, From 7593ea60007b7ad53353aee95dad305a2bcd0d6d Mon Sep 17 00:00:00 2001 From: jshipsey Date: Sun, 23 Aug 2020 21:31:05 -0400 Subject: [PATCH 04/28] gliders as items. anim improvements --- assets/common/items/armor/starter/glider.ron | 9 + common/src/comp/ability.rs | 1 + common/src/comp/inventory/item/mod.rs | 7 + common/src/comp/inventory/slot.rs | 4 + common/src/loadout_builder.rs | 10 ++ common/src/states/utils.rs | 7 +- server/src/sys/terrain.rs | 3 + voxygen/src/anim/src/character/alpha.rs | 100 ++++------- voxygen/src/anim/src/character/charge.rs | 20 +-- voxygen/src/anim/src/character/shoot.rs | 19 +-- voxygen/src/anim/src/character/wield.rs | 99 +++-------- voxygen/src/anim/src/golem/alpha.rs | 169 +++++++++++++------ voxygen/src/anim/src/golem/run.rs | 72 ++++---- voxygen/src/hud/item_imgs.rs | 4 +- voxygen/src/hud/slots.rs | 1 + voxygen/src/scene/figure/mod.rs | 12 +- 16 files changed, 286 insertions(+), 251 deletions(-) create mode 100644 assets/common/items/armor/starter/glider.ron diff --git a/assets/common/items/armor/starter/glider.ron b/assets/common/items/armor/starter/glider.ron new file mode 100644 index 0000000000..71b5c99ab7 --- /dev/null +++ b/assets/common/items/armor/starter/glider.ron @@ -0,0 +1,9 @@ +Item( + name: "Swift Glider", + description: "Thank goodness for big pockets", + kind: Glider( + ( + kind: Blue, + ) + ), +) diff --git a/common/src/comp/ability.rs b/common/src/comp/ability.rs index 8505ef2797..3f4931de89 100644 --- a/common/src/comp/ability.rs +++ b/common/src/comp/ability.rs @@ -192,6 +192,7 @@ pub struct Loadout { pub second_item: Option, pub lantern: Option, + pub glider: Option, #[in_array(get_armor)] pub shoulder: Option, diff --git a/common/src/comp/inventory/item/mod.rs b/common/src/comp/inventory/item/mod.rs index 448be8e1f6..5bf5f8cdba 100644 --- a/common/src/comp/inventory/item/mod.rs +++ b/common/src/comp/inventory/item/mod.rs @@ -58,12 +58,18 @@ impl Lantern { pub fn color(&self) -> Rgb { self.color.map(|c| c as f32 / 255.0) } } +#[derive(Clone, Debug, PartialEq, Eq, Hash, Serialize, Deserialize)] +pub struct Glider { + pub kind: String, +} + #[derive(Clone, Debug, PartialEq, Serialize, Deserialize)] pub enum ItemKind { /// Something wieldable Tool(tool::Tool), Lantern(Lantern), Armor(armor::Armor), + Glider(Glider), Consumable { kind: String, effect: Effect, @@ -317,6 +323,7 @@ impl Item { (ItemKind::Tool(a), ItemKind::Tool(b)) => a.superficially_eq(b), // TODO: Differentiate between lantern colors? (ItemKind::Lantern(_), ItemKind::Lantern(_)) => true, + (ItemKind::Glider(_), ItemKind::Glider(_)) => true, (ItemKind::Armor(a), ItemKind::Armor(b)) => a.superficially_eq(b), (ItemKind::Consumable { kind: a, .. }, ItemKind::Consumable { kind: b, .. }) => a == b, (ItemKind::Throwable { kind: a, .. }, ItemKind::Throwable { kind: b, .. }) => a == b, diff --git a/common/src/comp/inventory/slot.rs b/common/src/comp/inventory/slot.rs index 02de138f85..b199c7417e 100644 --- a/common/src/comp/inventory/slot.rs +++ b/common/src/comp/inventory/slot.rs @@ -18,6 +18,7 @@ pub enum EquipSlot { Mainhand, Offhand, Lantern, + Glider, } #[derive(Clone, Copy, PartialEq, Debug, Serialize, Deserialize)] @@ -57,6 +58,7 @@ impl EquipSlot { (Self::Mainhand, ItemKind::Tool(_)) => true, (Self::Offhand, ItemKind::Tool(_)) => true, (Self::Lantern, ItemKind::Lantern(_)) => true, + (Self::Glider, ItemKind::Glider(_)) => true, _ => false, } } @@ -103,6 +105,7 @@ fn loadout_replace( EquipSlot::Armor(ArmorSlot::Feet) => replace(&mut loadout.foot, item), EquipSlot::Armor(ArmorSlot::Tabard) => replace(&mut loadout.tabard, item), EquipSlot::Lantern => replace(&mut loadout.lantern, item), + EquipSlot::Glider => replace(&mut loadout.glider, item), EquipSlot::Mainhand => { replace(&mut loadout.active_item, item.map(ItemConfig::from)).map(|i| i.item) }, @@ -278,6 +281,7 @@ pub fn equip(slot: usize, inventory: &mut Inventory, loadout: &mut Loadout) { ArmorKind::Tabard(_) => ArmorSlot::Tabard, })), ItemKind::Lantern(_) => Some(EquipSlot::Lantern), + ItemKind::Glider(_) => Some(EquipSlot::Glider), _ => None, }); diff --git a/common/src/loadout_builder.rs b/common/src/loadout_builder.rs index eb4dd66d37..da149f4458 100644 --- a/common/src/loadout_builder.rs +++ b/common/src/loadout_builder.rs @@ -34,6 +34,7 @@ impl LoadoutBuilder { ring: None, neck: None, lantern: None, + glider: None, head: None, tabard: None, }) @@ -54,6 +55,9 @@ impl LoadoutBuilder { .lantern(Some(Item::new_from_asset_expect( "common.items.armor.starter.lantern", ))) + .glider(Some(assets::load_expect_cloned( + "common.items.armor.starter.glider", + ))) } /// Default animal configuration @@ -85,6 +89,7 @@ impl LoadoutBuilder { ring: None, neck: None, lantern: None, + glider: None, head: None, tabard: None, }) @@ -170,6 +175,11 @@ impl LoadoutBuilder { self } + pub fn glider(mut self, item: Option) -> Self { + self.0.glider = item; + self + } + pub fn head(mut self, item: Option) -> Self { self.0.head = item; self diff --git a/common/src/states/utils.rs b/common/src/states/utils.rs index 765c1177e6..579b1becb8 100644 --- a/common/src/states/utils.rs +++ b/common/src/states/utils.rs @@ -91,7 +91,7 @@ fn basic_move(data: &JoinData, update: &mut StateUpdate, efficiency: f32) { pub fn handle_orientation(data: &JoinData, update: &mut StateUpdate, rate: f32) { // Set direction based on move direction - let ori_dir = if update.character.is_block() { + let ori_dir = if update.character.is_attack() | update.character.is_block() { data.inputs.look_dir.xy() } else if !data.inputs.move_dir.is_approx_zero() { data.inputs.move_dir @@ -176,6 +176,11 @@ pub fn handle_climb(data: &JoinData, update: &mut StateUpdate) { if data.inputs.climb.is_some() && data.physics.on_wall.is_some() && !data.physics.on_ground + && !data + .physics + .in_fluid + .map(|depth| depth > 1.0) + .unwrap_or(false) //&& update.vel.0.z < 0.0 && data.body.is_humanoid() && update.energy.current() > 100 diff --git a/server/src/sys/terrain.rs b/server/src/sys/terrain.rs index 8cec2c23cd..6ba5401ac7 100644 --- a/server/src/sys/terrain.rs +++ b/server/src/sys/terrain.rs @@ -193,6 +193,7 @@ impl<'a> System<'a> for Sys { ring: None, neck: None, lantern: None, + glider: None, head: None, tabard: None, }, @@ -225,6 +226,7 @@ impl<'a> System<'a> for Sys { lantern: Some(comp::Item::new_from_asset_expect( "common.items.lantern.black_0", )), + glider: None, head: None, tabard: None, }, @@ -306,6 +308,7 @@ impl<'a> System<'a> for Sys { ring: None, neck: None, lantern: None, + glider: None, head: None, tabard: None, }; diff --git a/voxygen/src/anim/src/character/alpha.rs b/voxygen/src/anim/src/character/alpha.rs index cf04b1309f..f9cd1a33c5 100644 --- a/voxygen/src/anim/src/character/alpha.rs +++ b/voxygen/src/anim/src/character/alpha.rs @@ -52,6 +52,10 @@ impl Animation for AlphaAnimation { / (0.05 + 0.95 * ((anim_time as f32 * lab as f32 * 8.0).sin()).powf(2.0 as f32))) .sqrt()) * ((anim_time as f32 * lab as f32 * 8.0).sin()); + let staff = (((1.0) + / (0.05 + 0.95 * ((anim_time as f32 * lab as f32 * 10.0).sin()).powf(2.0 as f32))) + .sqrt()) + * ((anim_time as f32 * lab as f32 * 10.0).sin()); let slower = (((1.0) / (0.0001 + 0.999 * ((anim_time as f32 * lab as f32 * 4.0).sin()).powf(2.0 as f32))) .sqrt()) @@ -346,10 +350,6 @@ impl Animation for AlphaAnimation { next.torso.scale = Vec3::one() / 11.0 * skeleton_attr.scaler; } - //next.control.position = Vec3::new(-4.0, 3.0 + slower * 2.0, 5.0 + slower * - // 5.0); next.control.orientation = Quaternion::rotation_x() - // * Quaternion::rotation_y(0.0) - // * Quaternion::rotation_z(1.4); next.control.scale = Vec3::one(); next.control.position = Vec3::new(-8.0, 7.0, 1.0); next.control.orientation = Quaternion::rotation_x(-1.5 + slower * 1.5) @@ -362,44 +362,29 @@ impl Animation for AlphaAnimation { next.torso.scale = Vec3::one() / 11.0 * skeleton_attr.scaler; }, Some(ToolKind::Staff(_)) => { - next.head.position = Vec3::new( - 0.0, - 0.0 + skeleton_attr.head.0, /* + decel * 0.8 */ - // Had some clipping issues - skeleton_attr.head.1, - ); - next.head.orientation = Quaternion::rotation_z(decel * 0.25) - * Quaternion::rotation_x(0.0 + decel * 0.1) - * Quaternion::rotation_y(decel * -0.1); - - next.chest.orientation = Quaternion::rotation_z(decel * -0.2) - * Quaternion::rotation_x(0.0 + decel * -0.2) - * Quaternion::rotation_y(decel * 0.2); - - next.belt.orientation = Quaternion::rotation_z(decel * -0.1) - * Quaternion::rotation_x(0.0 + decel * -0.1) - * Quaternion::rotation_y(decel * 0.1); - - next.shorts.position = Vec3::new(0.0, 0.0, -5.0); - next.shorts.orientation = Quaternion::rotation_z(decel * -0.08) - * Quaternion::rotation_x(0.0 + decel * -0.08) - * Quaternion::rotation_y(decel * 0.08); - next.l_hand.position = Vec3::new(0.0, 1.0, 0.0); - next.l_hand.orientation = Quaternion::rotation_x(1.27); + next.head.orientation = + Quaternion::rotation_x(staff * 0.2) * Quaternion::rotation_z(staff * 0.2); + next.l_hand.position = Vec3::new(11.0, 5.0, -4.0); + next.l_hand.orientation = + Quaternion::rotation_x(1.27) * Quaternion::rotation_y(0.0); next.l_hand.scale = Vec3::one() * 1.05; - next.r_hand.position = Vec3::new(0.0, 0.0, 10.0); - next.r_hand.orientation = Quaternion::rotation_x(1.27); + next.r_hand.position = Vec3::new(12.0, 5.5, 2.0); + next.r_hand.orientation = + Quaternion::rotation_x(1.57) * Quaternion::rotation_y(0.2); next.r_hand.scale = Vec3::one() * 1.05; - next.main.position = Vec3::new(0.0, 6.0, -4.0); - next.main.orientation = Quaternion::rotation_x(-0.3); + next.main.position = Vec3::new(12.0, 8.5, 13.2); + next.main.orientation = Quaternion::rotation_x(0.0) + * Quaternion::rotation_y(3.14) + * Quaternion::rotation_z(0.0); + next.chest.orientation = Quaternion::rotation_z(staff * 0.3); + next.belt.orientation = Quaternion::rotation_z(staff * 0.2); + next.shorts.orientation = Quaternion::rotation_z(staff * 0.4); - next.control.position = Vec3::new(-8.0 - slow * 1.0, 3.0 - slow * 5.0, 0.0); - next.control.orientation = Quaternion::rotation_x(-1.2) - * Quaternion::rotation_y(slow * 1.5) - * Quaternion::rotation_z(1.4 + slow * 0.5); + next.control.position = Vec3::new(-20.0, 5.0 + staff * 3.0, 1.0); + next.control.orientation = Quaternion::rotation_x(staff * 1.2) + * Quaternion::rotation_y(0.0) + * Quaternion::rotation_z(0.0); next.control.scale = Vec3::one(); - next.torso.position = Vec3::new(0.0, 0.0, 0.1) * skeleton_attr.scaler; - next.torso.scale = Vec3::one() / 11.0 * skeleton_attr.scaler; }, Some(ToolKind::Shield(_)) => { next.head.position = Vec3::new( @@ -454,38 +439,15 @@ impl Animation for AlphaAnimation { next.second.orientation = Quaternion::rotation_x(0.0); }, Some(ToolKind::Debug(_)) => { - next.head.position = Vec3::new( - 0.0, - -2.0 + skeleton_attr.head.0 + decel * 0.8, - skeleton_attr.head.1, - ); - next.head.orientation = Quaternion::rotation_x(0.0); - next.head.scale = Vec3::one() * skeleton_attr.head_scale; - - next.chest.position = Vec3::new(0.0, 0.0, 7.0); - next.chest.orientation = Quaternion::rotation_z(decel * -0.2) - * Quaternion::rotation_x(0.0 + decel * -0.2) - * Quaternion::rotation_y(decel * 0.2); - - next.l_hand.position = - Vec3::new(-8.0 + accel_slow * 10.0, 8.0 + accel_fast * 3.0, 0.0); - next.l_hand.orientation = Quaternion::rotation_z(-0.8) - * Quaternion::rotation_x(accel_med * -0.8) - * Quaternion::rotation_y(accel_med * -0.4); + next.l_hand.position = Vec3::new(-7.0, 4.0, 3.0); + next.l_hand.orientation = Quaternion::rotation_x(1.27) + * Quaternion::rotation_y(0.0) + * Quaternion::rotation_z(0.0); next.l_hand.scale = Vec3::one() * 1.01; - - next.r_hand.position = - Vec3::new(-8.0 + accel_slow * 10.0, 8.0 + accel_fast * 3.0, -2.0); - next.r_hand.orientation = Quaternion::rotation_z(-0.8) - * Quaternion::rotation_x(accel_med * -0.8) - * Quaternion::rotation_y(accel_med * -0.4); - next.r_hand.scale = Vec3::one() * 1.01; - - next.main.position = - Vec3::new(-8.0 + accel_slow * 10.0, 8.0 + accel_fast * 3.0, 0.0); - next.main.orientation = Quaternion::rotation_z(-0.8) - * Quaternion::rotation_x(0.0 + accel_med * -0.8) - * Quaternion::rotation_y(0.0 + accel_med * -0.4); + next.main.position = Vec3::new(-5.0, 5.0, 23.0); + next.main.orientation = Quaternion::rotation_z(0.0) + * Quaternion::rotation_x(PI) + * Quaternion::rotation_y(0.0); next.main.scale = Vec3::one(); next.torso.position = Vec3::new(0.0, 0.0, 0.1) * skeleton_attr.scaler; next.torso.orientation = Quaternion::rotation_x(0.0); diff --git a/voxygen/src/anim/src/character/charge.rs b/voxygen/src/anim/src/character/charge.rs index 5589299236..3e8ec67db1 100644 --- a/voxygen/src/anim/src/character/charge.rs +++ b/voxygen/src/anim/src/character/charge.rs @@ -98,19 +98,17 @@ impl Animation for ChargeAnimation { match active_tool_kind { //TODO: Inventory Some(ToolKind::Staff(_)) => { - next.l_hand.position = Vec3::new(1.0, -2.0, -5.0); - next.l_hand.orientation = - Quaternion::rotation_x(1.47) * Quaternion::rotation_y(-0.3); + next.l_hand.position = Vec3::new(11.0, 5.0, -4.0); + next.l_hand.orientation = Quaternion::rotation_x(1.27); next.l_hand.scale = Vec3::one() * 1.05; - next.r_hand.position = Vec3::new(9.0, 1.0, 0.0); - next.r_hand.orientation = Quaternion::rotation_x(1.8) - * Quaternion::rotation_y(0.5) - * Quaternion::rotation_z(-0.27); + next.r_hand.position = Vec3::new(12.0, 5.5, 2.0); + next.r_hand.orientation = + Quaternion::rotation_x(1.57) * Quaternion::rotation_y(0.2); next.r_hand.scale = Vec3::one() * 1.05; - next.main.position = Vec3::new(9.2, 8.4, 13.2); - next.main.orientation = Quaternion::rotation_x(-0.3) - * Quaternion::rotation_y(3.14 + 0.3) - * Quaternion::rotation_z(0.9); + next.main.position = Vec3::new(12.0, 8.5, 13.2); + next.main.orientation = Quaternion::rotation_x(0.0) + * Quaternion::rotation_y(3.14) + * Quaternion::rotation_z(0.0); next.control.position = Vec3::new( -7.0 + quick * 3.5 * (1.0 / (stopa + 0.1)), diff --git a/voxygen/src/anim/src/character/shoot.rs b/voxygen/src/anim/src/character/shoot.rs index 1fe4dfc856..508d7cb367 100644 --- a/voxygen/src/anim/src/character/shoot.rs +++ b/voxygen/src/anim/src/character/shoot.rs @@ -66,19 +66,18 @@ impl Animation for ShootAnimation { match active_tool_kind { //TODO: Inventory Some(ToolKind::Staff(_)) => { - next.l_hand.position = Vec3::new(1.5, 0.5, -4.0); + next.l_hand.position = Vec3::new(11.0, 5.0, -4.0); next.l_hand.orientation = - Quaternion::rotation_x(1.47) * Quaternion::rotation_y(-0.3); + Quaternion::rotation_x(1.27) * Quaternion::rotation_y(0.0); next.l_hand.scale = Vec3::one() * 1.05; - next.r_hand.position = Vec3::new(8.0, 4.0, 2.0); - next.r_hand.orientation = Quaternion::rotation_x(1.8) - * Quaternion::rotation_y(0.5) - * Quaternion::rotation_z(-0.27); + next.r_hand.position = Vec3::new(12.0, 5.5, 2.0); + next.r_hand.orientation = + Quaternion::rotation_x(1.57) * Quaternion::rotation_y(0.2); next.r_hand.scale = Vec3::one() * 1.05; - next.main.position = Vec3::new(9.2, 8.4, 13.2); - next.main.orientation = Quaternion::rotation_x(-0.3) - * Quaternion::rotation_y(3.14 + 0.3) - * Quaternion::rotation_z(0.9); + next.main.position = Vec3::new(12.0, 8.5, 13.2); + next.main.orientation = Quaternion::rotation_x(0.0) + * Quaternion::rotation_y(3.14) + * Quaternion::rotation_z(0.0); next.control.position = Vec3::new(-7.0, 6.0, 6.0 - exp * 5.0); next.control.orientation = Quaternion::rotation_x(exp * 1.3) diff --git a/voxygen/src/anim/src/character/wield.rs b/voxygen/src/anim/src/character/wield.rs index 375ce073b7..8ba6f64531 100644 --- a/voxygen/src/anim/src/character/wield.rs +++ b/voxygen/src/anim/src/character/wield.rs @@ -120,13 +120,10 @@ impl Animation for WieldAnimation { Quaternion::rotation_x(1.47) * Quaternion::rotation_y(0.3); next.r_hand.scale = Vec3::one() * 1.05; next.main.position = Vec3::new(0.0, 0.0, -3.0); - next.main.orientation = Quaternion::rotation_x(-0.1) - * Quaternion::rotation_y(0.0) - * Quaternion::rotation_z(0.0); + next.main.orientation = Quaternion::rotation_x(-0.1); next.control.position = Vec3::new(-7.0, 6.0, 6.0); next.control.orientation = Quaternion::rotation_x(u_slow * 0.15) - * Quaternion::rotation_y(0.0) * Quaternion::rotation_z(u_slowalt * 0.08); next.control.scale = Vec3::one(); }, @@ -136,10 +133,6 @@ impl Animation for WieldAnimation { let hand_scale = 1.12; next.control.position = Vec3::new(0.0, 0.0, 0.0); - //next.control.orientation = Quaternion::rotation_x(slow * 1.0); - // * Quaternion::rotation_y(0.0) - // * Quaternion::rotation_z(u_slowalt * 0.08); - // next.control.scale = Vec3::one(); next.l_hand.position = Vec3::new(0.0, 0.0, 0.0); next.l_hand.orientation = Quaternion::rotation_x(0.0 * PI) @@ -153,10 +146,6 @@ impl Animation for WieldAnimation { * Quaternion::rotation_z(0.0 * PI); next.l_control.position = Vec3::new(-7.0, 0.0, 0.0); - // next.l_control.orientation = Quaternion::rotation_x(u_slow * 0.15 + 1.0) - // * Quaternion::rotation_y(0.0) - // * Quaternion::rotation_z(u_slowalt * 0.08); - // next.l_control.scale = Vec3::one(); next.r_hand.position = Vec3::new(0.0, 0.0, 0.0); next.r_hand.orientation = Quaternion::rotation_x(0.0 * PI) @@ -171,10 +160,6 @@ impl Animation for WieldAnimation { next.second.scale = Vec3::one(); next.r_control.position = Vec3::new(7.0, 0.0, 0.0); - // next.r_control.orientation = Quaternion::rotation_x(0.0 * PI) - // * Quaternion::rotation_y(0.0 * PI) - // * Quaternion::rotation_z(0.0 * PI); - // next.r_control.scale = Vec3::one(); }, Some(ToolKind::Axe(_)) => { if velocity < 0.5 { @@ -234,9 +219,8 @@ impl Animation for WieldAnimation { next.r_hand.orientation = Quaternion::rotation_x(0.0) * Quaternion::rotation_y(0.0); next.r_hand.scale = Vec3::one() * 1.06; next.main.position = Vec3::new(0.0, 0.0, 0.0); - next.main.orientation = Quaternion::rotation_x(0.0) - * Quaternion::rotation_y(-1.57) - * Quaternion::rotation_z(1.57); + next.main.orientation = + Quaternion::rotation_y(-1.57) * Quaternion::rotation_z(1.57); next.control.position = Vec3::new(6.0, 7.0, 1.0); next.control.orientation = Quaternion::rotation_x(0.3 + u_slow * 0.15) @@ -245,24 +229,21 @@ impl Animation for WieldAnimation { next.control.scale = Vec3::one(); }, Some(ToolKind::Staff(_)) => { - next.l_hand.position = Vec3::new(1.5, 0.5, -4.0); + next.l_hand.position = Vec3::new(11.0, 5.0, -4.0); next.l_hand.orientation = - Quaternion::rotation_x(1.47) * Quaternion::rotation_y(-0.3); + Quaternion::rotation_x(1.27) * Quaternion::rotation_y(0.0); next.l_hand.scale = Vec3::one() * 1.05; - next.r_hand.position = Vec3::new(8.0, 4.0, 2.0); - next.r_hand.orientation = Quaternion::rotation_x(1.8) - * Quaternion::rotation_y(0.5) - * Quaternion::rotation_z(-0.27); + next.r_hand.position = Vec3::new(12.0, 5.5, 2.0); + next.r_hand.orientation = + Quaternion::rotation_x(1.57) * Quaternion::rotation_y(0.2); next.r_hand.scale = Vec3::one() * 1.05; - next.main.position = Vec3::new(12.0, 8.4, 13.2); - next.main.orientation = Quaternion::rotation_x(-0.3) - * Quaternion::rotation_y(3.14 + 0.3) - * Quaternion::rotation_z(0.9); + next.main.position = Vec3::new(12.0, 8.5, 13.2); + next.main.orientation = Quaternion::rotation_y(3.14); - next.control.position = Vec3::new(-14.0, 1.8, 3.0); - next.control.orientation = Quaternion::rotation_x(u_slow * 0.2) - * Quaternion::rotation_y(-0.2) - * Quaternion::rotation_z(u_slowalt * 0.1); + next.control.position = Vec3::new(-18.0, 1.0, 6.0); + next.control.orientation = Quaternion::rotation_x(-0.3 + u_slow * 0.1) + * Quaternion::rotation_y(0.15) + * Quaternion::rotation_z(u_slowalt * 0.08); next.control.scale = Vec3::one(); }, Some(ToolKind::Shield(_)) => { @@ -271,27 +252,15 @@ impl Animation for WieldAnimation { let hand_scale = 1.12; next.control.position = Vec3::new(0.0, 0.0, 0.0); - // next.control.orientation = Quaternion::rotation_x(u_slow * 0.15 + 1.0) - // * Quaternion::rotation_y(0.0) - // * Quaternion::rotation_z(u_slowalt * 0.08); - // next.control.scale = Vec3::one(); next.l_hand.position = Vec3::new(0.0, 0.0, 0.0); - next.l_hand.orientation = Quaternion::rotation_x(0.0 * PI) - * Quaternion::rotation_y(0.0 * PI) - * Quaternion::rotation_z(0.0 * PI); + next.l_hand.orientation = Quaternion::rotation_x(0.0 * PI); next.l_hand.scale = Vec3::one() * hand_scale; next.main.position = Vec3::new(0.0, 0.0, 0.0); - next.main.orientation = Quaternion::rotation_x(0.0 * PI) - * Quaternion::rotation_y(0.0 * PI) - * Quaternion::rotation_z(0.0 * PI); + next.main.orientation = Quaternion::rotation_x(0.0 * PI); next.l_control.position = Vec3::new(-7.0, 0.0, 0.0); - // next.l_control.orientation = Quaternion::rotation_x(u_slow * 0.15 + 1.0) - // * Quaternion::rotation_y(0.0) - // * Quaternion::rotation_z(u_slowalt * 0.08); - // next.l_control.scale = Vec3::one(); next.r_hand.position = Vec3::new(0.0, 0.0, 0.0); next.r_hand.orientation = Quaternion::rotation_x(0.0 * PI) @@ -300,16 +269,10 @@ impl Animation for WieldAnimation { next.r_hand.scale = Vec3::one() * hand_scale; next.second.position = Vec3::new(0.0, 0.0, 0.0); - next.second.orientation = Quaternion::rotation_x(0.0 * PI) - * Quaternion::rotation_y(0.0 * PI) - * Quaternion::rotation_z(0.0 * PI); + next.second.orientation = Quaternion::rotation_x(0.0 * PI); next.second.scale = Vec3::one(); next.r_control.position = Vec3::new(7.0, 0.0, 0.0); - // next.r_control.orientation = Quaternion::rotation_x(0.0 * PI) - // * Quaternion::rotation_y(0.0 * PI) - // * Quaternion::rotation_z(0.0 * PI); - // next.r_control.scale = Vec3::one(); }, Some(ToolKind::Bow(_)) => { next.l_hand.position = Vec3::new(2.0, 1.5, 0.0); @@ -344,20 +307,14 @@ impl Animation for WieldAnimation { * Quaternion::rotation_y(0.0) * Quaternion::rotation_z(0.0); next.l_hand.scale = Vec3::one() * 1.01; - next.r_hand.position = Vec3::new(7.0, 2.5, -1.25); - next.r_hand.orientation = Quaternion::rotation_x(1.27) - * Quaternion::rotation_y(0.0) - * Quaternion::rotation_z(-0.3); - next.r_hand.scale = Vec3::one() * 1.01; - next.main.position = Vec3::new(5.0, 8.75, -2.0); - next.main.orientation = Quaternion::rotation_x(-0.3) - * Quaternion::rotation_y(-1.27) - * Quaternion::rotation_z(0.0); + next.main.position = Vec3::new(-5.0, 5.0, 23.0); + next.main.orientation = Quaternion::rotation_z(0.0) + * Quaternion::rotation_x(PI) + * Quaternion::rotation_y(0.0); next.main.scale = Vec3::one(); - next.control.position = Vec3::new(0.0, 6.0, 6.0); - next.control.orientation = - Quaternion::rotation_x(u_slow * 0.2) * Quaternion::rotation_z(u_slowalt * 0.1); - next.control.scale = Vec3::one(); + next.torso.position = Vec3::new(0.0, 0.0, 0.1) * skeleton_attr.scaler; + next.torso.orientation = Quaternion::rotation_x(0.0); + next.torso.scale = Vec3::one() / 11.0 * skeleton_attr.scaler; }, Some(ToolKind::Farming(_)) => { if velocity < 0.5 { @@ -370,14 +327,10 @@ impl Animation for WieldAnimation { Quaternion::rotation_x(1.57) * Quaternion::rotation_y(0.0); next.l_hand.scale = Vec3::one() * 1.05; next.r_hand.position = Vec3::new(9.0, 1.0, 11.0); - next.r_hand.orientation = Quaternion::rotation_x(1.57) - * Quaternion::rotation_y(0.0) - * Quaternion::rotation_z(0.0); + next.r_hand.orientation = Quaternion::rotation_x(1.57); next.r_hand.scale = Vec3::one() * 1.05; next.main.position = Vec3::new(7.5, 7.5, 13.2); - next.main.orientation = Quaternion::rotation_x(0.0) - * Quaternion::rotation_y(3.14) - * Quaternion::rotation_z(0.0); + next.main.orientation = Quaternion::rotation_y(3.14); next.control.position = Vec3::new(-11.0 + slow * 2.0, 1.8, 4.0); next.control.orientation = Quaternion::rotation_x(u_slow * 0.1) diff --git a/voxygen/src/anim/src/golem/alpha.rs b/voxygen/src/anim/src/golem/alpha.rs index d4bfbde173..b20487e2d7 100644 --- a/voxygen/src/anim/src/golem/alpha.rs +++ b/voxygen/src/anim/src/golem/alpha.rs @@ -17,7 +17,7 @@ impl Animation for AlphaAnimation { fn update_skeleton_inner( skeleton: &Self::Skeleton, - (_velocity, _global_time): Self::Dependency, + (_velocity, global_time): Self::Dependency, anim_time: f64, _rate: &mut f32, skeleton_attr: &SkeletonAttr, @@ -35,62 +35,129 @@ impl Animation for AlphaAnimation { + 1.0; let twist = (anim_time as f32 * lab as f32 * 4.0).sin() + 0.5; - let slowersmooth = (anim_time as f32 * lab as f32 * 8.0).sin(); - next.head.position = Vec3::new(0.0, skeleton_attr.head.0, skeleton_attr.head.1) * 1.02; - next.head.orientation = Quaternion::rotation_z(0.0) * Quaternion::rotation_x(-0.2); - next.head.scale = Vec3::one() * 1.02; + let random = ((((2.0 + * (((global_time as f32 - anim_time as f32) * 10.0) + - (((global_time as f32 - anim_time as f32) * 10.0).round()))) + .abs()) + * 10.0) + .round()) + / 10.0; - next.upper_torso.position = Vec3::new( - 0.0, - skeleton_attr.upper_torso.0, - skeleton_attr.upper_torso.1, - ) / 8.0; - next.upper_torso.orientation = - Quaternion::rotation_z(twist * 1.5) * Quaternion::rotation_x(0.0); - next.upper_torso.scale = Vec3::one() / 8.0; + let switch = if random > 0.5 { 1.0 } else { -1.0 }; + println!("{:?}", random); + if switch > 0.0 { + next.head.position = Vec3::new(0.0, skeleton_attr.head.0, skeleton_attr.head.1) * 1.02; + next.head.orientation = Quaternion::rotation_z(0.0) * Quaternion::rotation_x(-0.2); + next.head.scale = Vec3::one() * 1.02; - next.lower_torso.position = Vec3::new( - 0.0, - skeleton_attr.lower_torso.0, - skeleton_attr.lower_torso.1, - ); - next.lower_torso.orientation = - Quaternion::rotation_z(twist * -1.5) * Quaternion::rotation_x(0.0); - next.lower_torso.scale = Vec3::one(); + next.upper_torso.position = Vec3::new( + 0.0, + skeleton_attr.upper_torso.0, + skeleton_attr.upper_torso.1, + ) / 8.0; + next.upper_torso.orientation = + Quaternion::rotation_z(twist * 1.1) * Quaternion::rotation_x(0.0); + next.upper_torso.scale = Vec3::one() / 8.0; - next.shoulder_l.position = Vec3::new( - -skeleton_attr.shoulder.0, - skeleton_attr.shoulder.1, - skeleton_attr.shoulder.2, - ); - next.shoulder_l.orientation = Quaternion::rotation_z(0.0) * Quaternion::rotation_x(0.0); - next.shoulder_l.scale = Vec3::one(); + next.lower_torso.position = Vec3::new( + 0.0, + skeleton_attr.lower_torso.0, + skeleton_attr.lower_torso.1, + ); + next.lower_torso.orientation = + Quaternion::rotation_z(twist * -1.1) * Quaternion::rotation_x(0.0); + next.lower_torso.scale = Vec3::one(); - next.shoulder_r.position = Vec3::new( - skeleton_attr.shoulder.0, - skeleton_attr.shoulder.1, - skeleton_attr.shoulder.2, - ); - next.shoulder_r.orientation = - Quaternion::rotation_z(0.0) * Quaternion::rotation_x(slower * 0.9); - next.shoulder_r.scale = Vec3::one(); + next.shoulder_l.position = Vec3::new( + -skeleton_attr.shoulder.0, + skeleton_attr.shoulder.1, + skeleton_attr.shoulder.2, + ); + next.shoulder_l.orientation = Quaternion::rotation_z(0.0) * Quaternion::rotation_x(0.0); + next.shoulder_l.scale = Vec3::one(); - next.hand_l.position = Vec3::new( - -skeleton_attr.hand.0, - skeleton_attr.hand.1, - skeleton_attr.hand.2, - ); - next.hand_l.orientation = Quaternion::rotation_z(0.0) * Quaternion::rotation_x(0.0); - next.hand_l.scale = Vec3::one() * 1.02; + next.shoulder_r.position = Vec3::new( + skeleton_attr.shoulder.0, + skeleton_attr.shoulder.1, + skeleton_attr.shoulder.2, + ); + next.shoulder_r.orientation = + Quaternion::rotation_z(0.0) * Quaternion::rotation_x(slower * 0.4); + next.shoulder_r.scale = Vec3::one(); - next.hand_r.position = Vec3::new( - skeleton_attr.hand.0, - skeleton_attr.hand.1, - skeleton_attr.hand.2, - ); - next.hand_r.orientation = - Quaternion::rotation_z(0.0) * Quaternion::rotation_x(slower * 1.5); - next.hand_r.scale = Vec3::one() * 1.02; + next.hand_l.position = Vec3::new( + -skeleton_attr.hand.0, + skeleton_attr.hand.1, + skeleton_attr.hand.2, + ); + next.hand_l.orientation = Quaternion::rotation_z(0.0) * Quaternion::rotation_x(0.0); + next.hand_l.scale = Vec3::one() * 1.02; + + next.hand_r.position = Vec3::new( + skeleton_attr.hand.0, + skeleton_attr.hand.1, + skeleton_attr.hand.2, + ); + next.hand_r.orientation = + Quaternion::rotation_z(0.0) * Quaternion::rotation_x(slower * 0.35); + next.hand_r.scale = Vec3::one() * 1.02; + } else { + next.head.position = Vec3::new(0.0, skeleton_attr.head.0, skeleton_attr.head.1) * 1.02; + next.head.orientation = Quaternion::rotation_z(0.0) * Quaternion::rotation_x(-0.2); + next.head.scale = Vec3::one() * 1.02; + + next.upper_torso.position = Vec3::new( + 0.0, + skeleton_attr.upper_torso.0, + skeleton_attr.upper_torso.1, + ) / 8.0; + next.upper_torso.orientation = + Quaternion::rotation_z(twist * -1.1) * Quaternion::rotation_x(0.0); + next.upper_torso.scale = Vec3::one() / 8.0; + + next.lower_torso.position = Vec3::new( + 0.0, + skeleton_attr.lower_torso.0, + skeleton_attr.lower_torso.1, + ); + next.lower_torso.orientation = + Quaternion::rotation_z(twist * 1.1) * Quaternion::rotation_x(0.0); + next.lower_torso.scale = Vec3::one(); + + next.shoulder_l.position = Vec3::new( + -skeleton_attr.shoulder.0, + skeleton_attr.shoulder.1, + skeleton_attr.shoulder.2, + ); + next.shoulder_l.orientation = + Quaternion::rotation_z(0.0) * Quaternion::rotation_x(slower * 0.4); + next.shoulder_l.scale = Vec3::one(); + + next.shoulder_r.position = Vec3::new( + skeleton_attr.shoulder.0, + skeleton_attr.shoulder.1, + skeleton_attr.shoulder.2, + ); + next.shoulder_r.orientation = Quaternion::rotation_z(0.0) * Quaternion::rotation_x(0.0); + next.shoulder_r.scale = Vec3::one(); + + next.hand_l.position = Vec3::new( + -skeleton_attr.hand.0, + skeleton_attr.hand.1, + skeleton_attr.hand.2, + ); + next.hand_l.orientation = + Quaternion::rotation_z(0.0) * Quaternion::rotation_x(slower * 0.35); + next.hand_l.scale = Vec3::one() * 1.02; + + next.hand_r.position = Vec3::new( + skeleton_attr.hand.0, + skeleton_attr.hand.1, + skeleton_attr.hand.2, + ); + next.hand_r.orientation = Quaternion::rotation_z(0.0) * Quaternion::rotation_x(0.0); + next.hand_r.scale = Vec3::one() * 1.02; + }; /* next.leg_l.position = Vec3::new( -skeleton_attr.leg.0, diff --git a/voxygen/src/anim/src/golem/run.rs b/voxygen/src/anim/src/golem/run.rs index c1226293ed..2a9797dc7c 100644 --- a/voxygen/src/anim/src/golem/run.rs +++ b/voxygen/src/anim/src/golem/run.rs @@ -7,7 +7,7 @@ use std::f32::consts::PI; pub struct RunAnimation; impl Animation for RunAnimation { - type Dependency = (f32, f64); + type Dependency = (f32, Vec3, Vec3, f64); type Skeleton = GolemSkeleton; #[cfg(feature = "use-dyn-lib")] @@ -17,7 +17,7 @@ impl Animation for RunAnimation { fn update_skeleton_inner( skeleton: &Self::Skeleton, - (_velocity, _global_time): Self::Dependency, + (_velocity, orientation, last_ori, _global_time): Self::Dependency, anim_time: f64, _rate: &mut f32, skeleton_attr: &SkeletonAttr, @@ -56,7 +56,19 @@ impl Animation for RunAnimation { let short = (anim_time as f32 * lab as f32 * 16.0).sin(); let shortalt = (anim_time as f32 * lab as f32 * 16.0 + PI / 2.0).sin(); - + let ori: Vec2 = Vec2::from(orientation); + let last_ori = Vec2::from(last_ori); + let tilt = if ::vek::Vec2::new(ori, last_ori) + .map(|o| o.magnitude_squared()) + .map(|m| m > 0.001 && m.is_finite()) + .reduce_and() + && ori.angle_between(last_ori).is_finite() + { + ori.angle_between(last_ori).min(0.2) + * last_ori.determine_side(Vec2::zero(), ori).signum() + } else { + 0.0 + } * 1.3; next.head.position = Vec3::new(0.0, skeleton_attr.head.0, skeleton_attr.head.1) * 1.02; next.head.orientation = Quaternion::rotation_z(short * -0.3) * Quaternion::rotation_x(-0.2); next.head.scale = Vec3::one() * 1.02; @@ -67,7 +79,7 @@ impl Animation for RunAnimation { skeleton_attr.upper_torso.1 + short * 1.0, ) / 8.0; next.upper_torso.orientation = - Quaternion::rotation_z(short * 0.40) * Quaternion::rotation_x(0.0); + Quaternion::rotation_z(tilt * -4.0 + short * 0.40) * Quaternion::rotation_x(0.0); next.upper_torso.scale = Vec3::one() / 8.0; next.lower_torso.position = Vec3::new( @@ -75,7 +87,7 @@ impl Animation for RunAnimation { skeleton_attr.lower_torso.0, skeleton_attr.lower_torso.1, ); - next.lower_torso.orientation = Quaternion::rotation_z(shortalt * 0.60); + next.lower_torso.orientation = Quaternion::rotation_z(tilt * 4.0 + shortalt * 0.2); next.lower_torso.scale = Vec3::one(); next.shoulder_l.position = Vec3::new( @@ -83,9 +95,9 @@ impl Animation for RunAnimation { skeleton_attr.shoulder.1, skeleton_attr.shoulder.2, ); - next.shoulder_l.orientation = Quaternion::rotation_z(footrotl * 0.5) + next.shoulder_l.orientation = Quaternion::rotation_z(footrotl * 0.07) * Quaternion::rotation_y(0.15) - * Quaternion::rotation_x(footrotl * -0.95); + * Quaternion::rotation_x(footrotl * -0.25); next.shoulder_l.scale = Vec3::one(); next.shoulder_r.position = Vec3::new( @@ -93,9 +105,9 @@ impl Animation for RunAnimation { skeleton_attr.shoulder.1, skeleton_attr.shoulder.2, ); - next.shoulder_r.orientation = Quaternion::rotation_z(footrotr * -0.5) + next.shoulder_r.orientation = Quaternion::rotation_z(footrotr * -0.07) * Quaternion::rotation_y(-0.15) - * Quaternion::rotation_x(footrotr * -0.95); + * Quaternion::rotation_x(footrotr * -0.25); next.shoulder_r.scale = Vec3::one(); next.hand_l.position = Vec3::new( @@ -103,9 +115,9 @@ impl Animation for RunAnimation { skeleton_attr.hand.1, skeleton_attr.hand.2, ); - next.hand_l.orientation = Quaternion::rotation_x(0.5 + footrotl * -1.1) - * Quaternion::rotation_y(0.5) - * Quaternion::rotation_z(-0.35 + footrotl * -1.0); + next.hand_l.orientation = Quaternion::rotation_x(0.3 + footrotl * -0.06) + * Quaternion::rotation_y(0.1) + * Quaternion::rotation_z(-0.35 + footrotl * -0.1); next.hand_l.scale = Vec3::one() * 1.02; next.hand_r.position = Vec3::new( @@ -113,9 +125,9 @@ impl Animation for RunAnimation { skeleton_attr.hand.1, skeleton_attr.hand.2, ); - next.hand_r.orientation = Quaternion::rotation_x(0.5 + footrotr * -1.1) - * Quaternion::rotation_y(-0.5) - * Quaternion::rotation_z(0.35 + footrotr * 1.0); + next.hand_r.orientation = Quaternion::rotation_x(0.3 + footrotr * -0.06) + * Quaternion::rotation_y(-0.1) + * Quaternion::rotation_z(0.35 + footrotr * 0.1); next.hand_r.scale = Vec3::one() * 1.02; next.leg_l.position = Vec3::new( @@ -123,9 +135,9 @@ impl Animation for RunAnimation { skeleton_attr.leg.1, skeleton_attr.leg.2, ) * 1.02; - next.leg_l.orientation = Quaternion::rotation_x(footrotl * 1.5) - * Quaternion::rotation_y(-0.3) - * Quaternion::rotation_z(footrotl * -0.5); + next.leg_l.orientation = Quaternion::rotation_x(footrotl * 0.3) + * Quaternion::rotation_y(0.1) + * Quaternion::rotation_z(footrotl * -0.2); next.leg_l.scale = Vec3::one() * 1.02; next.leg_r.position = Vec3::new( @@ -134,29 +146,31 @@ impl Animation for RunAnimation { skeleton_attr.leg.2, ) * 1.02; - next.leg_r.orientation = Quaternion::rotation_x(footrotr * 1.5) - * Quaternion::rotation_y(0.3) - * Quaternion::rotation_z(footrotr * 0.5); + next.leg_r.orientation = Quaternion::rotation_x(footrotr * 0.3) + * Quaternion::rotation_y(-0.1) + * Quaternion::rotation_z(footrotr * 0.2); next.leg_r.scale = Vec3::one() * 1.02; next.foot_l.position = Vec3::new( -skeleton_attr.foot.0, - skeleton_attr.foot.1 + foothoril * 13.0, - skeleton_attr.foot.2 - 3.0 + (footvertl * 15.0).max(-2.0), + skeleton_attr.foot.1 + foothoril * 2.0, + skeleton_attr.foot.2 + (footvertl * 3.0).max(0.0), ); - next.foot_l.orientation = Quaternion::rotation_x(footrotl * 1.8); + next.foot_l.orientation = + Quaternion::rotation_x(footrotl * 0.2) * Quaternion::rotation_y(-0.08); next.foot_l.scale = Vec3::one() * 0.98; next.foot_r.position = Vec3::new( skeleton_attr.foot.0, - skeleton_attr.foot.1 + foothorir * 13.0, - skeleton_attr.foot.2 - 3.0 + (footvertr * 15.0).max(-2.0), + skeleton_attr.foot.1 + foothorir * 2.0, + skeleton_attr.foot.2 + (footvertr * 3.0).max(0.0), ); - next.foot_r.orientation = - Quaternion::rotation_z(0.0) * Quaternion::rotation_x(footrotr * 1.8); + next.foot_r.orientation = Quaternion::rotation_z(0.0) + * Quaternion::rotation_x(footrotr * 0.2) + * Quaternion::rotation_y(0.08); next.foot_r.scale = Vec3::one() * 0.98; - next.torso.position = Vec3::new(0.0, 0.0, short * 0.15); + next.torso.position = Vec3::new(0.0, 0.0, 0.0); next.torso.orientation = Quaternion::rotation_z(0.0) * Quaternion::rotation_x(-0.2); next.torso.scale = Vec3::one(); next diff --git a/voxygen/src/hud/item_imgs.rs b/voxygen/src/hud/item_imgs.rs index 4cda77f2ce..1d15a24e5d 100644 --- a/voxygen/src/hud/item_imgs.rs +++ b/voxygen/src/hud/item_imgs.rs @@ -4,7 +4,7 @@ use common::{ comp::item::{ armor::{Armor, ArmorKind}, tool::{Tool, ToolKind}, - Item, ItemKind, Lantern, Throwable, Utility, + Glider, Item, ItemKind, Lantern, Throwable, Utility, }, figure::Segment, }; @@ -21,6 +21,7 @@ use vek::*; pub enum ItemKey { Tool(ToolKind), Lantern(String), + Glider(String), Armor(ArmorKind), Utility(Utility), Consumable(String), @@ -33,6 +34,7 @@ impl From<&Item> for ItemKey { match &item.kind() { ItemKind::Tool(Tool { kind, .. }) => ItemKey::Tool(kind.clone()), ItemKind::Lantern(Lantern { kind, .. }) => ItemKey::Lantern(kind.clone()), + ItemKind::Glider(Glider { kind, .. }) => ItemKey::Glider(kind.clone()), ItemKind::Armor(Armor { kind, .. }) => ItemKey::Armor(kind.clone()), ItemKind::Utility { kind, .. } => ItemKey::Utility(*kind), ItemKind::Consumable { kind, .. } => ItemKey::Consumable(kind.clone()), diff --git a/voxygen/src/hud/slots.rs b/voxygen/src/hud/slots.rs index 3e32e7cc3d..534d0f3f50 100644 --- a/voxygen/src/hud/slots.rs +++ b/voxygen/src/hud/slots.rs @@ -66,6 +66,7 @@ impl SlotKey for EquipSlot { EquipSlot::Mainhand => source.active_item.as_ref().map(|i| &i.item), EquipSlot::Offhand => source.second_item.as_ref().map(|i| &i.item), EquipSlot::Lantern => source.lantern.as_ref(), + EquipSlot::Glider => source.glider.as_ref(), }; item.map(|i| (i.into(), None)) diff --git a/voxygen/src/scene/figure/mod.rs b/voxygen/src/scene/figure/mod.rs index 6d62da3d16..2fa6bd7e4a 100644 --- a/voxygen/src/scene/figure/mod.rs +++ b/voxygen/src/scene/figure/mod.rs @@ -1537,7 +1537,7 @@ impl FigureMgr { ), }; - state.skeleton = anim::vek::Lerp::lerp(&state.skeleton, &target_base, dt); + state.skeleton = anim::vek::Lerp::lerp(&state.skeleton, &target_base, dt_lerp); state.update( renderer, pos.0, @@ -1619,7 +1619,7 @@ impl FigureMgr { ), }; - state.skeleton = anim::vek::Lerp::lerp(&state.skeleton, &target_base, dt); + state.skeleton = anim::vek::Lerp::lerp(&state.skeleton, &target_base, dt_lerp); state.update( renderer, pos.0, @@ -1702,7 +1702,7 @@ impl FigureMgr { ), }; - state.skeleton = anim::vek::Lerp::lerp(&state.skeleton, &target_base, dt); + state.skeleton = anim::vek::Lerp::lerp(&state.skeleton, &target_base, dt_lerp); state.update( renderer, pos.0, @@ -1788,7 +1788,7 @@ impl FigureMgr { ), }; - state.skeleton = anim::vek::Lerp::lerp(&state.skeleton, &target_base, dt); + state.skeleton = anim::vek::Lerp::lerp(&state.skeleton, &target_base, dt_lerp); state.update( renderer, pos.0, @@ -1874,7 +1874,7 @@ impl FigureMgr { ), }; - state.skeleton = anim::vek::Lerp::lerp(&state.skeleton, &target_base, dt); + state.skeleton = anim::vek::Lerp::lerp(&state.skeleton, &target_base, dt_lerp); state.update( renderer, pos.0, @@ -2039,7 +2039,7 @@ impl FigureMgr { // Running (true, true, false) => anim::golem::RunAnimation::update_skeleton( &GolemSkeleton::default(), - (vel.0.magnitude(), time), + (vel.0.magnitude(), ori, state.last_ori, time), state.state_time, &mut state_animation_rate, skeleton_attr, From c2e364abb54a48fdc115a1bf86af642f7ff319f6 Mon Sep 17 00:00:00 2001 From: jshipsey Date: Mon, 24 Aug 2020 17:37:23 -0400 Subject: [PATCH 05/28] fix for animal attack motion bug --- voxygen/src/anim/src/character/glidewield.rs | 1 + voxygen/src/anim/src/quadruped_low/alpha.rs | 65 ++++----- .../src/anim/src/quadruped_medium/alpha.rs | 134 +++++++++--------- voxygen/src/scene/figure/mod.rs | 4 +- 4 files changed, 104 insertions(+), 100 deletions(-) diff --git a/voxygen/src/anim/src/character/glidewield.rs b/voxygen/src/anim/src/character/glidewield.rs index c9e5bc36b1..70052d6647 100644 --- a/voxygen/src/anim/src/character/glidewield.rs +++ b/voxygen/src/anim/src/character/glidewield.rs @@ -370,6 +370,7 @@ impl Animation for GlideWieldAnimation { ); next.lantern.orientation = Quaternion::rotation_x(0.1) * Quaternion::rotation_y(0.1); next.lantern.scale = Vec3::one() * 0.65; + next.hold.scale = Vec3::one() * 0.0; next.torso.position = Vec3::new(0.0, 0.0, 0.0) * skeleton_attr.scaler; next.torso.orientation = Quaternion::rotation_x(0.0); diff --git a/voxygen/src/anim/src/quadruped_low/alpha.rs b/voxygen/src/anim/src/quadruped_low/alpha.rs index 87eedd579b..49ecfe54c6 100644 --- a/voxygen/src/anim/src/quadruped_low/alpha.rs +++ b/voxygen/src/anim/src/quadruped_low/alpha.rs @@ -7,7 +7,7 @@ use std::f32::consts::PI; pub struct AlphaAnimation; impl Animation for AlphaAnimation { - type Dependency = f64; + type Dependency = (f32, f64); type Skeleton = QuadrupedLowSkeleton; #[cfg(feature = "use-dyn-lib")] @@ -16,7 +16,7 @@ impl Animation for AlphaAnimation { #[cfg_attr(feature = "be-dyn-lib", export_name = "quadruped_low_alpha")] fn update_skeleton_inner( skeleton: &Self::Skeleton, - _global_time: Self::Dependency, + (velocity, _global_time): Self::Dependency, anim_time: f64, _rate: &mut f32, skeleton_attr: &SkeletonAttr, @@ -66,39 +66,40 @@ impl Animation for AlphaAnimation { * Quaternion::rotation_x(-0.12) * Quaternion::rotation_z(short * 0.3); next.tail_rear.scale = Vec3::one() * 0.98; + if velocity < 1.0 { + next.foot_fl.position = Vec3::new( + -skeleton_attr.feet_f.0, + skeleton_attr.feet_f.1, + skeleton_attr.feet_f.2, + ); + next.foot_fl.orientation = Quaternion::rotation_y(short * 0.12); + next.foot_fl.scale = Vec3::one(); - next.foot_fl.position = Vec3::new( - -skeleton_attr.feet_f.0, - skeleton_attr.feet_f.1, - skeleton_attr.feet_f.2, - ); - next.foot_fl.orientation = Quaternion::rotation_y(short * 0.12); - next.foot_fl.scale = Vec3::one(); + next.foot_fr.position = Vec3::new( + skeleton_attr.feet_f.0, + skeleton_attr.feet_f.1, + skeleton_attr.feet_f.2, + ); + next.foot_fr.orientation = Quaternion::rotation_y(short * 0.12); + next.foot_fr.scale = Vec3::one(); - next.foot_fr.position = Vec3::new( - skeleton_attr.feet_f.0, - skeleton_attr.feet_f.1, - skeleton_attr.feet_f.2, - ); - next.foot_fr.orientation = Quaternion::rotation_y(short * 0.12); - next.foot_fr.scale = Vec3::one(); - - next.foot_bl.position = Vec3::new( - -skeleton_attr.feet_b.0, - skeleton_attr.feet_b.1, - skeleton_attr.feet_b.2, - ); - next.foot_bl.orientation = Quaternion::rotation_y(short * 0.12); - next.foot_bl.scale = Vec3::one(); - - next.foot_br.position = Vec3::new( - skeleton_attr.feet_b.0, - skeleton_attr.feet_b.1, - skeleton_attr.feet_b.2, - ); - next.foot_br.orientation = Quaternion::rotation_y(short * 0.12); - next.foot_br.scale = Vec3::one(); + next.foot_bl.position = Vec3::new( + -skeleton_attr.feet_b.0, + skeleton_attr.feet_b.1, + skeleton_attr.feet_b.2, + ); + next.foot_bl.orientation = Quaternion::rotation_y(short * 0.12); + next.foot_bl.scale = Vec3::one(); + next.foot_br.position = Vec3::new( + skeleton_attr.feet_b.0, + skeleton_attr.feet_b.1, + skeleton_attr.feet_b.2, + ); + next.foot_br.orientation = Quaternion::rotation_y(short * 0.12); + next.foot_br.scale = Vec3::one(); + } else { + }; next } } diff --git a/voxygen/src/anim/src/quadruped_medium/alpha.rs b/voxygen/src/anim/src/quadruped_medium/alpha.rs index ae84f5f8ce..d323e9ecfe 100644 --- a/voxygen/src/anim/src/quadruped_medium/alpha.rs +++ b/voxygen/src/anim/src/quadruped_medium/alpha.rs @@ -7,7 +7,7 @@ use std::f32::consts::PI; pub struct AlphaAnimation; impl Animation for AlphaAnimation { - type Dependency = f64; + type Dependency = (f32, f64); type Skeleton = QuadrupedMediumSkeleton; #[cfg(feature = "use-dyn-lib")] @@ -16,7 +16,7 @@ impl Animation for AlphaAnimation { #[cfg_attr(feature = "be-dyn-lib", export_name = "quadruped_medium_alpha")] fn update_skeleton_inner( skeleton: &Self::Skeleton, - _global_time: Self::Dependency, + (velocity, _global_time): Self::Dependency, anim_time: f64, _rate: &mut f32, skeleton_attr: &SkeletonAttr, @@ -70,78 +70,80 @@ impl Animation for AlphaAnimation { next.ears.position = Vec3::new(0.0, skeleton_attr.ears.0, skeleton_attr.ears.1); next.ears.orientation = Quaternion::rotation_x(0.0); next.ears.scale = Vec3::one() * 1.02; + if velocity < 1.0 { + next.leg_fl.position = Vec3::new( + -skeleton_attr.leg_f.0, + skeleton_attr.leg_f.1, + skeleton_attr.leg_f.2, + ); - next.leg_fl.position = Vec3::new( - -skeleton_attr.leg_f.0, - skeleton_attr.leg_f.1, - skeleton_attr.leg_f.2, - ); + next.leg_fl.orientation = + Quaternion::rotation_x(short * -0.1) * Quaternion::rotation_y(short * 0.15); + next.leg_fl.scale = Vec3::one(); - next.leg_fl.orientation = - Quaternion::rotation_x(short * -0.1) * Quaternion::rotation_y(short * 0.15); - next.leg_fl.scale = Vec3::one(); + next.leg_fr.position = Vec3::new( + skeleton_attr.leg_f.0, + skeleton_attr.leg_f.1, + skeleton_attr.leg_f.2, + ); + next.leg_fr.orientation = + Quaternion::rotation_x(short * 0.3) * Quaternion::rotation_y(short * -0.2); + next.leg_fr.scale = Vec3::one(); - next.leg_fr.position = Vec3::new( - skeleton_attr.leg_f.0, - skeleton_attr.leg_f.1, - skeleton_attr.leg_f.2, - ); - next.leg_fr.orientation = - Quaternion::rotation_x(short * 0.3) * Quaternion::rotation_y(short * -0.2); - next.leg_fr.scale = Vec3::one(); + next.leg_bl.position = Vec3::new( + -skeleton_attr.leg_b.0, + skeleton_attr.leg_b.1, + skeleton_attr.leg_b.2 + 1.0, + ); + next.leg_bl.orientation = + Quaternion::rotation_x(-0.1 + short * -0.2) * Quaternion::rotation_y(short * 0.2); + next.leg_bl.scale = Vec3::one(); - next.leg_bl.position = Vec3::new( - -skeleton_attr.leg_b.0, - skeleton_attr.leg_b.1, - skeleton_attr.leg_b.2 + 1.0, - ); - next.leg_bl.orientation = - Quaternion::rotation_x(-0.1 + short * -0.2) * Quaternion::rotation_y(short * 0.2); - next.leg_bl.scale = Vec3::one(); + next.leg_br.position = Vec3::new( + skeleton_attr.leg_b.0, + skeleton_attr.leg_b.1, + skeleton_attr.leg_b.2 + 1.0, + ); + next.leg_br.orientation = Quaternion::rotation_x(-0.1 + short * -0.2) + * Quaternion::rotation_y(0.1 + short * 0.2); + next.leg_br.scale = Vec3::one(); - next.leg_br.position = Vec3::new( - skeleton_attr.leg_b.0, - skeleton_attr.leg_b.1, - skeleton_attr.leg_b.2 + 1.0, - ); - next.leg_br.orientation = - Quaternion::rotation_x(-0.1 + short * -0.2) * Quaternion::rotation_y(0.1 + short * 0.2); - next.leg_br.scale = Vec3::one(); + next.foot_fl.position = Vec3::new( + -skeleton_attr.feet_f.0, + skeleton_attr.feet_f.1, + skeleton_attr.feet_f.2 + short * -0.2, + ); + next.foot_fl.orientation = Quaternion::rotation_x(short * -0.05); + next.foot_fl.scale = Vec3::one(); - next.foot_fl.position = Vec3::new( - -skeleton_attr.feet_f.0, - skeleton_attr.feet_f.1, - skeleton_attr.feet_f.2 + short * -0.2, - ); - next.foot_fl.orientation = Quaternion::rotation_x(short * -0.05); - next.foot_fl.scale = Vec3::one(); + next.foot_fr.position = Vec3::new( + skeleton_attr.feet_f.0, + skeleton_attr.feet_f.1, + skeleton_attr.feet_f.2, + ); + next.foot_fr.orientation = + Quaternion::rotation_x(short * -0.4) * Quaternion::rotation_y(short * 0.15); + next.foot_fr.scale = Vec3::one(); - next.foot_fr.position = Vec3::new( - skeleton_attr.feet_f.0, - skeleton_attr.feet_f.1, - skeleton_attr.feet_f.2, - ); - next.foot_fr.orientation = - Quaternion::rotation_x(short * -0.4) * Quaternion::rotation_y(short * 0.15); - next.foot_fr.scale = Vec3::one(); + next.foot_bl.position = Vec3::new( + -skeleton_attr.feet_b.0, + skeleton_attr.feet_b.1, + skeleton_attr.feet_b.2 + short * -0.8, + ); + next.foot_bl.orientation = + Quaternion::rotation_x(-0.2 + short * 0.2) * Quaternion::rotation_y(short * 0.15); + next.foot_bl.scale = Vec3::one(); - next.foot_bl.position = Vec3::new( - -skeleton_attr.feet_b.0, - skeleton_attr.feet_b.1, - skeleton_attr.feet_b.2 + short * -0.8, - ); - next.foot_bl.orientation = - Quaternion::rotation_x(-0.2 + short * 0.2) * Quaternion::rotation_y(short * 0.15); - next.foot_bl.scale = Vec3::one(); - - next.foot_br.position = Vec3::new( - skeleton_attr.feet_b.0, - skeleton_attr.feet_b.1, - skeleton_attr.feet_b.2, - ); - next.foot_br.orientation = - Quaternion::rotation_x(-0.2 + short * 0.2) * Quaternion::rotation_y(short * 0.15); - next.foot_br.scale = Vec3::one(); + next.foot_br.position = Vec3::new( + skeleton_attr.feet_b.0, + skeleton_attr.feet_b.1, + skeleton_attr.feet_b.2, + ); + next.foot_br.orientation = + Quaternion::rotation_x(-0.2 + short * 0.2) * Quaternion::rotation_y(short * 0.15); + next.foot_br.scale = Vec3::one(); + } else { + }; next } } diff --git a/voxygen/src/scene/figure/mod.rs b/voxygen/src/scene/figure/mod.rs index 2fa6bd7e4a..b6a16f0f9e 100644 --- a/voxygen/src/scene/figure/mod.rs +++ b/voxygen/src/scene/figure/mod.rs @@ -1244,7 +1244,7 @@ impl FigureMgr { CharacterState::BasicMelee(_) => { anim::quadruped_medium::AlphaAnimation::update_skeleton( &target_base, - time, + (vel.0.magnitude(), time), state.state_time, &mut state_animation_rate, skeleton_attr, @@ -1344,7 +1344,7 @@ impl FigureMgr { CharacterState::BasicMelee(_) => { anim::quadruped_low::AlphaAnimation::update_skeleton( &target_base, - time, + (vel.0.magnitude(), time), state.state_time, &mut state_animation_rate, skeleton_attr, From ee9044e68cd887486e1b37fe0ce6e7041975c5ec Mon Sep 17 00:00:00 2001 From: jshipsey Date: Tue, 25 Aug 2020 02:57:13 -0400 Subject: [PATCH 06/28] first attempt at adaptive stride system --- voxygen/src/anim/src/quadruped_medium/run.rs | 413 ++++++++----------- 1 file changed, 165 insertions(+), 248 deletions(-) diff --git a/voxygen/src/anim/src/quadruped_medium/run.rs b/voxygen/src/anim/src/quadruped_medium/run.rs index 8e12e0ee01..73dbc40717 100644 --- a/voxygen/src/anim/src/quadruped_medium/run.rs +++ b/voxygen/src/anim/src/quadruped_medium/run.rs @@ -25,39 +25,72 @@ impl Animation for RunAnimation { let speed = Vec2::::from(velocity).magnitude(); *rate = 1.0; let lab = 0.6; //6 - - let speedmult = if speed > 8.0 { + let amplitude = (speed / 24.0).max(0.25); + let amplitude2 = (speed * 1.4 / 24.0).min(0.8); + let amplitude3 = (speed / 24.0).min(0.7); + let speedmult = if speed > 0.0 { 1.2 * (1.0 * skeleton_attr.tempo) } else { 0.9 * (1.0 * skeleton_attr.tempo) }; - + //println!("{:?}", avg_speed); + let canceler = speed / 24.0; let short = (((1.0) / (0.72 + 0.28 - * ((anim_time as f32 * 16.0 * lab as f32 * speedmult + PI * 1.0).sin()) + * ((anim_time as f32 * 16.0 * lab as f32 * speedmult + PI * -0.15).sin()) .powf(2.0 as f32))) .sqrt()) - * ((anim_time as f32 * 16.0 * lab as f32 * speedmult + PI * 1.0).sin()); + * ((anim_time as f32 * 16.0 * lab as f32 * speedmult + PI * -0.15).sin()); // + let shortalt = (anim_time as f32 * 16.0 * lab as f32 * speedmult + PI * 0.35).sin(); - let shortalt = (anim_time as f32 * 16.0 * lab as f32 * speedmult + PI * 0.5).sin(); + let noisify1 = (anim_time as f32 * 13.0 * lab as f32 * speedmult).sin() * 0.1; + let noisify2 = (anim_time as f32 * 17.0 * lab as f32 * speedmult).sin() * 0.1; - let footvert = (anim_time as f32 * 16.0 * lab as f32 * speedmult + PI * 0.0).sin(); - let footvertt = (anim_time as f32 * 16.0 * lab as f32 * speedmult + PI * 0.4).sin(); - let footvertalt = (anim_time as f32 * 16.0 * lab as f32 * speedmult + PI * 1.2).sin(); - let footverttalt = (anim_time as f32 * 16.0 * lab as f32 * speedmult + PI * 1.6).sin(); + let speedadjust = if speed < 5.0 { 0.0 } else { speed }; + let shift1 = speedadjust / 24.0 * 0.0; + let shift2 = speedadjust / 24.0 * PI / -4.0; + let shift3 = speedadjust / 24.0 * PI / 2.0; + let shift4 = speedadjust / 24.0 * PI / 4.0; - let footvertf = (anim_time as f32 * 16.0 * lab as f32 * speedmult + PI * 0.3).sin(); - let footverttf = (anim_time as f32 * 16.0 * lab as f32 * speedmult + PI * 0.7).sin(); - let footvertaltf = (anim_time as f32 * 16.0 * lab as f32 * speedmult + PI * 1.5).sin(); - let footverttaltf = (anim_time as f32 * 16.0 * lab as f32 * speedmult + PI * 1.9).sin(); + //FL + let foot1a = + (anim_time as f32 * 16.0 * lab as f32 * speedmult + noisify1 + PI * (0.0 + shift1)) + .sin(); //1.5 + let foot1b = + (anim_time as f32 * 16.0 * lab as f32 * speedmult + noisify1 + PI * (0.4 + shift1)) + .sin(); //1.9 + + //FR + let foot2a = (anim_time as f32 * 16.0 * lab as f32 * speedmult + + noisify2 + + PI * (PI / 4.0 + shift2)) + .sin(); //1.2 + let foot2b = (anim_time as f32 * 16.0 * lab as f32 * speedmult + + noisify2 + + PI * (0.4 + PI / 4.0 + shift2)) + .sin(); //1.6 + + //BL + let foot3a = + (anim_time as f32 * 16.0 * lab as f32 * speedmult + noisify1 + PI * (0.0 + shift3)) + .sin(); //0.0 + let foot3b = + (anim_time as f32 * 16.0 * lab as f32 * speedmult + noisify1 + PI * (0.4 + shift3)) + .sin(); //0.4 + + //BR + let foot4a = (anim_time as f32 * 16.0 * lab as f32 * speedmult + + noisify2 + + PI * (0.0 + PI / 4.0 + shift4)) + .sin(); //0.3 + let foot4b = (anim_time as f32 * 16.0 * lab as f32 * speedmult + + noisify2 + + PI * (0.4 + PI / 4.0 + shift4)) + .sin(); //0.7 - let footvertfslow = (anim_time as f32 * 16.0 * lab as f32 * speedmult + PI * 0.6).sin(); - let footverttfslow = (anim_time as f32 * 16.0 * lab as f32 * speedmult + PI * 1.0).sin(); - let footvertaltfslow = (anim_time as f32 * 16.0 * lab as f32 * speedmult + PI * 1.8).sin(); - let footverttaltfslow = (anim_time as f32 * 16.0 * lab as f32 * speedmult + PI * 2.2).sin(); // let ori: Vec2 = Vec2::from(orientation); let last_ori = Vec2::from(last_ori); @@ -73,253 +106,137 @@ impl Animation for RunAnimation { 0.0 } * 1.3; let x_tilt = avg_vel.z.atan2(avg_vel.xy().magnitude()); - if speed < 8.0 { - //Trot - next.head_upper.position = - Vec3::new(0.0, skeleton_attr.head_upper.0, skeleton_attr.head_upper.1); - next.head_upper.orientation = - Quaternion::rotation_x(short * -0.03 - 0.1 + x_tilt * -0.5) - * Quaternion::rotation_z(tilt * -1.2); - next.head_upper.scale = Vec3::one(); - next.head_lower.position = - Vec3::new(0.0, skeleton_attr.head_lower.0, skeleton_attr.head_lower.1); - next.head_lower.orientation = Quaternion::rotation_z(tilt * -0.8) - * Quaternion::rotation_x(short * -0.05 + x_tilt * -0.5); - next.head_lower.scale = Vec3::one() * 1.02; + //Gallop + next.head_upper.position = + Vec3::new(0.0, skeleton_attr.head_upper.0, skeleton_attr.head_upper.1); + next.head_upper.orientation = Quaternion::rotation_x(amplitude * short * -0.03 - 0.1) + * Quaternion::rotation_z(tilt * -1.2) + * Quaternion::rotation_y(tilt * 0.8); + next.head_upper.scale = Vec3::one(); - next.jaw.position = Vec3::new(0.0, skeleton_attr.jaw.0, skeleton_attr.jaw.1); - next.jaw.orientation = Quaternion::rotation_x(0.0); - next.jaw.scale = Vec3::one() * 1.02; + next.head_lower.position = + Vec3::new(0.0, skeleton_attr.head_lower.0, skeleton_attr.head_lower.1); + next.head_lower.orientation = Quaternion::rotation_z(tilt * -0.8) + * Quaternion::rotation_x(amplitude * short * -0.05) + * Quaternion::rotation_y(tilt * 0.3); + next.head_lower.scale = Vec3::one() * 1.02; - next.tail.position = Vec3::new(0.0, skeleton_attr.tail.0, skeleton_attr.tail.1); - next.tail.orientation = - Quaternion::rotation_x(shortalt * 0.3) * Quaternion::rotation_z(tilt * 1.5); - next.tail.scale = Vec3::one(); + next.jaw.position = Vec3::new(0.0, skeleton_attr.jaw.0, skeleton_attr.jaw.1); + next.jaw.orientation = Quaternion::rotation_x(0.0); + next.jaw.scale = Vec3::one() * 1.02; - next.torso_front.position = Vec3::new( - 0.0, - skeleton_attr.torso_front.0, - skeleton_attr.torso_front.1 + shortalt * 1.0 + x_tilt, - ) * skeleton_attr.scaler - / 11.0; - next.torso_front.orientation = Quaternion::rotation_x(short * 0.03 + x_tilt) - * Quaternion::rotation_y(0.0) - * Quaternion::rotation_z(tilt * -1.5); - next.torso_front.scale = Vec3::one() * skeleton_attr.scaler / 11.0; + next.tail.position = Vec3::new(0.0, skeleton_attr.tail.0, skeleton_attr.tail.1); + next.tail.orientation = + Quaternion::rotation_x(shortalt * 0.3) * Quaternion::rotation_z(tilt * 1.5); + next.tail.scale = Vec3::one(); - next.torso_back.position = Vec3::new( - 0.0, - skeleton_attr.torso_back.0, - skeleton_attr.torso_back.1 + shortalt * 0.04 - 0.2, - ); - next.torso_back.orientation = - Quaternion::rotation_x(short * 0.06) * Quaternion::rotation_z(tilt * 1.8); - next.torso_back.scale = Vec3::one(); + next.torso_front.position = Vec3::new( + 0.0, + skeleton_attr.torso_front.0, + skeleton_attr.torso_front.1 + canceler * shortalt * 2.5 + x_tilt * 10.0, + ) * skeleton_attr.scaler + / 11.0; + next.torso_front.orientation = Quaternion::rotation_x(amplitude * short * -0.13 + x_tilt) + * Quaternion::rotation_y(tilt * 0.8) + * Quaternion::rotation_z(tilt * -1.5); + next.torso_front.scale = Vec3::one() * skeleton_attr.scaler / 11.0; - next.ears.position = Vec3::new(0.0, skeleton_attr.ears.0, skeleton_attr.ears.1); - next.ears.orientation = Quaternion::rotation_x(shortalt * 0.04 + 0.2); - next.ears.scale = Vec3::one() * 1.02; + next.torso_back.position = Vec3::new( + 0.0, + skeleton_attr.torso_back.0, + skeleton_attr.torso_back.1 + amplitude * shortalt * 0.2 - 0.2, + ); + next.torso_back.orientation = Quaternion::rotation_x(amplitude * short * -0.1) + * Quaternion::rotation_z(tilt * 1.8) + * Quaternion::rotation_y(tilt * 0.6); + next.torso_back.scale = Vec3::one(); - next.leg_fl.position = Vec3::new( - -skeleton_attr.leg_f.0, - skeleton_attr.leg_f.1 + footvertaltfslow * -1.4, - skeleton_attr.leg_f.2 + 1.0 + footverttaltfslow * -0.3, - ); - next.leg_fl.orientation = Quaternion::rotation_x(footverttaltfslow * -0.35) - * Quaternion::rotation_z(tilt * -0.5); - next.leg_fl.scale = Vec3::one() * 1.02; + next.ears.position = Vec3::new(0.0, skeleton_attr.ears.0, skeleton_attr.ears.1); + next.ears.orientation = Quaternion::rotation_x(amplitude * shortalt * 0.2 + 0.2); + next.ears.scale = Vec3::one() * 1.02; - next.leg_fr.position = Vec3::new( - skeleton_attr.leg_f.0, - skeleton_attr.leg_f.1 + footvertalt * -1.4, - skeleton_attr.leg_f.2 + 1.0 + footverttalt * -0.3, - ); - next.leg_fr.orientation = - Quaternion::rotation_x(footverttalt * -0.35) * Quaternion::rotation_z(tilt * -0.5); - next.leg_fr.scale = Vec3::one() * 1.02; + next.leg_fl.position = Vec3::new( + -skeleton_attr.leg_f.0, + skeleton_attr.leg_f.1 + amplitude3 * foot1a * -1.3, + skeleton_attr.leg_f.2 + canceler + amplitude3 * foot1b * -1.9, + ); + next.leg_fl.orientation = Quaternion::rotation_x(amplitude3 * foot1b * -0.65) + * Quaternion::rotation_z(tilt * -0.5) + * Quaternion::rotation_y(tilt * 1.5); + next.leg_fl.scale = Vec3::one() * 1.02; - next.leg_bl.position = Vec3::new( - -skeleton_attr.leg_b.0, - skeleton_attr.leg_b.1 + footvertalt * -1.0, - skeleton_attr.leg_b.2 + 1.0 + footverttalt * -0.3, - ); - next.leg_bl.orientation = - Quaternion::rotation_x(footverttalt * -0.2) * Quaternion::rotation_z(tilt * -1.5); - next.leg_bl.scale = Vec3::one() * 1.02; + next.leg_fr.position = Vec3::new( + skeleton_attr.leg_f.0, + skeleton_attr.leg_f.1 + amplitude3 * foot2a * -1.3, + skeleton_attr.leg_f.2 + canceler + amplitude3 * foot2b * -1.9, + ); + next.leg_fr.orientation = Quaternion::rotation_x(amplitude3 * foot2b * -0.65) + * Quaternion::rotation_z(tilt * -0.5) + * Quaternion::rotation_y(tilt * 1.5); + next.leg_fr.scale = Vec3::one() * 1.02; - next.leg_br.position = Vec3::new( - skeleton_attr.leg_b.0, - skeleton_attr.leg_b.1 + footvertaltfslow * -1.0, - skeleton_attr.leg_b.2 + 1.0 + footverttaltfslow * -0.3, - ); - next.leg_br.orientation = Quaternion::rotation_x(footverttaltfslow * -0.2) - * Quaternion::rotation_z(tilt * -1.5); - next.leg_br.scale = Vec3::one() * 1.02; + next.leg_bl.position = Vec3::new( + -skeleton_attr.leg_b.0, + skeleton_attr.leg_b.1 + amplitude3 * foot3a * -1.7, + skeleton_attr.leg_b.2 + canceler + amplitude3 * foot3b * -1.9, + ); + next.leg_bl.orientation = Quaternion::rotation_x(amplitude3 * foot3b * -0.45 - 0.2) + * Quaternion::rotation_y(tilt * 1.5) + * Quaternion::rotation_z(tilt * -1.5); + next.leg_bl.scale = Vec3::one() * 1.02; - next.foot_fl.position = Vec3::new( - -skeleton_attr.feet_f.0, - skeleton_attr.feet_f.1, - skeleton_attr.feet_f.2 + ((footvertfslow * -1.0 * skeleton_attr.maximize).max(0.0)), - ); - next.foot_fl.orientation = - Quaternion::rotation_x((1.0 - skeleton_attr.dampen) * -1.0 + footverttfslow * 0.5); - next.foot_fl.scale = Vec3::one() * 0.96; + next.leg_br.position = Vec3::new( + skeleton_attr.leg_b.0, + skeleton_attr.leg_b.1 + amplitude3 * foot4a * -1.7, + skeleton_attr.leg_b.2 + canceler + amplitude3 * foot4b * -1.9, + ); + next.leg_br.orientation = Quaternion::rotation_x(amplitude3 * foot4b * -0.45 - 0.2) + * Quaternion::rotation_y(tilt * 1.5) + * Quaternion::rotation_z(tilt * -1.5); + next.leg_br.scale = Vec3::one() * 1.02; - next.foot_fr.position = Vec3::new( - skeleton_attr.feet_f.0, - skeleton_attr.feet_f.1, - skeleton_attr.feet_f.2 + ((footvert * -1.0 * skeleton_attr.maximize).max(0.0)), - ); - next.foot_fr.orientation = - Quaternion::rotation_x((1.0 - skeleton_attr.dampen) * -1.0 + footvertt * 0.5); - next.foot_fr.scale = Vec3::one() * 0.96; + next.foot_fl.position = Vec3::new( + -skeleton_attr.feet_f.0, + skeleton_attr.feet_f.1, + skeleton_attr.feet_f.2 + + ((amplitude2 * foot1a * 2.7 * skeleton_attr.maximize).max(0.0)), + ); + next.foot_fl.orientation = Quaternion::rotation_x( + (1.0 - skeleton_attr.dampen) * -1.0 + amplitude2 * foot1b * -0.9, + ) * Quaternion::rotation_y(tilt * -1.0); + next.foot_fl.scale = Vec3::one() * 0.96; - next.foot_bl.position = Vec3::new( - -skeleton_attr.feet_b.0, - skeleton_attr.feet_b.1, - skeleton_attr.feet_b.2 + ((footvert * -1.8).max(0.0)), - ); - next.foot_bl.orientation = Quaternion::rotation_x(footvertt * 0.5 - 0.2); - next.foot_bl.scale = Vec3::one() * 0.96; + next.foot_fr.position = Vec3::new( + skeleton_attr.feet_f.0, + skeleton_attr.feet_f.1, + skeleton_attr.feet_f.2 + + ((amplitude2 * foot2a * 2.7 * skeleton_attr.maximize).max(0.0)), + ); + next.foot_fr.orientation = Quaternion::rotation_x( + (1.0 - skeleton_attr.dampen) * -1.0 + amplitude2 * foot2b * -0.9, + ) * Quaternion::rotation_y(tilt * -1.0); + next.foot_fr.scale = Vec3::one() * 0.96; - next.foot_br.position = Vec3::new( - skeleton_attr.feet_b.0, - skeleton_attr.feet_b.1, - skeleton_attr.feet_b.2 + ((footvertfslow * -0.8).max(-0.0)), - ); - next.foot_br.orientation = Quaternion::rotation_x(footverttfslow * 0.5 - 0.2); - next.foot_br.scale = Vec3::one() * 0.96; - } else { - let x_tilt = avg_vel.z.atan2(avg_vel.xy().magnitude()); - - //Gallop - next.head_upper.position = - Vec3::new(0.0, skeleton_attr.head_upper.0, skeleton_attr.head_upper.1); - next.head_upper.orientation = Quaternion::rotation_x(short * -0.03 - 0.1) - * Quaternion::rotation_z(tilt * -1.2) - * Quaternion::rotation_y(tilt * 0.8); - next.head_upper.scale = Vec3::one(); - - next.head_lower.position = - Vec3::new(0.0, skeleton_attr.head_lower.0, skeleton_attr.head_lower.1); - next.head_lower.orientation = Quaternion::rotation_z(tilt * -0.8) - * Quaternion::rotation_x(short * -0.05) - * Quaternion::rotation_y(tilt * 0.3); - next.head_lower.scale = Vec3::one() * 1.02; - - next.jaw.position = Vec3::new(0.0, skeleton_attr.jaw.0, skeleton_attr.jaw.1); - next.jaw.orientation = Quaternion::rotation_x(0.0); - next.jaw.scale = Vec3::one() * 1.02; - - next.tail.position = Vec3::new(0.0, skeleton_attr.tail.0, skeleton_attr.tail.1); - next.tail.orientation = - Quaternion::rotation_x(shortalt * 0.3) * Quaternion::rotation_z(tilt * 1.5); - next.tail.scale = Vec3::one(); - - next.torso_front.position = Vec3::new( - 0.0, - skeleton_attr.torso_front.0, - skeleton_attr.torso_front.1 + shortalt * 2.5 + x_tilt * 10.0, - ) * skeleton_attr.scaler - / 11.0; - next.torso_front.orientation = Quaternion::rotation_x(short * 0.13 + x_tilt) - * Quaternion::rotation_y(tilt * 0.8) - * Quaternion::rotation_z(tilt * -1.5); - next.torso_front.scale = Vec3::one() * skeleton_attr.scaler / 11.0; - - next.torso_back.position = Vec3::new( - 0.0, - skeleton_attr.torso_back.0, - skeleton_attr.torso_back.1 + shortalt * 0.2 - 0.2, - ); - next.torso_back.orientation = Quaternion::rotation_x(short * 0.1) - * Quaternion::rotation_z(tilt * 1.8) - * Quaternion::rotation_y(tilt * 0.6); - next.torso_back.scale = Vec3::one(); - - next.ears.position = Vec3::new(0.0, skeleton_attr.ears.0, skeleton_attr.ears.1); - next.ears.orientation = Quaternion::rotation_x(shortalt * 0.2 + 0.2); - next.ears.scale = Vec3::one() * 1.02; - - next.leg_fl.position = Vec3::new( - -skeleton_attr.leg_f.0, - skeleton_attr.leg_f.1 + footvertaltf * -1.3, - skeleton_attr.leg_f.2 + 1.0 + footverttaltf * -1.9, - ); - next.leg_fl.orientation = Quaternion::rotation_x(footverttaltf * -0.65) - * Quaternion::rotation_z(tilt * -0.5) - * Quaternion::rotation_y(tilt * 1.5); - next.leg_fl.scale = Vec3::one() * 1.02; - - next.leg_fr.position = Vec3::new( - skeleton_attr.leg_f.0, - skeleton_attr.leg_f.1 + footvertalt * -1.3, - skeleton_attr.leg_f.2 + 1.0 + footverttalt * -1.9, - ); - next.leg_fr.orientation = Quaternion::rotation_x(footverttalt * -0.65) - * Quaternion::rotation_z(tilt * -0.5) - * Quaternion::rotation_y(tilt * 1.5); - next.leg_fr.scale = Vec3::one() * 1.02; - - next.leg_bl.position = Vec3::new( - -skeleton_attr.leg_b.0, - skeleton_attr.leg_b.1 + footvert * -1.7, - skeleton_attr.leg_b.2 + 1.0 + footvertt * -1.5, - ); - next.leg_bl.orientation = Quaternion::rotation_x(footvertt * -0.45 - 0.2) - * Quaternion::rotation_y(tilt * 1.5) - * Quaternion::rotation_z(tilt * -1.5); - next.leg_bl.scale = Vec3::one() * 1.02; - - next.leg_br.position = Vec3::new( - skeleton_attr.leg_b.0, - skeleton_attr.leg_b.1 + footvertf * -1.7, - skeleton_attr.leg_b.2 + 1.0 + footverttf * -1.5, - ); - next.leg_br.orientation = Quaternion::rotation_x(footverttf * -0.45 - 0.2) - * Quaternion::rotation_y(tilt * 1.5) - * Quaternion::rotation_z(tilt * -1.5); - next.leg_br.scale = Vec3::one() * 1.02; - - next.foot_fl.position = Vec3::new( - -skeleton_attr.feet_f.0, - skeleton_attr.feet_f.1, - skeleton_attr.feet_f.2 + ((footvertf * -2.7 * skeleton_attr.maximize).max(0.0)), - ); - next.foot_fl.orientation = - Quaternion::rotation_x((1.0 - skeleton_attr.dampen) * -1.0 + footverttf * 0.9) - * Quaternion::rotation_y(tilt * -1.0); - next.foot_fl.scale = Vec3::one() * 0.96; - - next.foot_fr.position = Vec3::new( - skeleton_attr.feet_f.0, - skeleton_attr.feet_f.1, - skeleton_attr.feet_f.2 + ((footvert * -2.7 * skeleton_attr.maximize).max(0.0)), - ); - next.foot_fr.orientation = - Quaternion::rotation_x((1.0 - skeleton_attr.dampen) * -1.0 + footvertt * 0.9) - * Quaternion::rotation_y(tilt * -1.0); - next.foot_fr.scale = Vec3::one() * 0.96; - - next.foot_bl.position = Vec3::new( - -skeleton_attr.feet_b.0, - skeleton_attr.feet_b.1, - skeleton_attr.feet_b.2 + ((footvert * 1.3).max(0.0)), - ); - next.foot_bl.orientation = Quaternion::rotation_x(footvertt * -0.9 - 0.2) + next.foot_bl.position = Vec3::new( + -skeleton_attr.feet_b.0, + skeleton_attr.feet_b.1, + skeleton_attr.feet_b.2 + ((amplitude2 * foot3a * 1.8).max(-0.0)), + ); + next.foot_bl.orientation = + Quaternion::rotation_x(amplitude2 * foot3b * -1.3 - 0.2 * speed / 24.0) * Quaternion::rotation_y(tilt * -1.0); - next.foot_bl.scale = Vec3::one() * 0.96; + next.foot_bl.scale = Vec3::one() * 0.96; - next.foot_br.position = Vec3::new( - skeleton_attr.feet_b.0, - skeleton_attr.feet_b.1, - skeleton_attr.feet_b.2 + ((footvertf * 1.3).max(-0.0)), - ); - next.foot_br.orientation = Quaternion::rotation_x(footverttf * -0.9 - 0.2) + next.foot_br.position = Vec3::new( + skeleton_attr.feet_b.0, + skeleton_attr.feet_b.1, + skeleton_attr.feet_b.2 + ((amplitude2 * foot4a * 1.8).max(0.0)), + ); + next.foot_br.orientation = + Quaternion::rotation_x(amplitude2 * foot4b * -1.3 - 0.2 * speed / 24.0) * Quaternion::rotation_y(tilt * -1.0); - next.foot_br.scale = Vec3::one() * 0.96; - } + next.foot_br.scale = Vec3::one() * 0.96; next } } From 3641932573ce173d7c90e358a34fff6e98f1cf7c Mon Sep 17 00:00:00 2001 From: jshipsey Date: Wed, 26 Aug 2020 02:47:21 -0400 Subject: [PATCH 07/28] refining pace setup. refined species anim variables --- voxygen/src/anim/src/quadruped_medium/mod.rs | 6 +- voxygen/src/anim/src/quadruped_medium/run.rs | 133 ++++++++++--------- 2 files changed, 76 insertions(+), 63 deletions(-) diff --git a/voxygen/src/anim/src/quadruped_medium/mod.rs b/voxygen/src/anim/src/quadruped_medium/mod.rs index 78311579d3..abc6a4b275 100644 --- a/voxygen/src/anim/src/quadruped_medium/mod.rs +++ b/voxygen/src/anim/src/quadruped_medium/mod.rs @@ -229,7 +229,7 @@ impl<'a> From<&'a Body> for SkeletonAttr { (Lion, _) => (6.5, -6.5, -2.0), (Tarasque, _) => (7.0, -8.0, -6.0), (Tiger, _) => (6.0, -5.0, -3.0), - (Wolf, _) => (4.5, -6.5, -1.0), + (Wolf, _) => (4.5, -6.5, -1.5), (Frostfang, _) => (5.5, -5.5, -2.0), (Mouflon, _) => (4.0, -5.0, -5.0), (Catoblepas, _) => (7.0, 2.0, -6.0), @@ -242,7 +242,7 @@ impl<'a> From<&'a Body> for SkeletonAttr { (Lion, _) => (6.0, -6.0, -2.0), (Tarasque, _) => (6.0, -6.5, -6.5), (Tiger, _) => (6.0, -7.5, -3.0), - (Wolf, _) => (5.0, -6.5, -2.5), + (Wolf, _) => (5.0, -6.5, -3.0), (Frostfang, _) => (3.5, -4.5, -2.0), (Mouflon, _) => (3.5, -8.0, -4.5), (Catoblepas, _) => (6.0, -2.5, -2.5), @@ -310,7 +310,7 @@ impl<'a> From<&'a Body> for SkeletonAttr { (Wolf, _) => (1.0), (Frostfang, _) => (1.2), (Mouflon, _) => (1.1), - (Catoblepas, _) => (0.9), + (Catoblepas, _) => (0.0), (Bonerattler, _) => (0.8), }, tempo: match (body.species, body.body_type) { diff --git a/voxygen/src/anim/src/quadruped_medium/run.rs b/voxygen/src/anim/src/quadruped_medium/run.rs index 73dbc40717..699d478c98 100644 --- a/voxygen/src/anim/src/quadruped_medium/run.rs +++ b/voxygen/src/anim/src/quadruped_medium/run.rs @@ -2,7 +2,7 @@ use super::{ super::{vek::*, Animation}, QuadrupedMediumSkeleton, SkeletonAttr, }; -use std::f32::consts::PI; +use std::{f32::consts::PI, ops::Mul}; pub struct RunAnimation; @@ -16,7 +16,7 @@ impl Animation for RunAnimation { #[cfg_attr(feature = "be-dyn-lib", export_name = "quadruped_medium_run")] fn update_skeleton_inner( skeleton: &Self::Skeleton, - (velocity, orientation, last_ori, _global_time, avg_vel): Self::Dependency, + (velocity, orientation, last_ori, global_time, avg_vel): Self::Dependency, anim_time: f64, rate: &mut f32, skeleton_attr: &SkeletonAttr, @@ -24,30 +24,39 @@ impl Animation for RunAnimation { let mut next = (*skeleton).clone(); let speed = Vec2::::from(velocity).magnitude(); *rate = 1.0; + //let increasefreqtest = (((1.0/speed)*3.0).round()).min(5.0); let lab = 0.6; //6 let amplitude = (speed / 24.0).max(0.25); - let amplitude2 = (speed * 1.4 / 24.0).min(0.8); - let amplitude3 = (speed / 24.0).min(0.7); + let amplitude2 = (speed * 1.4 / 24.0).max(0.6); + let amplitude3 = (speed / 24.0).max(0.35); let speedmult = if speed > 0.0 { 1.2 * (1.0 * skeleton_attr.tempo) } else { 0.9 * (1.0 * skeleton_attr.tempo) }; - //println!("{:?}", avg_speed); let canceler = speed / 24.0; let short = (((1.0) / (0.72 + 0.28 - * ((anim_time as f32 * 16.0 * lab as f32 * speedmult + PI * -0.15).sin()) + * ((anim_time as f32 * (16.0) * lab as f32 * speedmult + PI * -0.15).sin()) .powf(2.0 as f32))) .sqrt()) - * ((anim_time as f32 * 16.0 * lab as f32 * speedmult + PI * -0.15).sin()); + * ((anim_time as f32 * (16.0) * lab as f32 * speedmult + PI * -0.15).sin()); // - let shortalt = (anim_time as f32 * 16.0 * lab as f32 * speedmult + PI * 0.35).sin(); - - let noisify1 = (anim_time as f32 * 13.0 * lab as f32 * speedmult).sin() * 0.1; - let noisify2 = (anim_time as f32 * 17.0 * lab as f32 * speedmult).sin() * 0.1; + let shortalt = (anim_time as f32 * (16.0) * lab as f32 * speedmult + PI * 0.35).sin(); + let look = Vec2::new( + ((global_time + anim_time) as f32 / 2.0) + .floor() + .mul(7331.0) + .sin() + * 0.5, + ((global_time + anim_time) as f32 / 2.0) + .floor() + .mul(1337.0) + .sin() + * 0.25, + ); let speedadjust = if speed < 5.0 { 0.0 } else { speed }; let shift1 = speedadjust / 24.0 * 0.0; @@ -56,39 +65,32 @@ impl Animation for RunAnimation { let shift4 = speedadjust / 24.0 * PI / 4.0; //FL - let foot1a = - (anim_time as f32 * 16.0 * lab as f32 * speedmult + noisify1 + PI * (0.0 + shift1)) - .sin(); //1.5 - let foot1b = - (anim_time as f32 * 16.0 * lab as f32 * speedmult + noisify1 + PI * (0.4 + shift1)) - .sin(); //1.9 + let foot1a = (anim_time as f32 * (16.0) * lab as f32 * speedmult + + PI * (0.0 + canceler * 0.08 + shift1)) + .sin(); //1.5 + let foot1b = (anim_time as f32 * (16.0) * lab as f32 * speedmult + + PI * (0.4 + canceler * 0.08 + shift1)) + .sin(); //1.9 //FR - let foot2a = (anim_time as f32 * 16.0 * lab as f32 * speedmult - + noisify2 - + PI * (PI / 4.0 + shift2)) - .sin(); //1.2 - let foot2b = (anim_time as f32 * 16.0 * lab as f32 * speedmult - + noisify2 + let foot2a = + (anim_time as f32 * (16.0) * lab as f32 * speedmult + PI * (PI / 4.0 + shift2)).sin(); //1.2 + let foot2b = (anim_time as f32 * (16.0) * lab as f32 * speedmult + PI * (0.4 + PI / 4.0 + shift2)) .sin(); //1.6 //BL let foot3a = - (anim_time as f32 * 16.0 * lab as f32 * speedmult + noisify1 + PI * (0.0 + shift3)) - .sin(); //0.0 + (anim_time as f32 * (16.0) * lab as f32 * speedmult + PI * (0.0 + shift3)).sin(); //0.0 let foot3b = - (anim_time as f32 * 16.0 * lab as f32 * speedmult + noisify1 + PI * (0.4 + shift3)) - .sin(); //0.4 + (anim_time as f32 * (16.0) * lab as f32 * speedmult + PI * (0.4 + shift3)).sin(); //0.4 //BR - let foot4a = (anim_time as f32 * 16.0 * lab as f32 * speedmult - + noisify2 - + PI * (0.0 + PI / 4.0 + shift4)) + let foot4a = (anim_time as f32 * (16.0) * lab as f32 * speedmult + + PI * (0.0 + canceler * 0.15 + PI / 4.0 + shift4)) .sin(); //0.3 - let foot4b = (anim_time as f32 * 16.0 * lab as f32 * speedmult - + noisify2 - + PI * (0.4 + PI / 4.0 + shift4)) + let foot4b = (anim_time as f32 * (16.0) * lab as f32 * speedmult + + PI * (0.4 + canceler * 0.15 + PI / 4.0 + shift4)) .sin(); //0.7 // @@ -110,9 +112,10 @@ impl Animation for RunAnimation { //Gallop next.head_upper.position = Vec3::new(0.0, skeleton_attr.head_upper.0, skeleton_attr.head_upper.1); - next.head_upper.orientation = Quaternion::rotation_x(amplitude * short * -0.03 - 0.1) - * Quaternion::rotation_z(tilt * -1.2) - * Quaternion::rotation_y(tilt * 0.8); + next.head_upper.orientation = + Quaternion::rotation_x(look.y * 0.1 / canceler + amplitude * short * -0.03 - 0.1) + * Quaternion::rotation_z(look.x * 0.1 / canceler + tilt * -1.2) + * Quaternion::rotation_y(tilt * 0.8); next.head_upper.scale = Vec3::one(); next.head_lower.position = @@ -134,12 +137,16 @@ impl Animation for RunAnimation { next.torso_front.position = Vec3::new( 0.0, skeleton_attr.torso_front.0, - skeleton_attr.torso_front.1 + canceler * shortalt * 2.5 + x_tilt * 10.0, + skeleton_attr.torso_front.1 + + canceler * 1.0 + + canceler * shortalt * 2.5 + + x_tilt * 10.0, ) * skeleton_attr.scaler / 11.0; - next.torso_front.orientation = Quaternion::rotation_x(amplitude * short * -0.13 + x_tilt) - * Quaternion::rotation_y(tilt * 0.8) - * Quaternion::rotation_z(tilt * -1.5); + next.torso_front.orientation = + Quaternion::rotation_x((amplitude * (short * -0.13).max(-0.2)) + x_tilt) + * Quaternion::rotation_y(tilt * 0.8) + * Quaternion::rotation_z(tilt * -1.5); next.torso_front.scale = Vec3::one() * skeleton_attr.scaler / 11.0; next.torso_back.position = Vec3::new( @@ -161,7 +168,7 @@ impl Animation for RunAnimation { skeleton_attr.leg_f.1 + amplitude3 * foot1a * -1.3, skeleton_attr.leg_f.2 + canceler + amplitude3 * foot1b * -1.9, ); - next.leg_fl.orientation = Quaternion::rotation_x(amplitude3 * foot1b * -0.65) + next.leg_fl.orientation = Quaternion::rotation_x(amplitude3 * foot1b * -0.55) * Quaternion::rotation_z(tilt * -0.5) * Quaternion::rotation_y(tilt * 1.5); next.leg_fl.scale = Vec3::one() * 1.02; @@ -171,39 +178,43 @@ impl Animation for RunAnimation { skeleton_attr.leg_f.1 + amplitude3 * foot2a * -1.3, skeleton_attr.leg_f.2 + canceler + amplitude3 * foot2b * -1.9, ); - next.leg_fr.orientation = Quaternion::rotation_x(amplitude3 * foot2b * -0.65) + next.leg_fr.orientation = Quaternion::rotation_x(amplitude3 * foot2b * -0.55) * Quaternion::rotation_z(tilt * -0.5) * Quaternion::rotation_y(tilt * 1.5); next.leg_fr.scale = Vec3::one() * 1.02; next.leg_bl.position = Vec3::new( -skeleton_attr.leg_b.0, - skeleton_attr.leg_b.1 + amplitude3 * foot3a * -1.7, - skeleton_attr.leg_b.2 + canceler + amplitude3 * foot3b * -1.9, + skeleton_attr.leg_b.1 + amplitude3 * foot3a * -1.9, + skeleton_attr.leg_b.2 + canceler + amplitude3 * ((foot3b * -2.6).min(1.0)), ); - next.leg_bl.orientation = Quaternion::rotation_x(amplitude3 * foot3b * -0.45 - 0.2) - * Quaternion::rotation_y(tilt * 1.5) - * Quaternion::rotation_z(tilt * -1.5); + next.leg_bl.orientation = + Quaternion::rotation_x(amplitude3 * foot3b * -0.5 - 0.2 * canceler) + * Quaternion::rotation_y(tilt * 1.5) + * Quaternion::rotation_z(tilt * -1.5); next.leg_bl.scale = Vec3::one() * 1.02; next.leg_br.position = Vec3::new( skeleton_attr.leg_b.0, - skeleton_attr.leg_b.1 + amplitude3 * foot4a * -1.7, - skeleton_attr.leg_b.2 + canceler + amplitude3 * foot4b * -1.9, + skeleton_attr.leg_b.1 + amplitude3 * foot4a * -1.9, + skeleton_attr.leg_b.2 + canceler + amplitude3 * ((foot4b * -2.6).min(1.0)), ); - next.leg_br.orientation = Quaternion::rotation_x(amplitude3 * foot4b * -0.45 - 0.2) - * Quaternion::rotation_y(tilt * 1.5) - * Quaternion::rotation_z(tilt * -1.5); + next.leg_br.orientation = + Quaternion::rotation_x(amplitude3 * foot4b * -0.5 - 0.2 * canceler) + * Quaternion::rotation_y(tilt * 1.5) + * Quaternion::rotation_z(tilt * -1.5); next.leg_br.scale = Vec3::one() * 1.02; next.foot_fl.position = Vec3::new( -skeleton_attr.feet_f.0, skeleton_attr.feet_f.1, skeleton_attr.feet_f.2 - + ((amplitude2 * foot1a * 2.7 * skeleton_attr.maximize).max(0.0)), + + ((amplitude2 * foot1a * 2.7 + + amplitude2 * foot1a * skeleton_attr.maximize * canceler) + .max(0.0)), ); next.foot_fl.orientation = Quaternion::rotation_x( - (1.0 - skeleton_attr.dampen) * -1.0 + amplitude2 * foot1b * -0.9, + ((1.0 - skeleton_attr.dampen) * -1.0) * canceler + amplitude2 * foot1b * -0.7, ) * Quaternion::rotation_y(tilt * -1.0); next.foot_fl.scale = Vec3::one() * 0.96; @@ -211,30 +222,32 @@ impl Animation for RunAnimation { skeleton_attr.feet_f.0, skeleton_attr.feet_f.1, skeleton_attr.feet_f.2 - + ((amplitude2 * foot2a * 2.7 * skeleton_attr.maximize).max(0.0)), + + ((amplitude2 * foot2a * 2.7 + + amplitude2 * foot2a * skeleton_attr.maximize * canceler) + .max(0.0)), ); next.foot_fr.orientation = Quaternion::rotation_x( - (1.0 - skeleton_attr.dampen) * -1.0 + amplitude2 * foot2b * -0.9, + ((1.0 - skeleton_attr.dampen) * -1.0) * canceler + amplitude2 * foot2b * -0.7, ) * Quaternion::rotation_y(tilt * -1.0); next.foot_fr.scale = Vec3::one() * 0.96; next.foot_bl.position = Vec3::new( -skeleton_attr.feet_b.0, skeleton_attr.feet_b.1, - skeleton_attr.feet_b.2 + ((amplitude2 * foot3a * 1.8).max(-0.0)), + skeleton_attr.feet_b.2 + ((amplitude2 * foot3a * 2.5).max(-1.0)), ); next.foot_bl.orientation = - Quaternion::rotation_x(amplitude2 * foot3b * -1.3 - 0.2 * speed / 24.0) + Quaternion::rotation_x(amplitude2 * foot3b * -0.5 - 0.2 * canceler) * Quaternion::rotation_y(tilt * -1.0); next.foot_bl.scale = Vec3::one() * 0.96; next.foot_br.position = Vec3::new( skeleton_attr.feet_b.0, skeleton_attr.feet_b.1, - skeleton_attr.feet_b.2 + ((amplitude2 * foot4a * 1.8).max(0.0)), + skeleton_attr.feet_b.2 + ((amplitude2 * foot4a * 2.5).max(-1.0)), ); next.foot_br.orientation = - Quaternion::rotation_x(amplitude2 * foot4b * -1.3 - 0.2 * speed / 24.0) + Quaternion::rotation_x(amplitude2 * foot4b * -0.5 - 0.2 * canceler) * Quaternion::rotation_y(tilt * -1.0); next.foot_br.scale = Vec3::one() * 0.96; next From 0dd9b714040fecd99b9afb5a328e6d5ba7e2e905 Mon Sep 17 00:00:00 2001 From: Snowram Date: Thu, 27 Aug 2020 03:40:57 +0200 Subject: [PATCH 08/28] Improve adaptative quadmed run --- voxygen/src/anim/src/quadruped_medium/run.rs | 61 +++++++++++--------- 1 file changed, 34 insertions(+), 27 deletions(-) diff --git a/voxygen/src/anim/src/quadruped_medium/run.rs b/voxygen/src/anim/src/quadruped_medium/run.rs index 699d478c98..c9c39061e6 100644 --- a/voxygen/src/anim/src/quadruped_medium/run.rs +++ b/voxygen/src/anim/src/quadruped_medium/run.rs @@ -34,7 +34,7 @@ impl Animation for RunAnimation { } else { 0.9 * (1.0 * skeleton_attr.tempo) }; - let canceler = speed / 24.0; + let canceler = speed / 25.0; let short = (((1.0) / (0.72 + 0.28 @@ -44,7 +44,7 @@ impl Animation for RunAnimation { * ((anim_time as f32 * (16.0) * lab as f32 * speedmult + PI * -0.15).sin()); // - let shortalt = (anim_time as f32 * (16.0) * lab as f32 * speedmult + PI * 0.35).sin(); + let shortalt = (anim_time as f32 * (16.0) * lab as f32 * speedmult + PI * 3.0 / 8.0).sin(); let look = Vec2::new( ((global_time + anim_time) as f32 / 2.0) .floor() @@ -58,39 +58,40 @@ impl Animation for RunAnimation { * 0.25, ); - let speedadjust = if speed < 5.0 { 0.0 } else { speed }; - let shift1 = speedadjust / 24.0 * 0.0; - let shift2 = speedadjust / 24.0 * PI / -4.0; - let shift3 = speedadjust / 24.0 * PI / 2.0; - let shift4 = speedadjust / 24.0 * PI / 4.0; + let speedadjust = if speed < 5.0 { 0.0 } else { speed / 25.0 }; + let shift1 = speedadjust - PI / 2.0 - speedadjust * PI * 3.0 / 4.0; + let shift2 = speedadjust + PI / 2.0 + speedadjust * PI / 2.0; + let shift3 = speedadjust + PI / 4.0 - speedadjust * PI / 4.0; + let shift4 = speedadjust - PI * 3.0 / 4.0 + speedadjust * PI / 2.0; //FL let foot1a = (anim_time as f32 * (16.0) * lab as f32 * speedmult - + PI * (0.0 + canceler * 0.08 + shift1)) + + 0.0 + canceler * 0.08 + shift1) .sin(); //1.5 let foot1b = (anim_time as f32 * (16.0) * lab as f32 * speedmult - + PI * (0.4 + canceler * 0.08 + shift1)) + + 0.4 + canceler * 0.08 + shift1) .sin(); //1.9 //FR let foot2a = - (anim_time as f32 * (16.0) * lab as f32 * speedmult + PI * (PI / 4.0 + shift2)).sin(); //1.2 + (anim_time as f32 * (16.0) * lab as f32 * speedmult + shift2).sin(); //1.2 let foot2b = (anim_time as f32 * (16.0) * lab as f32 * speedmult - + PI * (0.4 + PI / 4.0 + shift2)) + + 0.4 + shift2) .sin(); //1.6 //BL let foot3a = - (anim_time as f32 * (16.0) * lab as f32 * speedmult + PI * (0.0 + shift3)).sin(); //0.0 + (anim_time as f32 * (16.0) * lab as f32 * speedmult + shift3).sin(); //0.0 let foot3b = - (anim_time as f32 * (16.0) * lab as f32 * speedmult + PI * (0.4 + shift3)).sin(); //0.4 + (anim_time as f32 * (16.0) * lab as f32 * speedmult + + 0.4 + shift3).sin(); //0.4 //BR let foot4a = (anim_time as f32 * (16.0) * lab as f32 * speedmult - + PI * (0.0 + canceler * 0.15 + PI / 4.0 + shift4)) + + 0.0 + canceler * 0.15 + shift4) .sin(); //0.3 let foot4b = (anim_time as f32 * (16.0) * lab as f32 * speedmult - + PI * (0.4 + canceler * 0.15 + PI / 4.0 + shift4)) + + 0.4 + canceler * 0.15 + shift4) .sin(); //0.7 // @@ -131,7 +132,7 @@ impl Animation for RunAnimation { next.tail.position = Vec3::new(0.0, skeleton_attr.tail.0, skeleton_attr.tail.1); next.tail.orientation = - Quaternion::rotation_x(shortalt * 0.3) * Quaternion::rotation_z(tilt * 1.5); + Quaternion::rotation_x(amplitude * shortalt * 0.3) * Quaternion::rotation_z(tilt * 1.5); next.tail.scale = Vec3::one(); next.torso_front.position = Vec3::new( @@ -178,7 +179,7 @@ impl Animation for RunAnimation { skeleton_attr.leg_f.1 + amplitude3 * foot2a * -1.3, skeleton_attr.leg_f.2 + canceler + amplitude3 * foot2b * -1.9, ); - next.leg_fr.orientation = Quaternion::rotation_x(amplitude3 * foot2b * -0.55) + next.leg_fr.orientation = Quaternion::rotation_x(amplitude3 * foot2b * -0.5) * Quaternion::rotation_z(tilt * -0.5) * Quaternion::rotation_y(tilt * 1.5); next.leg_fr.scale = Vec3::one() * 1.02; @@ -209,9 +210,10 @@ impl Animation for RunAnimation { -skeleton_attr.feet_f.0, skeleton_attr.feet_f.1, skeleton_attr.feet_f.2 - + ((amplitude2 * foot1a * 2.7 - + amplitude2 * foot1a * skeleton_attr.maximize * canceler) - .max(0.0)), + - ((-6.0 * speedadjust + 3.0).max(0.0) * (foot2a.sin()).min(0.0)) + + ((amplitude2 * foot1a + + amplitude2 * foot1a * skeleton_attr.maximize * canceler) + .max(0.0)), ); next.foot_fl.orientation = Quaternion::rotation_x( ((1.0 - skeleton_attr.dampen) * -1.0) * canceler + amplitude2 * foot1b * -0.7, @@ -221,10 +223,11 @@ impl Animation for RunAnimation { next.foot_fr.position = Vec3::new( skeleton_attr.feet_f.0, skeleton_attr.feet_f.1, - skeleton_attr.feet_f.2 - + ((amplitude2 * foot2a * 2.7 - + amplitude2 * foot2a * skeleton_attr.maximize * canceler) - .max(0.0)), + skeleton_attr.feet_f.2 + - ((-6.0 * speedadjust + 3.0).max(0.0) * (foot4a.sin()).min(0.0)) + + ((amplitude2 * foot2a + + amplitude2 * foot2a * skeleton_attr.maximize * canceler) + .max(0.0)), ); next.foot_fr.orientation = Quaternion::rotation_x( ((1.0 - skeleton_attr.dampen) * -1.0) * canceler + amplitude2 * foot2b * -0.7, @@ -234,17 +237,21 @@ impl Animation for RunAnimation { next.foot_bl.position = Vec3::new( -skeleton_attr.feet_b.0, skeleton_attr.feet_b.1, - skeleton_attr.feet_b.2 + ((amplitude2 * foot3a * 2.5).max(-1.0)), + skeleton_attr.feet_b.2 + + ((amplitude2 * foot3a * 0.5).max(-1.0)) + - ((-6.0 * speedadjust + 3.0).max(0.0) * (foot1a.sin()).min(0.0)), ); next.foot_bl.orientation = Quaternion::rotation_x(amplitude2 * foot3b * -0.5 - 0.2 * canceler) * Quaternion::rotation_y(tilt * -1.0); next.foot_bl.scale = Vec3::one() * 0.96; - + next.foot_br.position = Vec3::new( skeleton_attr.feet_b.0, skeleton_attr.feet_b.1, - skeleton_attr.feet_b.2 + ((amplitude2 * foot4a * 2.5).max(-1.0)), + skeleton_attr.feet_b.2 + + ((amplitude2 * foot4a * 0.5).max(-1.0)) + - ((-6.0 * speedadjust + 3.0).max(0.0) * (foot3a.sin()).min(0.0)), ); next.foot_br.orientation = Quaternion::rotation_x(amplitude2 * foot4b * -0.5 - 0.2 * canceler) From 36c5b3d8b451a223fc0e4e5eb962f391575c9c9d Mon Sep 17 00:00:00 2001 From: jshipsey Date: Fri, 28 Aug 2020 03:12:25 -0400 Subject: [PATCH 09/28] proper cycles on quadmed movement --- voxygen/src/anim/src/quadruped_medium/run.rs | 128 ++++++++----------- 1 file changed, 54 insertions(+), 74 deletions(-) diff --git a/voxygen/src/anim/src/quadruped_medium/run.rs b/voxygen/src/anim/src/quadruped_medium/run.rs index c9c39061e6..310e6d2105 100644 --- a/voxygen/src/anim/src/quadruped_medium/run.rs +++ b/voxygen/src/anim/src/quadruped_medium/run.rs @@ -25,7 +25,7 @@ impl Animation for RunAnimation { let speed = Vec2::::from(velocity).magnitude(); *rate = 1.0; //let increasefreqtest = (((1.0/speed)*3.0).round()).min(5.0); - let lab = 0.6; //6 + let lab = 0.1; //6 let amplitude = (speed / 24.0).max(0.25); let amplitude2 = (speed * 1.4 / 24.0).max(0.6); let amplitude3 = (speed / 24.0).max(0.35); @@ -38,13 +38,15 @@ impl Animation for RunAnimation { let short = (((1.0) / (0.72 + 0.28 - * ((anim_time as f32 * (16.0) * lab as f32 * speedmult + PI * -0.15).sin()) - .powf(2.0 as f32))) + * ((anim_time as f32 * (16.0) * lab as f32 * speedmult + PI * -0.15 - 0.5) + .sin()) + .powf(2.0 as f32))) .sqrt()) - * ((anim_time as f32 * (16.0) * lab as f32 * speedmult + PI * -0.15).sin()); + * ((anim_time as f32 * (16.0) * lab as f32 * speedmult + PI * -0.15 - 0.5).sin()); // - let shortalt = (anim_time as f32 * (16.0) * lab as f32 * speedmult + PI * 3.0 / 8.0).sin(); + let shortalt = + (anim_time as f32 * (16.0) * lab as f32 * speedmult + PI * 3.0 / 8.0 - 0.5).sin(); let look = Vec2::new( ((global_time + anim_time) as f32 / 2.0) .floor() @@ -65,35 +67,25 @@ impl Animation for RunAnimation { let shift4 = speedadjust - PI * 3.0 / 4.0 + speedadjust * PI / 2.0; //FL - let foot1a = (anim_time as f32 * (16.0) * lab as f32 * speedmult - + 0.0 + canceler * 0.08 + shift1) - .sin(); //1.5 - let foot1b = (anim_time as f32 * (16.0) * lab as f32 * speedmult - + 0.4 + canceler * 0.08 + shift1) - .sin(); //1.9 - + let foot1a = + (anim_time as f32 * (16.0) * lab as f32 * speedmult + 0.0 + canceler * 0.08 + shift1) + .sin(); //1.5 + let foot1b = + (anim_time as f32 * (16.0) * lab as f32 * speedmult + 1.57 + canceler * 0.08 + shift1) + .sin(); //1.9 //FR - let foot2a = - (anim_time as f32 * (16.0) * lab as f32 * speedmult + shift2).sin(); //1.2 - let foot2b = (anim_time as f32 * (16.0) * lab as f32 * speedmult - + 0.4 + shift2) - .sin(); //1.6 - + let foot2a = (anim_time as f32 * (16.0) * lab as f32 * speedmult + shift2).sin(); //1.2 + let foot2b = (anim_time as f32 * (16.0) * lab as f32 * speedmult + 1.57 + shift2).sin(); //1.6 //BL - let foot3a = - (anim_time as f32 * (16.0) * lab as f32 * speedmult + shift3).sin(); //0.0 - let foot3b = - (anim_time as f32 * (16.0) * lab as f32 * speedmult - + 0.4 + shift3).sin(); //0.4 - + let foot3a = (anim_time as f32 * (16.0) * lab as f32 * speedmult + shift3).sin(); //0.0 + let foot3b = (anim_time as f32 * (16.0) * lab as f32 * speedmult + 1.57 + shift3).sin(); //0.4 //BR - let foot4a = (anim_time as f32 * (16.0) * lab as f32 * speedmult - + 0.0 + canceler * 0.15 + shift4) - .sin(); //0.3 - let foot4b = (anim_time as f32 * (16.0) * lab as f32 * speedmult - + 0.4 + canceler * 0.15 + shift4) - .sin(); //0.7 - + let foot4a = + (anim_time as f32 * (16.0) * lab as f32 * speedmult + 0.0 + canceler * 0.15 + shift4) + .sin(); //0.3 + let foot4b = + (anim_time as f32 * (16.0) * lab as f32 * speedmult + 1.57 + canceler * 0.15 + shift4) + .sin(); //0.7 // let ori: Vec2 = Vec2::from(orientation); let last_ori = Vec2::from(last_ori); @@ -166,95 +158,83 @@ impl Animation for RunAnimation { next.leg_fl.position = Vec3::new( -skeleton_attr.leg_f.0, - skeleton_attr.leg_f.1 + amplitude3 * foot1a * -1.3, - skeleton_attr.leg_f.2 + canceler + amplitude3 * foot1b * -1.9, + skeleton_attr.leg_f.1 + amplitude3 * foot1b * -1.6, + skeleton_attr.leg_f.2 + amplitude3 * foot1a * 2.3, ); - next.leg_fl.orientation = Quaternion::rotation_x(amplitude3 * foot1b * -0.55) - * Quaternion::rotation_z(tilt * -0.5) - * Quaternion::rotation_y(tilt * 1.5); + next.leg_fl.orientation = + Quaternion::rotation_x(0.2 * canceler + amplitude3 * foot1a * 0.35) + * Quaternion::rotation_z(tilt * -0.5) + * Quaternion::rotation_y(tilt * 1.5); next.leg_fl.scale = Vec3::one() * 1.02; next.leg_fr.position = Vec3::new( skeleton_attr.leg_f.0, - skeleton_attr.leg_f.1 + amplitude3 * foot2a * -1.3, - skeleton_attr.leg_f.2 + canceler + amplitude3 * foot2b * -1.9, + skeleton_attr.leg_f.1 + amplitude3 * foot2b * -2.2, + skeleton_attr.leg_f.2 + amplitude3 * foot2a * 2.8, ); - next.leg_fr.orientation = Quaternion::rotation_x(amplitude3 * foot2b * -0.5) - * Quaternion::rotation_z(tilt * -0.5) - * Quaternion::rotation_y(tilt * 1.5); + next.leg_fr.orientation = + Quaternion::rotation_x(0.2 * canceler + amplitude3 * foot2a * 0.35) + * Quaternion::rotation_z(tilt * -0.5) + * Quaternion::rotation_y(tilt * 1.5); next.leg_fr.scale = Vec3::one() * 1.02; next.leg_bl.position = Vec3::new( -skeleton_attr.leg_b.0, - skeleton_attr.leg_b.1 + amplitude3 * foot3a * -1.9, - skeleton_attr.leg_b.2 + canceler + amplitude3 * ((foot3b * -2.6).min(1.0)), + skeleton_attr.leg_b.1 + amplitude3 * foot3b * -1.1, + skeleton_attr.leg_b.2 + canceler + amplitude3 * foot3a * 1.6, ); - next.leg_bl.orientation = - Quaternion::rotation_x(amplitude3 * foot3b * -0.5 - 0.2 * canceler) - * Quaternion::rotation_y(tilt * 1.5) - * Quaternion::rotation_z(tilt * -1.5); + next.leg_bl.orientation = Quaternion::rotation_x(amplitude3 * foot3a * 0.12) + * Quaternion::rotation_y(tilt * 1.5) + * Quaternion::rotation_z(tilt * -1.5); next.leg_bl.scale = Vec3::one() * 1.02; next.leg_br.position = Vec3::new( skeleton_attr.leg_b.0, - skeleton_attr.leg_b.1 + amplitude3 * foot4a * -1.9, - skeleton_attr.leg_b.2 + canceler + amplitude3 * ((foot4b * -2.6).min(1.0)), + skeleton_attr.leg_b.1 + amplitude3 * foot4b * -1.1, + skeleton_attr.leg_b.2 + canceler + amplitude3 * foot4a * 1.6, ); - next.leg_br.orientation = - Quaternion::rotation_x(amplitude3 * foot4b * -0.5 - 0.2 * canceler) - * Quaternion::rotation_y(tilt * 1.5) - * Quaternion::rotation_z(tilt * -1.5); + next.leg_br.orientation = Quaternion::rotation_x(amplitude3 * foot4b * 0.12) + * Quaternion::rotation_y(tilt * 1.5) + * Quaternion::rotation_z(tilt * -1.5); next.leg_br.scale = Vec3::one() * 1.02; next.foot_fl.position = Vec3::new( -skeleton_attr.feet_f.0, skeleton_attr.feet_f.1, - skeleton_attr.feet_f.2 - - ((-6.0 * speedadjust + 3.0).max(0.0) * (foot2a.sin()).min(0.0)) - + ((amplitude2 * foot1a - + amplitude2 * foot1a * skeleton_attr.maximize * canceler) - .max(0.0)), + skeleton_attr.feet_f.2 + (foot1a * 2.0).max(-1.0) * amplitude2 + 1.0 * canceler, ); next.foot_fl.orientation = Quaternion::rotation_x( - ((1.0 - skeleton_attr.dampen) * -1.0) * canceler + amplitude2 * foot1b * -0.7, + ((1.0 - skeleton_attr.dampen) * -1.0) * canceler + amplitude2 * foot1b * -0.8, ) * Quaternion::rotation_y(tilt * -1.0); next.foot_fl.scale = Vec3::one() * 0.96; next.foot_fr.position = Vec3::new( skeleton_attr.feet_f.0, skeleton_attr.feet_f.1, - skeleton_attr.feet_f.2 - - ((-6.0 * speedadjust + 3.0).max(0.0) * (foot4a.sin()).min(0.0)) - + ((amplitude2 * foot2a - + amplitude2 * foot2a * skeleton_attr.maximize * canceler) - .max(0.0)), + skeleton_attr.feet_f.2 + (foot2a * 2.0).max(-1.0) * amplitude2 + 1.0 * canceler, ); next.foot_fr.orientation = Quaternion::rotation_x( - ((1.0 - skeleton_attr.dampen) * -1.0) * canceler + amplitude2 * foot2b * -0.7, + ((1.0 - skeleton_attr.dampen) * -1.0) * canceler + amplitude2 * foot2b * -0.8, ) * Quaternion::rotation_y(tilt * -1.0); next.foot_fr.scale = Vec3::one() * 0.96; next.foot_bl.position = Vec3::new( -skeleton_attr.feet_b.0, skeleton_attr.feet_b.1, - skeleton_attr.feet_b.2 - + ((amplitude2 * foot3a * 0.5).max(-1.0)) - - ((-6.0 * speedadjust + 3.0).max(0.0) * (foot1a.sin()).min(0.0)), + skeleton_attr.feet_b.2 + (foot3a * 0.5).max(0.0) * amplitude2 + 2.0 * canceler, ); next.foot_bl.orientation = - Quaternion::rotation_x(amplitude2 * foot3b * -0.5 - 0.2 * canceler) + Quaternion::rotation_x(amplitude2 * foot3b * -0.9 - 0.5 * canceler) * Quaternion::rotation_y(tilt * -1.0); next.foot_bl.scale = Vec3::one() * 0.96; - + next.foot_br.position = Vec3::new( skeleton_attr.feet_b.0, skeleton_attr.feet_b.1, - skeleton_attr.feet_b.2 - + ((amplitude2 * foot4a * 0.5).max(-1.0)) - - ((-6.0 * speedadjust + 3.0).max(0.0) * (foot3a.sin()).min(0.0)), + skeleton_attr.feet_b.2 + (foot4a * 0.5).max(0.0) * amplitude2 + 2.0 * canceler, ); next.foot_br.orientation = - Quaternion::rotation_x(amplitude2 * foot4b * -0.5 - 0.2 * canceler) + Quaternion::rotation_x(amplitude2 * foot4b * -0.9 - 0.5 * canceler) * Quaternion::rotation_y(tilt * -1.0); next.foot_br.scale = Vec3::one() * 0.96; next From 0895ddaffb23ed7fe4e12b163b500d4fa69c563b Mon Sep 17 00:00:00 2001 From: jshipsey Date: Sat, 29 Aug 2020 04:23:12 -0400 Subject: [PATCH 10/28] haul out the critter skele, add theropod --- assets/common/npc_names.json | 56 ++-- .../voxygen/voxel/critter_center_manifest.ron | 266 --------------- .../voxel/npc/archaeos/male/chest_back.vox | Bin 0 -> 3580 bytes .../voxel/npc/archaeos/male/chest_front.vox | Bin 0 -> 5608 bytes .../voxel/npc/archaeos/male/foot_l.vox | Bin 0 -> 2204 bytes .../voxel/npc/archaeos/male/foot_r.vox | Bin 0 -> 2204 bytes .../voxel/npc/archaeos/male/hand_l.vox | Bin 0 -> 1316 bytes .../voxel/npc/archaeos/male/hand_r.vox | Bin 0 -> 1316 bytes .../voxygen/voxel/npc/archaeos/male/head.vox | Bin 0 -> 2884 bytes .../voxygen/voxel/npc/archaeos/male/jaw.vox | Bin 0 -> 2300 bytes .../voxygen/voxel/npc/archaeos/male/leg_l.vox | Bin 0 -> 2540 bytes .../voxygen/voxel/npc/archaeos/male/leg_r.vox | Bin 0 -> 2540 bytes .../voxygen/voxel/npc/archaeos/male/neck.vox | Bin 0 -> 2836 bytes .../voxel/npc/archaeos/male/tail_back.vox | Bin 0 -> 2624 bytes .../voxel/npc/archaeos/male/tail_front.vox | Bin 0 -> 1960 bytes .../voxygen/voxel/npc/axolotl/male/chest.vox | Bin 1352 -> 3736 bytes .../voxygen/voxel/npc/axolotl/male/feet_b.vox | Bin 1128 -> 0 bytes .../voxygen/voxel/npc/axolotl/male/feet_f.vox | Bin 1128 -> 0 bytes .../feet_b.vox => axolotl/male/foot_bl.vox} | Bin .../feet_f.vox => axolotl/male/foot_br.vox} | Bin .../voxel/npc/axolotl/male/foot_fl.vox | Bin 0 -> 1128 bytes .../voxel/npc/axolotl/male/foot_fr.vox | Bin 0 -> 1128 bytes .../voxygen/voxel/npc/axolotl/male/head.vox | Bin 1420 -> 1376 bytes .../voxygen/voxel/npc/axolotl/male/tail.vox | Bin 1168 -> 1116 bytes .../voxygen/voxel/npc/fungome/male/chest.vox | Bin 2840 -> 3736 bytes .../voxygen/voxel/npc/fungome/male/feet_b.vox | Bin 1128 -> 0 bytes .../voxygen/voxel/npc/fungome/male/feet_f.vox | Bin 1128 -> 0 bytes .../voxel/npc/fungome/male/foot_bl.vox | Bin 0 -> 1128 bytes .../voxel/npc/fungome/male/foot_br.vox | Bin 0 -> 1128 bytes .../voxel/npc/fungome/male/foot_fl.vox | Bin 0 -> 1128 bytes .../voxel/npc/fungome/male/foot_fr.vox | Bin 0 -> 1128 bytes .../voxygen/voxel/npc/fungome/male/head.vox | Bin 1300 -> 1376 bytes .../voxygen/voxel/npc/fungome/male/tail.vox | Bin 1108 -> 1116 bytes assets/voxygen/voxel/npc/gecko/male/chest.vox | Bin 1268 -> 3736 bytes .../voxygen/voxel/npc/gecko/male/feet_b.vox | Bin 1112 -> 0 bytes .../voxygen/voxel/npc/gecko/male/feet_f.vox | Bin 1112 -> 0 bytes .../voxygen/voxel/npc/gecko/male/foot_bl.vox | Bin 0 -> 1128 bytes .../voxygen/voxel/npc/gecko/male/foot_br.vox | Bin 0 -> 1128 bytes .../voxygen/voxel/npc/gecko/male/foot_fl.vox | Bin 0 -> 1128 bytes .../voxygen/voxel/npc/gecko/male/foot_fr.vox | Bin 0 -> 1128 bytes assets/voxygen/voxel/npc/gecko/male/head.vox | Bin 1372 -> 1376 bytes assets/voxygen/voxel/npc/gecko/male/tail.vox | Bin 1124 -> 1116 bytes .../npc/odontotyrannos/Odontotyrannos-0.vox | Bin 0 -> 4416 bytes .../npc/odontotyrannos/Odontotyrannos-1.vox | Bin 0 -> 2788 bytes .../npc/odontotyrannos/Odontotyrannos-10.vox | Bin 0 -> 2952 bytes .../npc/odontotyrannos/Odontotyrannos-11.vox | Bin 0 -> 1228 bytes .../npc/odontotyrannos/Odontotyrannos-2.vox | Bin 0 -> 5624 bytes .../npc/odontotyrannos/Odontotyrannos-3.vox | Bin 0 -> 4244 bytes .../npc/odontotyrannos/Odontotyrannos-4.vox | Bin 0 -> 2952 bytes .../npc/odontotyrannos/Odontotyrannos-5.vox | Bin 0 -> 2476 bytes .../npc/odontotyrannos/Odontotyrannos-6.vox | Bin 0 -> 1228 bytes .../npc/odontotyrannos/Odontotyrannos-7.vox | Bin 0 -> 2272 bytes .../npc/odontotyrannos/Odontotyrannos-8.vox | Bin 0 -> 1932 bytes .../npc/odontotyrannos/Odontotyrannos-9.vox | Bin 0 -> 2476 bytes assets/voxygen/voxel/npc/rat/male/chest.vox | Bin 3636 -> 3736 bytes assets/voxygen/voxel/npc/rat/male/feet_b.vox | Bin 1168 -> 0 bytes assets/voxygen/voxel/npc/rat/male/feet_f.vox | Bin 1168 -> 0 bytes assets/voxygen/voxel/npc/rat/male/feet_r.vox | Bin 1168 -> 0 bytes assets/voxygen/voxel/npc/rat/male/foot_bl.vox | Bin 0 -> 1128 bytes assets/voxygen/voxel/npc/rat/male/foot_br.vox | Bin 0 -> 1128 bytes assets/voxygen/voxel/npc/rat/male/foot_fl.vox | Bin 0 -> 1128 bytes assets/voxygen/voxel/npc/rat/male/foot_fr.vox | Bin 0 -> 1128 bytes assets/voxygen/voxel/npc/rat/male/head.vox | Bin 1656 -> 1376 bytes assets/voxygen/voxel/npc/rat/male/tail.vox | Bin 1136 -> 1116 bytes .../voxygen/voxel/npc/squirrel/male/chest.vox | Bin 1212 -> 3736 bytes .../voxel/npc/squirrel/male/feet_b.vox | Bin 1112 -> 0 bytes .../voxel/npc/squirrel/male/feet_f.vox | Bin 1112 -> 0 bytes .../voxel/npc/squirrel/male/foot_bl.vox | Bin 0 -> 1128 bytes .../voxel/npc/squirrel/male/foot_br.vox | Bin 0 -> 1128 bytes .../voxel/npc/squirrel/male/foot_fl.vox | Bin 0 -> 1128 bytes .../voxel/npc/squirrel/male/foot_fr.vox | Bin 0 -> 1128 bytes .../voxygen/voxel/npc/squirrel/male/head.vox | Bin 1264 -> 1376 bytes .../voxygen/voxel/npc/squirrel/male/tail.vox | Bin 1208 -> 1116 bytes .../voxygen/voxel/npc/turtle/male/foot_bl.vox | Bin 0 -> 1128 bytes .../voxygen/voxel/npc/turtle/male/foot_br.vox | Bin 0 -> 1128 bytes .../voxygen/voxel/npc/turtle/male/foot_fl.vox | Bin 0 -> 1128 bytes .../voxygen/voxel/npc/turtle/male/foot_fr.vox | Bin 0 -> 1128 bytes .../quadruped_small_central_manifest.ron | 168 ++++++++++ .../quadruped_small_lateral_manifest.ron | 217 ++++++++++++- .../voxel/theropod_central_manifest.ron | 122 +++++++ .../voxel/theropod_lateral_manifest.ron | 106 ++++++ common/src/comp/agent.rs | 8 +- common/src/comp/body.rs | 26 +- common/src/comp/body/quadruped_small.rs | 69 ++-- common/src/comp/body/theropod.rs | 8 +- common/src/comp/mod.rs | 4 +- common/src/generation.rs | 2 +- common/src/loadout_builder.rs | 2 +- common/src/npc.rs | 12 +- common/src/states/utils.rs | 4 +- server/src/events/entity_manipulation.rs | 4 +- voxygen/src/anim/src/critter/idle.rs | 68 ---- voxygen/src/anim/src/critter/jump.rs | 48 --- voxygen/src/anim/src/critter/mod.rs | 136 -------- voxygen/src/anim/src/critter/run.rs | 59 ---- voxygen/src/anim/src/lib.rs | 2 +- voxygen/src/anim/src/quadruped_small/mod.rs | 66 ++++ voxygen/src/anim/src/theropod/idle.rs | 109 +++++++ voxygen/src/anim/src/theropod/jump.rs | 111 +++++++ voxygen/src/anim/src/theropod/mod.rs | 177 ++++++++++ voxygen/src/anim/src/theropod/run.rs | 114 +++++++ voxygen/src/scene/figure/cache.rs | 7 + voxygen/src/scene/figure/load.rs | 306 +++++++++++++++--- voxygen/src/scene/figure/mod.rs | 69 ++-- world/src/layer/mod.rs | 10 +- world/src/lib.rs | 6 +- 106 files changed, 1600 insertions(+), 762 deletions(-) delete mode 100644 assets/voxygen/voxel/critter_center_manifest.ron create mode 100644 assets/voxygen/voxel/npc/archaeos/male/chest_back.vox create mode 100644 assets/voxygen/voxel/npc/archaeos/male/chest_front.vox create mode 100644 assets/voxygen/voxel/npc/archaeos/male/foot_l.vox create mode 100644 assets/voxygen/voxel/npc/archaeos/male/foot_r.vox create mode 100644 assets/voxygen/voxel/npc/archaeos/male/hand_l.vox create mode 100644 assets/voxygen/voxel/npc/archaeos/male/hand_r.vox create mode 100644 assets/voxygen/voxel/npc/archaeos/male/head.vox create mode 100644 assets/voxygen/voxel/npc/archaeos/male/jaw.vox create mode 100644 assets/voxygen/voxel/npc/archaeos/male/leg_l.vox create mode 100644 assets/voxygen/voxel/npc/archaeos/male/leg_r.vox create mode 100644 assets/voxygen/voxel/npc/archaeos/male/neck.vox create mode 100644 assets/voxygen/voxel/npc/archaeos/male/tail_back.vox create mode 100644 assets/voxygen/voxel/npc/archaeos/male/tail_front.vox delete mode 100644 assets/voxygen/voxel/npc/axolotl/male/feet_b.vox delete mode 100644 assets/voxygen/voxel/npc/axolotl/male/feet_f.vox rename assets/voxygen/voxel/npc/{turtle/male/feet_b.vox => axolotl/male/foot_bl.vox} (100%) rename assets/voxygen/voxel/npc/{turtle/male/feet_f.vox => axolotl/male/foot_br.vox} (100%) create mode 100644 assets/voxygen/voxel/npc/axolotl/male/foot_fl.vox create mode 100644 assets/voxygen/voxel/npc/axolotl/male/foot_fr.vox delete mode 100644 assets/voxygen/voxel/npc/fungome/male/feet_b.vox delete mode 100644 assets/voxygen/voxel/npc/fungome/male/feet_f.vox create mode 100644 assets/voxygen/voxel/npc/fungome/male/foot_bl.vox create mode 100644 assets/voxygen/voxel/npc/fungome/male/foot_br.vox create mode 100644 assets/voxygen/voxel/npc/fungome/male/foot_fl.vox create mode 100644 assets/voxygen/voxel/npc/fungome/male/foot_fr.vox delete mode 100644 assets/voxygen/voxel/npc/gecko/male/feet_b.vox delete mode 100644 assets/voxygen/voxel/npc/gecko/male/feet_f.vox create mode 100644 assets/voxygen/voxel/npc/gecko/male/foot_bl.vox create mode 100644 assets/voxygen/voxel/npc/gecko/male/foot_br.vox create mode 100644 assets/voxygen/voxel/npc/gecko/male/foot_fl.vox create mode 100644 assets/voxygen/voxel/npc/gecko/male/foot_fr.vox create mode 100644 assets/voxygen/voxel/npc/odontotyrannos/Odontotyrannos-0.vox create mode 100644 assets/voxygen/voxel/npc/odontotyrannos/Odontotyrannos-1.vox create mode 100644 assets/voxygen/voxel/npc/odontotyrannos/Odontotyrannos-10.vox create mode 100644 assets/voxygen/voxel/npc/odontotyrannos/Odontotyrannos-11.vox create mode 100644 assets/voxygen/voxel/npc/odontotyrannos/Odontotyrannos-2.vox create mode 100644 assets/voxygen/voxel/npc/odontotyrannos/Odontotyrannos-3.vox create mode 100644 assets/voxygen/voxel/npc/odontotyrannos/Odontotyrannos-4.vox create mode 100644 assets/voxygen/voxel/npc/odontotyrannos/Odontotyrannos-5.vox create mode 100644 assets/voxygen/voxel/npc/odontotyrannos/Odontotyrannos-6.vox create mode 100644 assets/voxygen/voxel/npc/odontotyrannos/Odontotyrannos-7.vox create mode 100644 assets/voxygen/voxel/npc/odontotyrannos/Odontotyrannos-8.vox create mode 100644 assets/voxygen/voxel/npc/odontotyrannos/Odontotyrannos-9.vox delete mode 100644 assets/voxygen/voxel/npc/rat/male/feet_b.vox delete mode 100644 assets/voxygen/voxel/npc/rat/male/feet_f.vox delete mode 100644 assets/voxygen/voxel/npc/rat/male/feet_r.vox create mode 100644 assets/voxygen/voxel/npc/rat/male/foot_bl.vox create mode 100644 assets/voxygen/voxel/npc/rat/male/foot_br.vox create mode 100644 assets/voxygen/voxel/npc/rat/male/foot_fl.vox create mode 100644 assets/voxygen/voxel/npc/rat/male/foot_fr.vox delete mode 100644 assets/voxygen/voxel/npc/squirrel/male/feet_b.vox delete mode 100644 assets/voxygen/voxel/npc/squirrel/male/feet_f.vox create mode 100644 assets/voxygen/voxel/npc/squirrel/male/foot_bl.vox create mode 100644 assets/voxygen/voxel/npc/squirrel/male/foot_br.vox create mode 100644 assets/voxygen/voxel/npc/squirrel/male/foot_fl.vox create mode 100644 assets/voxygen/voxel/npc/squirrel/male/foot_fr.vox create mode 100644 assets/voxygen/voxel/npc/turtle/male/foot_bl.vox create mode 100644 assets/voxygen/voxel/npc/turtle/male/foot_br.vox create mode 100644 assets/voxygen/voxel/npc/turtle/male/foot_fl.vox create mode 100644 assets/voxygen/voxel/npc/turtle/male/foot_fr.vox create mode 100644 assets/voxygen/voxel/theropod_central_manifest.ron create mode 100644 assets/voxygen/voxel/theropod_lateral_manifest.ron delete mode 100644 voxygen/src/anim/src/critter/idle.rs delete mode 100644 voxygen/src/anim/src/critter/jump.rs delete mode 100644 voxygen/src/anim/src/critter/mod.rs delete mode 100644 voxygen/src/anim/src/critter/run.rs create mode 100644 voxygen/src/anim/src/theropod/idle.rs create mode 100644 voxygen/src/anim/src/theropod/jump.rs create mode 100644 voxygen/src/anim/src/theropod/mod.rs create mode 100644 voxygen/src/anim/src/theropod/run.rs diff --git a/assets/common/npc_names.json b/assets/common/npc_names.json index d24db1222a..d8d7b341f8 100644 --- a/assets/common/npc_names.json +++ b/assets/common/npc_names.json @@ -461,6 +461,30 @@ "frog": { "keyword": "frog", "generic": "Frog" + }, + "rat": { + "keyword": "rat", + "generic": "Rat" + }, + "axolotl": { + "keyword": "axolotl", + "generic": "Axolotl" + }, + "gecko": { + "keyword": "gecko", + "generic": "Gecko" + }, + "turtle": { + "keyword": "turtle", + "generic": "Turtle" + }, + "squirrel": { + "keyword": "squirrel", + "generic": "Squirrel" + }, + "fungome": { + "keyword": "fungome", + "generic": "Fungome" } } }, @@ -550,37 +574,21 @@ } } }, - "critter": { + "theropod": { "body": { - "keyword": "critter", + "keyword": "theropod", "names": [ "Remy" ] }, "species": { - "rat": { - "keyword": "rat", - "generic": "Rat" + "archaeos": { + "keyword": "archaeos", + "generic": "Archaeos" }, - "axolotl": { - "keyword": "axolotl", - "generic": "Axolotl" - }, - "gecko": { - "keyword": "gecko", - "generic": "Gecko" - }, - "turtle": { - "keyword": "turtle", - "generic": "Turtle" - }, - "squirrel": { - "keyword": "squirrel", - "generic": "Squirrel" - }, - "fungome": { - "keyword": "fungome", - "generic": "Fungome" + "odontotyrannos": { + "keyword": "odontotyrannos", + "generic": "Odontotyrannos" } } }, diff --git a/assets/voxygen/voxel/critter_center_manifest.ron b/assets/voxygen/voxel/critter_center_manifest.ron deleted file mode 100644 index 038fcfc611..0000000000 --- a/assets/voxygen/voxel/critter_center_manifest.ron +++ /dev/null @@ -1,266 +0,0 @@ -({ - (Rat, Male): ( - head: ( - offset: (-4.5, -4.0, -4.0), - center: ("npc.rat.male.head"), - ), - chest: ( - offset: (-4.5, -6.0, -4.0), - center: ("npc.rat.male.chest"), - ), - feet_f: ( - offset: (-4.0, -1.5, -1.0), - center: ("npc.rat.male.feet_f"), - ), - feet_b: ( - offset: (-4.0, -1.5, -1.0), - center: ("npc.rat.male.feet_b"), - ), - tail: ( - offset: (-0.5, -4.0, -1.5), - center: ("npc.rat.male.tail"), - ), - ), - (Rat, Female): ( - head: ( - offset: (-4.5, -4.0, -4.0), - center: ("npc.rat.male.head"), - ), - chest: ( - offset: (-4.5, -6.0, -4.0), - center: ("npc.rat.male.chest"), - ), - feet_f: ( - offset: (-4.0, -1.5, -1.0), - center: ("npc.rat.male.feet_f"), - ), - feet_b: ( - offset: (-4.0, -1.5, -1.0), - center: ("npc.rat.male.feet_b"), - ), - tail: ( - offset: (-0.5, -4.0, -1.5), - center: ("npc.rat.male.tail"), - ), - ), - (Axolotl, Male): ( - head: ( - offset: (-3.5, -4.0, -2.0), - center: ("npc.axolotl.male.head"), - ), - chest: ( - offset: (-2.5, -4.0, -1.5), - center: ("npc.axolotl.male.chest"), - ), - feet_f: ( - offset: (-3.0, -0.5, -1.0), - center: ("npc.axolotl.male.feet_f"), - ), - feet_b: ( - offset: (-3.0, -0.5, -1.0), - center: ("npc.axolotl.male.feet_b"), - ), - tail: ( - offset: (-1.5, -2.5, -1.5), - center: ("npc.axolotl.male.tail"), - ), - ), - (Axolotl, Female): ( - head: ( - offset: (-3.5, -4.0, -2.0), - center: ("npc.axolotl.male.head"), - ), - chest: ( - offset: (-2.5, -4.0, -1.5), - center: ("npc.axolotl.male.chest"), - ), - feet_f: ( - offset: (-3.0, -0.5, -1.0), - center: ("npc.axolotl.male.feet_f"), - ), - feet_b: ( - offset: (-3.0, -0.5, -1.0), - center: ("npc.axolotl.male.feet_b"), - ), - tail: ( - offset: (-1.5, -2.5, -1.5), - center: ("npc.axolotl.male.tail"), - ), - ), - (Gecko, Male): ( - head: ( - offset: (-2.5, -3.0, -2.0), - center: ("npc.gecko.male.head"), - ), - chest: ( - offset: (-1.5, -4.0, -2.0), - center: ("npc.gecko.male.chest"), - ), - feet_f: ( - offset: (-2.0, -0.5, -1.0), - center: ("npc.gecko.male.feet_f"), - ), - feet_b: ( - offset: (-2.0, -0.5, -1.0), - center: ("npc.gecko.male.feet_b"), - ), - tail: ( - offset: (-0.5, -2.5, -1.0), - center: ("npc.gecko.male.tail"), - ), - ), - (Gecko, Female): ( - head: ( - offset: (-2.5, -3.0, -2.0), - center: ("npc.gecko.male.head"), - ), - chest: ( - offset: (-1.5, -4.0, -1.5), - center: ("npc.gecko.male.chest"), - ), - feet_f: ( - offset: (-2.0, -0.5, -1.0), - center: ("npc.gecko.male.feet_f"), - ), - feet_b: ( - offset: (-2.0, -0.5, -1.0), - center: ("npc.gecko.male.feet_b"), - ), - tail: ( - offset: (-0.5, -2.5, -1.0), - center: ("npc.gecko.male.tail"), - ), - ), - (Turtle, Male): ( - head: ( - offset: (-2.5, -2.5, -2.5), - center: ("npc.turtle.male.head"), - ), - chest: ( - offset: (-6.0, -6.0, -4.0), - center: ("npc.turtle.male.chest"), - ), - feet_f: ( - offset: (-5.0, -0.5, -1.0), - center: ("npc.turtle.male.feet_f"), - ), - feet_b: ( - offset: (-5.0, -0.5, -1.0), - center: ("npc.turtle.male.feet_b"), - ), - tail: ( - offset: (-0.5, -2.0, -1.0), - center: ("npc.turtle.male.tail"), - ), - ), - (Turtle, Female): ( - head: ( - offset: (-2.5, -2.5, -2.5), - center: ("npc.turtle.male.head"), - ), - chest: ( - offset: (-6.0, -6.0, -4.0), - center: ("npc.turtle.male.chest"), - ), - feet_f: ( - offset: (-5.0, -0.5, -1.0), - center: ("npc.turtle.male.feet_f"), - ), - feet_b: ( - offset: (-5.0, -0.5, -1.0), - center: ("npc.turtle.male.feet_b"), - ), - tail: ( - offset: (-0.5, -2.0, -1.0), - center: ("npc.turtle.male.tail"), - ), - ), - (Squirrel, Male): ( - head: ( - offset: (-1.5, -2.0, -2.0), - center: ("npc.squirrel.male.head"), - ), - chest: ( - offset: (-1.5, -3.0, -1.5), - center: ("npc.squirrel.male.chest"), - ), - feet_f: ( - offset: (-2.0, -0.5, -1.0), - center: ("npc.squirrel.male.feet_f"), - ), - feet_b: ( - offset: (-2.0, -0.5, -1.0), - center: ("npc.squirrel.male.feet_b"), - ), - tail: ( - offset: (-1.5, -1.5, -3.0), - center: ("npc.squirrel.male.tail"), - ), - ), - (Squirrel, Female): ( - head: ( - offset: (-1.5, -2.0, -2.0), - center: ("npc.squirrel.male.head"), - ), - chest: ( - offset: (-1.5, -3.0, -1.5), - center: ("npc.squirrel.male.chest"), - ), - feet_f: ( - offset: (-2.0, -0.5, -1.0), - center: ("npc.squirrel.male.feet_f"), - ), - feet_b: ( - offset: (-2.0, -0.5, -1.0), - center: ("npc.squirrel.male.feet_b"), - ), - tail: ( - offset: (-1.5, -1.5, -3.0), - center: ("npc.squirrel.male.tail"), - ), - ), - (Fungome, Male): ( - head: ( - offset: (-2.5, -1.5, -2.0), - center: ("npc.fungome.male.head"), - ), - chest: ( - offset: (-6.0, -6.0, -4.0), - center: ("npc.fungome.male.chest"), - ), - feet_f: ( - offset: (-3.0, -0.5, -1.0), - center: ("npc.fungome.male.feet_f"), - ), - feet_b: ( - offset: (-3.0, -0.5, -1.0), - center: ("npc.fungome.male.feet_b"), - ), - tail: ( - offset: (-1.0, -0.5, -1.0), - center: ("npc.fungome.male.tail"), - ), - ), - (Fungome, Female): ( - head: ( - offset: (-2.5, -1.5, -2.0), - center: ("npc.fungome.male.head"), - ), - chest: ( - offset: (-6.0, -6.0, -4.0), - center: ("npc.fungome.male.chest"), - ), - feet_f: ( - offset: (-3.0, -0.5, -1.0), - center: ("npc.fungome.male.feet_f"), - ), - feet_b: ( - offset: (-3.0, -0.5, -1.0), - center: ("npc.fungome.male.feet_b"), - ), - tail: ( - offset: (-1.0, -0.5, -1.0), - center: ("npc.fungome.male.tail"), - ), - ), -}) diff --git a/assets/voxygen/voxel/npc/archaeos/male/chest_back.vox b/assets/voxygen/voxel/npc/archaeos/male/chest_back.vox new file mode 100644 index 0000000000000000000000000000000000000000..e11d51a00e89d7010135fcdd06f0425b4fdf78d5 GIT binary patch literal 3580 zcmXX|3yhV;6`na~UUwHNTWA^!F%@-L5!PmTb_Ib21mq>+@>X8DR32OJE6cqXQmKN7 zmPaIr+7usEfoc@HD6p*-BqdU9)ikw@qSZF3rY+T`jjft~{r+ulGMV{j&YW}RobP<+ zE||OM>-&r`vnS1%!^wQu*O>V;mQ3xFeejq2|M(K;MT?irIF@bjw?T~2Xsb?b%~?}b z$5~B9J@=fgs_;8WO*mXIHT9+zl2p7mRWG(0d|k9v>(Zh2NQO zQxVELp&rUkR#JZ*a^1V>wrYx?JXU|gh}JoWP} zo@c?+KJ`ZLIbu0@#)y6-`W&d=`&0}*6{1h{kM}veuj5&cBT&C`NFjO8Z@$Sho`F6E z#w##xoPCJ-5MnWgSV|#q&*x)sr4Xc;0(}Xg5Ci=Rj4#(dP=CnrocRl$=Q+yr&B5h; zV9bN$Q?D-OjQ2zEj1Ob4z8DkZ5>qLrSPU`ceeXJzl{gD2?uMEVh_JB3n+Im!|%i9SX8mU4x_;bV?>nU@$!iRUo|-VG%mX*Ur=*@*N% z3TNhxx;^#!#CRm;Bzn$)cnu{R>Z?hKL1NE@KGo!C*Ki2!N+?RGuS8{xh*OF6teadp zSzk(;;U*Q5W&T(LLHRyqj5U@m^(ggv^<{~5H3@Y!uOaVPi!Q6J-a3nU8~fDM+KRJ` z53%kYF__sW-n~oZ;P^JjxDZp(1!5+YOz2znE=Rm&`>Z)->{wG0`cwk#1)&{dYo2VBn_>KvaWsslVO*8* zRjI35#@jOPA~|wfC^{GNlHFx)Oy;}PRcw|s=1!!(W|&K5PL;V;=2)3)WzHS(~hV~BN2pM==A^wF{wg!+WFVOb->S`pTaBmddN z8e%O8Ys#{=EZ3H`W?6GCFy5>`7i>XTi!MmXv0hzp{Lc1s#0=xinpM`WvW8t?9zxC-jeH;obT9cl(sGVfTMrTGnVWNmieoy6Kzq%opW_{Y==`Ec=^KM))>i-&4+( zzBxx5e6thco4wJomXv+cvR^ur`Nmmd$+0IpOF7n`lN{xlWAngmmyu2s!)%m4IjCev?)dz5`t}tNt%MUjlpp! zhuEfIZKF>*Bp4auI4g%3X%cIPh}cF^+a!*|+a{Z&QGy*}BhQmIUO%mEl5zk04+s9< zIna&w*WHW77dPWyFTaL=Jb4^9j~<7A?mLX5GnV4R>TbNgq!Vw?-hltS_db45t>X25 zvv6QkEADIvUrcPnkFILPTc>-ld-_Ba zCy&LMt6S0DHX3gjgHQI}fumDK;`sK>_+-->Y@gMNyZQ(08W8ZEFMDjAJ{phRG!3ub z(2BzJ7JRzwO01pOga@x1iPNhl-kHb8Hx0sHH(rag8|UN4 z%f?{Agl7C*;|6|7u27BlAz#nM&Hm_6^CxO>k!?Cze4Jx||; zqh}w+&1)B-_UHs`JK2G27mr8Vis6{oISG5Z@5Al8HeukFt8wE~TQGXTI1JuA4+npH z9Bc0=VEBfaxaP)Lxb(hGYzj9(V*>&ioo9o;Zd+)7#K@!Ak0U5+l}> zaM}FDxM=%9ELdN}!c9A{=(%@r#qu&*cfEk-Wt}jq?!@Nf?_%D;b7(&F9_st`#|4*7 zM7nS|%(7=tKe7|G-EX3^{6jQeGz|?cTQO(u{kZs|cHFb&W!!f2gLr87DePGHBG%6O zK6Z5-#r*M0@!YOoV*iHc(AD-mjJt9Yt{r?MI$Abi@vznS_J}Q5IBOxgxAb7b6{E3m z=mgv}{yG#^cVgA$H(*2aQk-nriGwq$SkOEMzaO^)E5=-nFFyM_tMqgH^k*mV;>jNT z{1w{YRKhK5Zo&M;^D%esbX-4qJjRS0i`JG#oIiga=gyr&PfrgHA3luj+qa{us|)Sz T?U*uU3I-1zjE05=WDM|MHC2)p literal 0 HcmV?d00001 diff --git a/assets/voxygen/voxel/npc/archaeos/male/chest_front.vox b/assets/voxygen/voxel/npc/archaeos/male/chest_front.vox new file mode 100644 index 0000000000000000000000000000000000000000..233c141e2ef98b36db88abd8d15dc19119b55fbc GIT binary patch literal 5608 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 pw=py{gu%f8Jnz literal 0 HcmV?d00001 diff --git a/assets/voxygen/voxel/npc/archaeos/male/foot_r.vox b/assets/voxygen/voxel/npc/archaeos/male/foot_r.vox new file mode 100644 index 0000000000000000000000000000000000000000..ced71ccc7cd63e5c8bf56cb5d5d0599e57c4b56a GIT binary patch literal 2204 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 VRA4k3iHL~6)zuZ9PRI0L_dmxjbDaPH literal 0 HcmV?d00001 diff --git a/assets/voxygen/voxel/npc/archaeos/male/hand_r.vox b/assets/voxygen/voxel/npc/archaeos/male/hand_r.vox new file mode 100644 index 0000000000000000000000000000000000000000..f453374faff9b48e46cf45a8c1ec6d8d3c8d48c4 GIT binary patch literal 1316 zcmW-h2~5;S6vqF@F5nf}LQ^cnRMZs_)`q()2&_;*E)kboxfCkL*4<^ZfRL6dh-f(? zLDZ&rR0XP0ET}-M1xbliTQyB>qju#v2`i zAS6b{B`G90s|6u7E-QNW^g=O}0tW>%6=Y;)#obeQ+JdJCNvsl8LbWJ6y2&b`N|0om zAW1e+Et(~@R3WQHt0c)4vgl|Pr5SFbJi|?po!n%>!6vGl+$7P#B1w*BNm5wxNh;Ya zsU&5tHcO()CQ2%W)fJMYQsUGWNmlmdX`iE678MOyw#bT4Ry1TuWs^me6Vz5=x)-G`hRBzP zSB{Bdx4ZheU%H#j1v>t@bd|r353(^Rl)pQA8Hmf~VRb9lvP|4cEa$(w_xZTGnrqGp zbOq|!uJK{2r-zHhMKr{O)7P;FSC_eXyzYvJ`)hn1Vc^phdTx#l(;6FrbyW!CEAW;p*-&}VTlW&-<-~^W;2gBc<_7WY9=aE`79@xv~V3iwV7zi3gvN60|$%a z8QHAl?JJ_ax|}10LHyF5M{TMPw9A`EN8X{YGK!8u z9TU|)tO{`FxARR@8kcd}9z=&FjtA{47=PcF1Ez(TjLZ48-^|UyWVm)lQ&jy^k51XM#B|-UtC;gvaQLNzWyrm^FxSF@+P}LM`Frb>})HgwLhM=lUo>= zILOA547MH)r(vXs)tO-!@_b1#Mbg&4hxc1*aIag*`V(~orG?^In?m;wgOqHu;9DNg z+v^ipw8uolvAqa8%b1ZL%e;t5RWpk$G8#>F+U^je7=<-Nbd#kpmj#jT9nOZZHCPHw6f9jwxh|U#zh=7Qs!7uYb1$@syx^6*c=o6A zN}uz^mqT0_8Ro0YO8uG&HWhCoH8Yju~=dwqmihnC_Ftq(P%VGe{=r>ESYn( literal 0 HcmV?d00001 diff --git a/assets/voxygen/voxel/npc/archaeos/male/head.vox b/assets/voxygen/voxel/npc/archaeos/male/head.vox new file mode 100644 index 0000000000000000000000000000000000000000..94ce3f4386302afa2bca080908d4a29f698217cc GIT binary patch literal 2884 zcmXAq4Q!R=6~~|N=Y4N6(801f2$=|_0xhOM%Sua2DWm1P))q?n2Fon8dg;As@4b-O z@l~p$C6J1^43vSuBmyf6bc2CpM5ddXWp0t`a7(7y#&p@@24?^LUw4~d&bjA#-gEx% z^PF>Azj)a<`-Bh+XH_qv5f5hxQCq!y&XDK}KOu?y7+Kb^yjplV{9KVjNbi%%`J{A? z)+LQ|acNybSr<37($F_9sfnSlHRGClm212>h+}RQ+N2I` z+|a7PCUjtvCa`VN+l2BquDxyZtnH%u-cpNAc-D5*pd8noO?uXL)L4_#6-SiT(Xv6Owi9VNf$HJVVZqt;x42gnuHG+4@}$==Na=R?zK-l zXA&~XZ%x8l#*BHw5o=6RYM*kN&uEiS+~XB<5KDqska3c0(j=TcOzSz zlP%s$o)v8%6F#ILqaTyh&wN=j;j*IjD2HMW#WSTZ6?3qzRP04+P|CXq&oxa;Y~&mI zgo`|H`ovp4>$pZVwJ7RT)M=vq)G4V`QKzI%Nu7#1C3PBV)I?FI zp+-#c>gpx75O2-3!IKYK;7XH*cRjMWLvK2q!_;knNK(nJv%S@xb}51N4c*pG@x_NQU5 zYWAv%Ea%F^_#FFK5y`$bS^Ul(SHuVt*X(=6{x_Tj%~?>iGOEWJ(L@nROq5GA_T?;@ zxQh00#xzl!H%SaQc@&ZcsF7tc87mA65?e1lR+tH5VMc^uItasz55trX!nBCuoH0)Vo}K4;IucN$C(d)`T(ssh zKJbk5cfx5X_ep6}QrV2qHYE&UKH+RyDwk5M zC0R?buC|VAE~TkQ5KduAQlp|~X?#jq&wQSHd|EsDd^bU>`Ociyv>=k_AOfG_Fz0eu za=j#0=Wvj6I7s6;NI6pJTuEOVVu>{4r6$hgJTkXpmN5VSUkH9~9qz~NP0yg=fqeY? z^|$cPmo8#MVF~`#cM9jL8}V_v7jG|b#rq3e@ZS$_=q-X699ho==|NA@J#Ie8LS zHa20`+%lZ)+m8{$hho$>Mqt#)ui=;F75MRtV!U^K0KHY^Xq!D9H)a;2uA&g{2!YQI zY{&V^skqp+4WDh@h^__2*gf2#XN1Fdzhbeost`w4&BdFK7Gq0Q0X|bnG?%!ru%W+{p}v$dVs$VjK$5JA;wn5cyA(ww(@|WIgFAQbU~q5{0|Ns% fb?Owly1LNb-j2GuI#gCxV$7H^$j;72^b7DmCFm&l literal 0 HcmV?d00001 diff --git a/assets/voxygen/voxel/npc/archaeos/male/jaw.vox b/assets/voxygen/voxel/npc/archaeos/male/jaw.vox new file mode 100644 index 0000000000000000000000000000000000000000..47461bde48c994cc40d45a993ae5e077b6df9573 GIT binary patch literal 2300 zcmXX|4Qy7`8NT=Y-tTJ}e1mmy5Hb-eLR*#sEh{Z81x5?yr`DGK@DH}L@O_htY45!y zvxAmW9c=@th|53`gia!`qChuXk&MW6Q?tx1QXOu|Fx!|eTin3-?73!N^5&fLp7XxX z^FHT2H($-F+HVdxj zG*8Mvq`SU#W#DmCN+y(+2|b2$!!cciCfyCSt9-3RsM6iQi@TxJ(%LlFmr7bGrB!j6 zR56Yo%`%5^LK)4q6B^_A((t?#ffd>+S3}Z_reEr$jC^sGlu{)PN6%G(ArC_yh8$#! zdz$C8N@__?^t(#>GA6%p$w?UD3oQa|$xrBn(Bv*u!YUDv0rRT_StgZM38iR~YvTq= zFgML8!Ft?4D%aQKt-i!?e6mV-QiWP^&b%__Ft4DWagt+PS{>!~oIo4m#W*s*j>&|j zKHB3*eJGGM)W=XCLro0hEn_U_mbIBU=hR0>V~pphjisr$6I$w{$y-wo8|f2sLLK3d zw~e^dH0!a{$5J0d?uKha9)@uQPufTe>YyXdS%;>khCany#$!Hm5kdvp(HTYyUpksv z2w%}}EcGxVLpv(NIEwwjxup))2^2M#^jk;!)={B!Iak!tl^LFPLm`!KjT!xLaV%q^wdb<0 zM257k?+IdgGH|))5zo+X<0ABEHjQH%@7+ZA?D{6+X4%^`!+eT)v`0Tp#psW5PP6QH zCApSdOP*7lvsVmFu^!ESGf`c{ka50=G!ck6btIN%tR}8bqaIv)mT%4@w-{^Y7>jrk z&m+Die;d^ja|0764r5Kkm+#D^@jhspZ&7ehdc-3~!Fa(uA|?Wt@7YpI8|jiJd3T(1 z&v4Jv()WxcAHI_qb%;q{NAKUL&=Z+Vf;6cwR^yD#l9sRfH4cw?ZktH=32? zCD|jaleKtC5krNBb$e0=HZDWY5>si`K|P2qxG&?(8{x6X6iu)PRMb1{CBbiuaOrnt z$cN=?elJY)&RCP-H{rphr3;<^f5X7vjUz+2x$P;`-J65|y#5yc_2NZr%`3#e2L^Gz zyaBg@KD=F@!uu6?Qs=2GPeMG5?Q!?>J(mUYDCx4Vw@c~fC=NrV$wGz zVA8~|<5wl6_{sbNymxgNePtzhY|%ViTTp=N(mcH5IQaD7Zk%5{2N%0{;nVgebXOE$ z?|6gW2?pQ)szzs79*(VFiZ>rBKucLJK3h8r%_Y-uc=a4y-Mk1dZz#mwffQQG=V55a z8oa-M2R>Op34d=}hU;xr`03hw)D-97PyH$M))(TFQ(ZXPv>YRkFz%T~91M~;wj~dL zIk*wKsJYfoh3+0=bVRnNj-hj!q-i~I3|#sa*uzZyR~(u%!}voX?> z37nmXcMfG@^msPjI5ZpoeQgPDT<~$JKNq)NS&GlDlwx}B1K8eNfHNm+ai-@H-1*%; z;Hrmz3{S=N(;G1NzA>0PZ4#E`Bv5pJ0&}N-4bMN7kL??$qN{E0mv@mEn~ub|ak%?Y zCI0YMA5K44iqUuHDoV#=;c zoc#SoH1BRfc5*qsv#tVD52Vm_;%PYhwj;Kw4EL-oLDtTVaDMX=oWVXgciu$ik|H!- zdKH;_J5kb5jc?W0pzX?4PR>%d_&KJy$puKgCXPh3EHSt-WUY+}wAF}rCe zrd8Epa`#EpY<~=E+IvuY?gnOVcpL@2uOeq{3eM&|*mdy(RGu6~&Z!TPHf}t|PAh?T zPd1#jFC%SE3Sr;7NIm`nGAA!ZBDWJOS3Qk;Cs*Uij@R+%*28$V?+SXhT}E@okI>tC z9#usRIM@4Y97>);Yv~VBIBOx6O<9M=+;-GuZNc|ucVJD$8Vq#|qj+W>*32lz`l8in z*^$>)Y^}XAB&{% zLu=ELM!BSME~!mw^&(}wz|vkBKVh7owAxEr&nJ$bl+uOTdI`g`@nV6NwDXCpn3E!| zq`%|6rmtqc#zoe~sCUepSRU<6EV3SB`NUv;(qlZv(#8vw=Y=|D=jdZyq$oC3FJoKg zZLP;MeI@Y~Yc*-~jU}uizUCe63~kI;{;^0qa$>zeJ1?{;ZWR4|*5ioF+6?QotXbQX z-UY@>3D1r-F}C*oNPFa#dhL-;#wAVT<63jGxK3DCF|3yS2{l-6|tC~ zB&KBUA{E0CmouSQqvm{Q8w;f8a|U9e(jI5S50vy0nscN%Pl}vL?E=XjNky@&hukRN zOGt|LXzz&Q#S+RR51bk05sUG)V_r5b5adQn=BsR^gk>LWq=jW)ZDgh8d|1vU&(3l_ zY-ogKTuXi|bG5|c+1jLbmb}nLQat*2Hesl@+J>5Yt%+?c=a*QTtF@8P^rMYpEXf#x ze%iO8B&JB|edb~qi+++ZrR5!cBz1~-LYbrzhB=#13&XkOUYdlKhCCV0K6T0jhBk^e z!kMJzsvOUjKF*L|6Bt+Gxt{U4X5;qGbo8A*-OdZNY1rle8D%Q_}@}|KZ?02 z_D|79@ck&-Db^w*Efr^7hLZ6$V@RKK=aVn`Y9+}xSNbZa_-~`XQhZaiP5Db1Df%ns zBdJqLvVO@vF{YB7i>u|JSCr2e=Kud}@Vj|z2)DLB zh5Gw*@bA~(!arZUgsla|_*efRE>tz(llDHmy(W$imbKu&AKk)_+uQN>_@y|OUxYpB zS-5@rG+t|J#NLWhoa;Y?i4(?Q@;4@8@}#fhS7qh+$=o8mcWoGbm1RgSn1k!{icni# zfOmwz=ZAOW!ou0O)V&LzcQm1UX%Y5KaOj=r@cnx&x+)8BVtobPe543LWiGy0I}6Qa z({Xg=Y+T#C055MS#@+rnf~q+fO02>M2NL*f{bc;DZ82`N)!?UV3sF~^gFhaOqjya) zK0Cb^$D5X5WE=gSX~g077M$2pfIlDJh+Q>VxZbrAM>fpBty4SE)sTxXk1Yc(@4=@} z&cLT9zKe5h3(>zN2RGWYuweEi{PkiF+G=OwY-<7fgDQM{crLC#k&S2L4B$7nO~N}zGBJ8G8*d!R!+%~|gqs(4;_|^K zzPMVB>A4SLM{^O*4y?x6o^81EyZyj5AAcX7iW_G(Ape1TkUwoQ7UiU);pZ+yG z|5PD%Y@CX{ZTVmIB7NLgq>mquyB}BM_iy##%yZ=!eRnQS9`NnKi z$LHhV&>=k0+kr`)^RVuvP88G?BV$)J2HwAf=G_6ZTbAIVbxSezP#k+tJq@vc2V$El zao_SXWQ7|ce)AH%-j&6sP|Rmtc^o# z-h*A2K1B7vC~{7JgfZhMVBEAa`1fT)tbG|{X2npN<6%v1ck+OP?VdA+qZ9HbaWKM!^0RH e97K0_H(Fa;QCnM!g$oxVBO?Rp>FG%Q0saRtgAqvp literal 0 HcmV?d00001 diff --git a/assets/voxygen/voxel/npc/archaeos/male/leg_r.vox b/assets/voxygen/voxel/npc/archaeos/male/leg_r.vox new file mode 100644 index 0000000000000000000000000000000000000000..702d3e818ff50688ca41de5db7d59a1eb844e1c8 GIT binary patch literal 2540 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 X7oDA*m@#7pMvWSU+S*!Fe*yjvE_pL9 literal 0 HcmV?d00001 diff --git a/assets/voxygen/voxel/npc/archaeos/male/tail_back.vox b/assets/voxygen/voxel/npc/archaeos/male/tail_back.vox new file mode 100644 index 0000000000000000000000000000000000000000..cfc6561f4073e56fc98ed6ddf5a0d4e9b70d5a2c GIT binary patch literal 2624 zcmX9<3vd=cxOKxG6P6iAB&nKDvs)#=oBBwB1|s?(NgryW~h`t_{6GiT1(|3Bw^-~XR; z{@Xfl(bszo!W3_}W*mI=d? zVbhb5kSCKNS2|`|O3Rm=xiTI~YbkP4S!rAIyeu)(w&Fz@4Y{`DS=(Vb+h#>oVr6BF zVpE2z1utk$K1n0Z6)!L?Jf?)p9iEfgN^^%5Wg_HqiepmvvXtk!Ql3m39#`7sVcIVx zKIxDrY@Xwq7ldPF1>p-Vioy|DZi^fze62-Z+E!YoLava~wJBaxE=~JNN?(@nyeeTi z5r|fvP|8;nucRnyisz1UwL@!?{JzR9UFAq$k*^ATmB{LVcZ$v!vkEe17FEK^$pq<` zSrD`)QlYFYC4Mn8FC#23qE^;X($^`oC{tEe)4rxNXu1m-V+ECGXYzZVhbh}lEsNmP&{*w++Cc@)J<@)LrUNsDqSijRlNMIuxtQbtCljdGDT z%2d)Q6A{W44P`_$RIbPtNh2fTXEMr$dfTqQyo6$@n^o8CCtVE_Lg0R3(q>BH@f z&tmaImH79Y@8F*=U&6ZTTKuc`G%hqP#iw2m-d)m;59e&ge?PvBA9^0%jn2lAaW&Wx z8-+WkPT`I9ZP+!v9_M-wAeo3@@Yj+UJm>-ZvY`<_o>+qquJ@y7Mg#IwCg8@T8niT4 z<2}Q`7YDcF!ql<2)U^#?Y+aA8*)`am5ZIR#_->qI=ZtC`TQMDPKVE~}j4FJ&Y&14B zl;iOHvADiw3SM1Vi+jE8$TdwsUv?or+?&PcD+c3lTV~?smS+59*?6?pSK^QR+p%v+ zEj~ZB3rE+_!qq1!?)f$x^fu$z+G_my;3{lu9)%k_=i|`I5x9NA#m=QwxPN30aCrwl zdu9YaJN7M{+cFisYb$Zn8-*!j2jQ<5yRoHZB+hnJqc_)tPYzDRji)Q{Li@vLZyAlh z^kwnErM>uGTMb^@+k&4S>A>!`F}T{D0nQD=dxtU@I9`Fb4voQo-k6447hPQ5UxiO! zn~pE9HKM%g5p3E}gR>_W;cWMlxcl2Zz;%Vc_YcF(Gb=If;S!7+J{Z#~W2h^OVO)6% zFFiXRn^q0Ot}WxfszodkMl2e|y-yb4_wV%J%!`c}cz+^}A6B^LPzgm zv_1bKI&b_2V@_N|ct#^iT31ufmoa920mGXYV@TIYv~J2{;nr>}I)4izR~AvT?{!oz zYlpFB2ew`M2n$XQpz_qmaH0uBhBrVxSOH_%t8m7)!|!OOO1MKU#fabcTIKS^#IJEgZIvT%^+R>9SbLeukRc*!M zQETz-F`ZaAdm;Kd`%yo#8Vg6%V@2J3k# z67Jvq2Tkcc{OsqKaph`1e(@IJZ!O@7^-rLAaWm%4n}Nrs)M0$>1k_YzaOch)3=9mQ jzrP=+PoG9tR~I@uI?&S6f~ixdV(8GJh{a+EUV#4r@#7vc literal 0 HcmV?d00001 diff --git a/assets/voxygen/voxel/npc/archaeos/male/tail_front.vox b/assets/voxygen/voxel/npc/archaeos/male/tail_front.vox new file mode 100644 index 0000000000000000000000000000000000000000..086929c60133de9e740e1daa5abc6f7f1aa44ffe GIT binary patch literal 1960 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 diff --git a/assets/voxygen/voxel/npc/axolotl/male/feet_b.vox b/assets/voxygen/voxel/npc/axolotl/male/feet_b.vox deleted file mode 100644 index c84f6a90749dc3e4b7aad4c04ab9882ecf5b192a..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 1128 zcmW;K-Hp>g6b8_{XczIYFX;e9bZ{#G1)+TaBp_&^fZIY^NCil@g|v_sriHYS7R;Hk z^Evhx|D4SD_xIQL|03e+$Cq!u;@4xu&zHZSpXY()tvtvZdHwVE<%93JypyMRcz%=z zan`)Ve(2))Nq&6!^f4UFWn0UzZ7E4n&uZ8V{m>8n(9hFa-*#Hx`qs}&OJDkOQ2Nr( z+oeABsZT}feYVhtKJ=l-(a2m|N>cQG7&e1v@C=^8vv@p%XYdT3!L!IbgJbW$pk$4B%$$&)vp+Zw)6SCold9icsy>0!(rR+ L_uFo_b8f_c3kPOa diff --git a/assets/voxygen/voxel/npc/axolotl/male/feet_f.vox b/assets/voxygen/voxel/npc/axolotl/male/feet_f.vox deleted file mode 100644 index c84f6a90749dc3e4b7aad4c04ab9882ecf5b192a..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 1128 zcmW;K-Hp>g6b8_{XczIYFX;e9bZ{#G1)+TaBp_&^fZIY^NCil@g|v_sriHYS7R;Hk z^Evhx|D4SD_xIQL|03e+$Cq!u;@4xu&zHZSpXY()tvtvZdHwVE<%93JypyMRcz%=z zan`)Ve(2))Nq&6!^f4UFWn0UzZ7E4n&uZ8V{m>8n(9hFa-*#Hx`qs}&OJDkOQ2Nr( z+oeABsZT}feYVhtKJ=l-(a2m|N>cQG7&e1v@C=^8vv@p%XYdT3!L!IbgJbW$pk$4B%$$&)vp+Zw)6SCold9icsy>0!(rR+ L_uFo_b8f_c3kPOa diff --git a/assets/voxygen/voxel/npc/turtle/male/feet_b.vox b/assets/voxygen/voxel/npc/axolotl/male/foot_bl.vox similarity index 100% rename from assets/voxygen/voxel/npc/turtle/male/feet_b.vox rename to assets/voxygen/voxel/npc/axolotl/male/foot_bl.vox diff --git a/assets/voxygen/voxel/npc/turtle/male/feet_f.vox b/assets/voxygen/voxel/npc/axolotl/male/foot_br.vox similarity index 100% rename from assets/voxygen/voxel/npc/turtle/male/feet_f.vox rename to assets/voxygen/voxel/npc/axolotl/male/foot_br.vox diff --git a/assets/voxygen/voxel/npc/axolotl/male/foot_fl.vox b/assets/voxygen/voxel/npc/axolotl/male/foot_fl.vox new file mode 100644 index 0000000000000000000000000000000000000000..87a904a820c1c522fe40bcafb9595e812788bb56 GIT binary patch literal 1128 zcmW;K!L8Fk6a~=t5eqeH9h zr+yAM^g}=NLoxJTTj)a{`q1NOWbP#?L-c-VhvsRX=4qbA<7uAeX`bd;WS-_}p5|$u z^*4B$r+J#EdFEehp5|$u=4l?fB`L?^DW2k4Q@~RIv1vIaN%&$Pz)X~(en(R!83T&GM|{aN^@qW#?BKw!4o{e z6Fe>#Jx}liPw*I0^gO{6Ji+5OqUQ;o;0YMF7QF$(#o@$<@+Mcg$XQNul!NSLC-IP* zT;(EXImuBDvX`C2LvC`Fi=5>oM>)t|cH86e*lxGmcD-J=%jL42&*$xQI&H_}aXTCi O+kU^_cDtQ(BmM)LJ8en; literal 0 HcmV?d00001 diff --git a/assets/voxygen/voxel/npc/axolotl/male/foot_fr.vox b/assets/voxygen/voxel/npc/axolotl/male/foot_fr.vox new file mode 100644 index 0000000000000000000000000000000000000000..87a904a820c1c522fe40bcafb9595e812788bb56 GIT binary patch literal 1128 zcmW;K!L8Fk6a~=t5eqeH9h zr+yAM^g}=NLoxJTTj)a{`q1NOWbP#?L-c-VhvsRX=4qbA<7uAeX`bd;WS-_}p5|$u z^*4B$r+J#EdFEehp5|$u=4l?fB`L?^DW2k4Q@~RIv1vIaN%&$Pz)X~(en(R!83T&GM|{aN^@qW#?BKw!4o{e z6Fe>#Jx}liPw*I0^gO{6Ji+5OqUQ;o;0YMF7QF$(#o@$<@+Mcg$XQNul!NSLC-IP* zT;(EXImuBDvX`C2LvC`Fi=5>oM>)t|cH86e*lxGmcD-J=%jL42&*$xQI&H_}aXTCi O+kU^_cDtQ(BmM)LJ8en; literal 0 HcmV?d00001 diff --git a/assets/voxygen/voxel/npc/axolotl/male/head.vox b/assets/voxygen/voxel/npc/axolotl/male/head.vox index 1ea36d69364aa49607351fd0d098bfd8ab846b41..2b9a82f3e820cb9c1f41166de6dd63cbf165ca75 100644 GIT binary patch delta 352 zcmX|+F-}845JPRx(m;+t!Br?g`Vx==DGIqvH~=*l;X;(Vr+_yp@+He2Ydqfnb@zLF zKJ1SV-;!P*w>L;HH`4oddfN5C$9To@^w2b1sx?wJT=I&{o)^vx zFsPv8^E6^$j1Ibk;ZCMtDyHzoF1mu~#*XrPd+Gbf z%jy2x%$^>$XT-kB>}@+gjv zWn_*1>p?r=WjJ^b@D)PUj39%c#G`2LXb^0s*?bYRh21sTY;x+LUTE?+)9@G`!((_1 TkKr*qeBG>)JKy9#?>yiimkSdv diff --git a/assets/voxygen/voxel/npc/axolotl/male/tail.vox b/assets/voxygen/voxel/npc/axolotl/male/tail.vox index c5905e954a3a178af37ef3d2b7f0a3a1d0cfe058..593e3d138e499e7afd32e9391c7df9a4876e375d 100644 GIT binary patch delta 89 zcmbQhd50q)%s)b58Uq7^ucN0QkYey)VPFXMjB@1xae#mkh?#+y35X*iqdX;mGzhRl Xs22=Oj6lrr0;mv(8DDH{;b8#)S=kMR delta 142 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 diff --git a/assets/voxygen/voxel/npc/fungome/male/feet_b.vox b/assets/voxygen/voxel/npc/fungome/male/feet_b.vox deleted file mode 100644 index 5ce88d2a1330afad11589a81d3b34c5fb0e91945..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 1128 zcmXBTF^?tTkH3t)Uq0Nu_#P4OZf@V(#pmmYPq+7Po{a;`6S$|?|yMCNj`tqUlr7!)s zH1(-Z2dPi}7_RA?zUiBy>HV#t4}IuEkE4;XmZUV%`=Z-)p3c*GI?v?sbe_)Bzv+1< znWyt~p3c*G=Fi~iJe{ZWbe{3kI#1{6Je{ZW&`n9%7EkdM&zu6D0w^~t1D8P_9)6k{ zJx}qJ`6-?`RXoL0JjGKybNYCSr+A8|c*c|#Pw^B_@f6RT<~cJ%Gu9@0^OHQulRU|j zJo9nzBu_%58>YeMBXUtXAsr-7^32D^lRU|jJjpX2W%49X@+434%*Q*Q(wLc{8LOVB z@id;s(|8)sd<}RSPvdDkjc2|ZJdLOEG?3<|^K~&;b76B*Q#2lbqUUKmji>RbWxO%t zDUF#K8Y@rm1W)h;Pw=>0^gO{6Ji%i~(engP@C47_Kfl)g`-j(6&l5ZWlA|1CAM2|n*5^B)x3ZDA$XQNul!NSLk)3R1vtBNj l^?W|Br_*UY9*^tca9H>I{kkm6y4&s6?RL9vHXG+g`~x_~YGwcc diff --git a/assets/voxygen/voxel/npc/fungome/male/feet_f.vox b/assets/voxygen/voxel/npc/fungome/male/feet_f.vox deleted file mode 100644 index 5ce88d2a1330afad11589a81d3b34c5fb0e91945..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 1128 zcmXBTF^?tTkH3t)Uq0Nu_#P4OZf@V(#pmmYPq+7Po{a;`6S$|?|yMCNj`tqUlr7!)s zH1(-Z2dPi}7_RA?zUiBy>HV#t4}IuEkE4;XmZUV%`=Z-)p3c*GI?v?sbe_)Bzv+1< znWyt~p3c*G=Fi~iJe{ZWbe{3kI#1{6Je{ZW&`n9%7EkdM&zu6D0w^~t1D8P_9)6k{ zJx}qJ`6-?`RXoL0JjGKybNYCSr+A8|c*c|#Pw^B_@f6RT<~cJ%Gu9@0^OHQulRU|j zJo9nzBu_%58>YeMBXUtXAsr-7^32D^lRU|jJjpX2W%49X@+434%*Q*Q(wLc{8LOVB z@id;s(|8)sd<}RSPvdDkjc2|ZJdLOEG?3<|^K~&;b76B*Q#2lbqUUKmji>RbWxO%t zDUF#K8Y@rm1W)h;Pw=>0^gO{6Ji%i~(engP@C47_Kfl)g`-j(6&l5ZWlA|1CAM2|n*5^B)x3ZDA$XQNul!NSLk)3R1vtBNj l^?W|Br_*UY9*^tca9H>I{kkm6y4&s6?RL9vHXG+g`~x_~YGwcc diff --git a/assets/voxygen/voxel/npc/fungome/male/foot_bl.vox b/assets/voxygen/voxel/npc/fungome/male/foot_bl.vox new file mode 100644 index 0000000000000000000000000000000000000000..87a904a820c1c522fe40bcafb9595e812788bb56 GIT binary patch literal 1128 zcmW;K!L8Fk6a~=t5eqeH9h zr+yAM^g}=NLoxJTTj)a{`q1NOWbP#?L-c-VhvsRX=4qbA<7uAeX`bd;WS-_}p5|$u z^*4B$r+J#EdFEehp5|$u=4l?fB`L?^DW2k4Q@~RIv1vIaN%&$Pz)X~(en(R!83T&GM|{aN^@qW#?BKw!4o{e z6Fe>#Jx}liPw*I0^gO{6Ji+5OqUQ;o;0YMF7QF$(#o@$<@+Mcg$XQNul!NSLC-IP* zT;(EXImuBDvX`C2LvC`Fi=5>oM>)t|cH86e*lxGmcD-J=%jL42&*$xQI&H_}aXTCi O+kU^_cDtQ(BmM)LJ8en; literal 0 HcmV?d00001 diff --git a/assets/voxygen/voxel/npc/fungome/male/foot_br.vox b/assets/voxygen/voxel/npc/fungome/male/foot_br.vox new file mode 100644 index 0000000000000000000000000000000000000000..87a904a820c1c522fe40bcafb9595e812788bb56 GIT binary patch literal 1128 zcmW;K!L8Fk6a~=t5eqeH9h zr+yAM^g}=NLoxJTTj)a{`q1NOWbP#?L-c-VhvsRX=4qbA<7uAeX`bd;WS-_}p5|$u z^*4B$r+J#EdFEehp5|$u=4l?fB`L?^DW2k4Q@~RIv1vIaN%&$Pz)X~(en(R!83T&GM|{aN^@qW#?BKw!4o{e z6Fe>#Jx}liPw*I0^gO{6Ji+5OqUQ;o;0YMF7QF$(#o@$<@+Mcg$XQNul!NSLC-IP* zT;(EXImuBDvX`C2LvC`Fi=5>oM>)t|cH86e*lxGmcD-J=%jL42&*$xQI&H_}aXTCi O+kU^_cDtQ(BmM)LJ8en; literal 0 HcmV?d00001 diff --git a/assets/voxygen/voxel/npc/fungome/male/foot_fl.vox b/assets/voxygen/voxel/npc/fungome/male/foot_fl.vox new file mode 100644 index 0000000000000000000000000000000000000000..87a904a820c1c522fe40bcafb9595e812788bb56 GIT binary patch literal 1128 zcmW;K!L8Fk6a~=t5eqeH9h zr+yAM^g}=NLoxJTTj)a{`q1NOWbP#?L-c-VhvsRX=4qbA<7uAeX`bd;WS-_}p5|$u z^*4B$r+J#EdFEehp5|$u=4l?fB`L?^DW2k4Q@~RIv1vIaN%&$Pz)X~(en(R!83T&GM|{aN^@qW#?BKw!4o{e z6Fe>#Jx}liPw*I0^gO{6Ji+5OqUQ;o;0YMF7QF$(#o@$<@+Mcg$XQNul!NSLC-IP* zT;(EXImuBDvX`C2LvC`Fi=5>oM>)t|cH86e*lxGmcD-J=%jL42&*$xQI&H_}aXTCi O+kU^_cDtQ(BmM)LJ8en; literal 0 HcmV?d00001 diff --git a/assets/voxygen/voxel/npc/fungome/male/foot_fr.vox b/assets/voxygen/voxel/npc/fungome/male/foot_fr.vox new file mode 100644 index 0000000000000000000000000000000000000000..87a904a820c1c522fe40bcafb9595e812788bb56 GIT binary patch literal 1128 zcmW;K!L8Fk6a~=t5eqeH9h zr+yAM^g}=NLoxJTTj)a{`q1NOWbP#?L-c-VhvsRX=4qbA<7uAeX`bd;WS-_}p5|$u z^*4B$r+J#EdFEehp5|$u=4l?fB`L?^DW2k4Q@~RIv1vIaN%&$Pz)X~(en(R!83T&GM|{aN^@qW#?BKw!4o{e z6Fe>#Jx}liPw*I0^gO{6Ji+5OqUQ;o;0YMF7QF$(#o@$<@+Mcg$XQNul!NSLC-IP* zT;(EXImuBDvX`C2LvC`Fi=5>oM>)t|cH86e*lxGmcD-J=%jL42&*$xQI&H_}aXTCi O+kU^_cDtQ(BmM)LJ8en; literal 0 HcmV?d00001 diff --git a/assets/voxygen/voxel/npc/fungome/male/head.vox b/assets/voxygen/voxel/npc/fungome/male/head.vox index a594f85e5a546aae6e04896e0bf34e0ad2a821f7..2b9a82f3e820cb9c1f41166de6dd63cbf165ca75 100644 GIT binary patch delta 396 zcmWlUK}rK*4255kzbM^Rw=O(`#RGIBl&W1R)s2FPTTfumAR~o2hq&_yy@KFMW=;{m zEIwY6$;hIpP7$OnX5&&ww?9epS?xj=jV(6*n#Gmn(w<+d!Fb_+Uke&8Ro)MU+^n(I~afdX;hyUv*8Rl4O8knD%1&%Tkf0qBA6b zvw&0MGzs9`2^HfXXdJ*99>D1l=;bUB;P!Ght*_)^xt@-11L;Z6PP$3X9f@KzWSS=J jb*IZTwrAgL-rCl_^yufK&E5MUy@u7`B1%3^I(Ym8NUcri diff --git a/assets/voxygen/voxel/npc/fungome/male/tail.vox b/assets/voxygen/voxel/npc/fungome/male/tail.vox index 6941b0f8806fab7f480261a5eb95632afef48902..593e3d138e499e7afd32e9391c7df9a4876e375d 100644 GIT binary patch delta 110 zcmcb@afd@N%s)b58Uq7^ucN0QkYezdC@8GM3}i3?aYSU4rvyk82v{N13kD`eAZB>M zzzD*OFD822Wt=%#jj@h-=FI<_mowgFWM?q`|DVD5%;aw7R91#ihW`wczcR-I0O%we A&Hw-a delta 102 zcmcb^afL%L%s)b58Uq7^ucN0QkYaF{C@8GL1Z044L}Zkw07w)Fm?2as10w?vGlotK txXYM4S&y-fxuId{=Jkws8QCA6+Wh~__C=E?GpDj@g);o-oBWqK9smv*8WjKl diff --git a/assets/voxygen/voxel/npc/gecko/male/chest.vox b/assets/voxygen/voxel/npc/gecko/male/chest.vox index dab811c342a9372fbc44c8b8ed9485d5b799e74d..6782d48f39ae9ffb4c2802a163ef0e30090b970f 100644 GIT binary patch literal 3736 zcmXBW&u#R^83*9`KSQozKpg}+=E@2jC<-)+s_W+KR<@>>$gAt{=@OY*Ks@yzW@7= zZ@eEm0t;OA>1WBjXx@Y$&}N^93niu%Ygd=3hoN+YK5HIq{KoXE}xg-)dra`?Is zbNHM|&L=X1LZ{LQC463p%%q~9%%ISzG(y!+WF}SpWCn#!r4gEbA~UJ!Co?E?Dvi+P zCwBcL=M$Mhp;Kv?^sftX=qEX!$P5adN;{6FUmI~UpCl$SgF>g$h_gNt6PZDwQ)#4& zaq`9bQJi-wjnb_%HpJJ39OCDo(5W<{Jusj9z<4xHr_zWiU1ws7_CvHEqWuu?Q zp;Kvurk}`6YWm3x3Y|(Lbp1qTQrAyrQ0P<|Vdy6^lZJjWgF>g$h?DswF_9S*I+aE& z`8tzkePjlOPNf~kZl4iL(O<4*wD(TFSXT<2N;_U>`-9s0d!zbHXq1qyok}CebR85r zl}55BCNhIUr_zqswO>0i+dm{GGJ`^=(g-D8FGOY%6PZDwQ)z^%pU6yNA~Ps-Dvi+e z6PZa&WCn#!r4hP*A~T7J%%ISzG-9c)Td#5GCoz#36grhgnv9bf6grhgnvIhg6grj0 zoU^&j*K$#((vD-u)-78nM^ehxDO;y(o%GYGG*Yy$NUk-J8OL?$R2s=1oX89cok}Cr zY&~RRCNYs26grhgX!?oFBqlP0LZ{M*T_1^w%%ISzG}16mW>Dx<8fh|4W>Dx<+Hqbz z1LWB_g-)d%$BQF%cwVTnnCBu-dmj{Y-pQ$$Z_go}N;_UR&jl$L^X+{M3Y|(Ld4?x4 z<9MFwR2s2*&PhyU28B+g9mgUkvFRr3b{J+G$_xVz0<5U_sRr6VW9$6Pks_&gjBjx%&kr@;^HCOZL zxiqKqIj{PPJ_dzO_53zcHBPSXN1;<`q-LD#SsxTSl}75u$=x`GPNk8CaWaEKrw-#} zb3e$FaSEMEJC62dBgzupuh@H?>a)BttIz(9tYL`%Ir0b z&cFWgx1apac7EN?uifvBm4$G-9i`o`U42*I)pzxyZByTzZ0ei(rhdG2RbSOtFIM$c z{kYtszNjzii^8Jr=N8n1dQcDQA^iWge(!FyyXfu$yXG^BU%NcJJi9!*JZC(4c6oMr zc6oMr&dBoY^6c{L^6c`Qe}+7}Ji9!*Ji9!{pSH`h%d^X~%d^WP-I-+bdy{9AXOrig z0(mw8HaFW`cyp0+S`2PZHhDIAHhIpel4p}=lV_7>ljod1c{X`Ac{X`Ad5$UF%pFvkI}g;p*b&5_!|AVfA8_XO-t% zHhETgR(V!=R(X!4T;*BiS>;*fS>-vG_gtl8W{xz+xB9W<@+|T!@+|T!@|@d1o<*KT zo<*KTo^xx+v&gf^vk0=d>A788Z1KiL)1t7*;|Fzl7I_wV7I~C8cFeI#$IKjQd>>m) zo*++EQF zc4zOC&)~e@)YBV))grDXcza+Qo8_oHR8I8&S|6JDEKSu+u(H+!1bgxVg2A!{c_{;0 z^Tihx&XUQ~Asg+K=#gPaW|k-g^#Ki0!xa@ug$d7Oj+(a&_1FO&)LfyGR~EbdlBXP} To(@4fugmb^0(SV~Iv*c@eSkIz diff --git a/assets/voxygen/voxel/npc/gecko/male/feet_b.vox b/assets/voxygen/voxel/npc/gecko/male/feet_b.vox deleted file mode 100644 index 64048592f9ff7be790be82e13b04846e6a4fb063..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 1112 zcmXZa!Hp9^5CzbJ<;cYn0U)Q)5iBx7djKSm(Xs(l3QoZhAXN%Z!6{S{m>7^ z(EDtm4}IuEAMx+Dw(Ul3&^ACjc~NYdr+J#Ec@~eSd77trnrD%Dnx}c1r+L=j;Ax)b zX`bepf310%r+J#EdFYm;Y>TIOif2s$PXUyhm4VA3Yg+tRz7$XK6wjI}p5iH<;whdr zeLTfeJjGKyb4rV+c#5ZZif2vpnwhDY?;-j*^*qUwJjs(hYdLt5Cn3@e)8K1~T$D~o z2g#E>YuR{`CwY=5dFE0kPx2&B@+8k%-nB||W~OGo^>fL22G8IbJcDOF20Vjj@C=^8 zvmOne!83RU$Z*s3xEO4>a5!lw29J;Ec?Qqm89Zv4Pt07UIWtq^Js&lm;0d1K2_Bb= zo+o&MCwL4gdY<43p5SpC(engP@C1xoi{60Y;&9?!d6TPLXL_Ey=g-fV&;KIg`_uCeA8~je@%#Dp>&JQE^+6uwoxJ>geg5QgzMK}1@$mK- z@#d>My#4z20BDMR#rXuIZVp5|$u#p7w7=4qbhS!AB(X`be3p7l3)nx}c1 zr+MaIYo6w5p5|#Dx+N+5;whfuSyRAM0Oe+7;4;XX7C)9R#Zx@Rv!;rtc#5ZZif2t9 zPw^B_@f6RT(&8ze;whfuS<}2`W@_d(L~nkQCwY=5d6H)>2T$@OM7m)bd@YfS(h2Dx zd6H)>8&C2iPx2(sT*~B0p5#fMcm~LD)AhI*Y`AbZX($Gdx9E8W&)^w6YMD>WT%|cPQ)A-^p5O_d;0Yd=i=HQV zf+u(kDSDpZ37+6_8`1LwPw)hcTZ`U+;o@-OU3rtMT;wb#Im$uyvXi*WO|Ej0vz+88 z2ieO`;x0G2%0eH9h zr+yAM^g}=NLoxJTTj)a{`q1NOWbP#?L-c-VhvsRX=4qbA<7uAeX`bd;WS-_}p5|$u z^*4B$r+J#EdFEehp5|$u=4l?fB`L?^DW2k4Q@~RIv1vIaN%&$Pz)X~(en(R!83T&GM|{aN^@qW#?BKw!4o{e z6Fe>#Jx}liPw*I0^gO{6Ji+5OqUQ;o;0YMF7QF$(#o@$<@+Mcg$XQNul!NSLC-IP* zT;(EXImuBDvX`C2LvC`Fi=5>oM>)t|cH86e*lxGmcD-J=%jL42&*$xQI&H_}aXTCi O+kU^_cDtQ(BmM)LJ8en; literal 0 HcmV?d00001 diff --git a/assets/voxygen/voxel/npc/gecko/male/foot_br.vox b/assets/voxygen/voxel/npc/gecko/male/foot_br.vox new file mode 100644 index 0000000000000000000000000000000000000000..87a904a820c1c522fe40bcafb9595e812788bb56 GIT binary patch literal 1128 zcmW;K!L8Fk6a~=t5eqeH9h zr+yAM^g}=NLoxJTTj)a{`q1NOWbP#?L-c-VhvsRX=4qbA<7uAeX`bd;WS-_}p5|$u z^*4B$r+J#EdFEehp5|$u=4l?fB`L?^DW2k4Q@~RIv1vIaN%&$Pz)X~(en(R!83T&GM|{aN^@qW#?BKw!4o{e z6Fe>#Jx}liPw*I0^gO{6Ji+5OqUQ;o;0YMF7QF$(#o@$<@+Mcg$XQNul!NSLC-IP* zT;(EXImuBDvX`C2LvC`Fi=5>oM>)t|cH86e*lxGmcD-J=%jL42&*$xQI&H_}aXTCi O+kU^_cDtQ(BmM)LJ8en; literal 0 HcmV?d00001 diff --git a/assets/voxygen/voxel/npc/gecko/male/foot_fl.vox b/assets/voxygen/voxel/npc/gecko/male/foot_fl.vox new file mode 100644 index 0000000000000000000000000000000000000000..87a904a820c1c522fe40bcafb9595e812788bb56 GIT binary patch literal 1128 zcmW;K!L8Fk6a~=t5eqeH9h zr+yAM^g}=NLoxJTTj)a{`q1NOWbP#?L-c-VhvsRX=4qbA<7uAeX`bd;WS-_}p5|$u z^*4B$r+J#EdFEehp5|$u=4l?fB`L?^DW2k4Q@~RIv1vIaN%&$Pz)X~(en(R!83T&GM|{aN^@qW#?BKw!4o{e z6Fe>#Jx}liPw*I0^gO{6Ji+5OqUQ;o;0YMF7QF$(#o@$<@+Mcg$XQNul!NSLC-IP* zT;(EXImuBDvX`C2LvC`Fi=5>oM>)t|cH86e*lxGmcD-J=%jL42&*$xQI&H_}aXTCi O+kU^_cDtQ(BmM)LJ8en; literal 0 HcmV?d00001 diff --git a/assets/voxygen/voxel/npc/gecko/male/foot_fr.vox b/assets/voxygen/voxel/npc/gecko/male/foot_fr.vox new file mode 100644 index 0000000000000000000000000000000000000000..87a904a820c1c522fe40bcafb9595e812788bb56 GIT binary patch literal 1128 zcmW;K!L8Fk6a~=t5eqeH9h zr+yAM^g}=NLoxJTTj)a{`q1NOWbP#?L-c-VhvsRX=4qbA<7uAeX`bd;WS-_}p5|$u z^*4B$r+J#EdFEehp5|$u=4l?fB`L?^DW2k4Q@~RIv1vIaN%&$Pz)X~(en(R!83T&GM|{aN^@qW#?BKw!4o{e z6Fe>#Jx}liPw*I0^gO{6Ji+5OqUQ;o;0YMF7QF$(#o@$<@+Mcg$XQNul!NSLC-IP* zT;(EXImuBDvX`C2LvC`Fi=5>oM>)t|cH86e*lxGmcD-J=%jL42&*$xQI&H_}aXTCi O+kU^_cDtQ(BmM)LJ8en; literal 0 HcmV?d00001 diff --git a/assets/voxygen/voxel/npc/gecko/male/head.vox b/assets/voxygen/voxel/npc/gecko/male/head.vox index 916d9989e681324c770dc731ae4b728cdb3cb17a..2b9a82f3e820cb9c1f41166de6dd63cbf165ca75 100644 GIT binary patch delta 337 zcmWlUF-`+f3`A$frio}GS_;m<4QP-eg@g(PE|W9Ra1pLULHYL-@LW8N?e%#6{_K8t z`?vGu;Y-rX)8T~Z__@Ek-cSse_m9K9XDmHKlx3*F)U9Q-R9mNPwB#)^d)}C=fT2PS zhNkcFd3@namQWIwoGVS?A7gEdF%uST9di}?SE%kM^pd+ delta 333 zcmWlUu}wrl5JPRx9Kng?L_$af^gw{b1wew(K{Hna360PW0ny(Q2;oieWbfbcj{nd8 zdw+O+KHYpudb~S6A$s^YT%9j44X3yFBD7^?7K zXwE&k)KawCSt_k4o02o3!c4I6BAmYz%TP~%N5oyRG%Ph*%>poJN;Cy`ljUI$nVKy3 lwPOx688j_&%nrJpb~K}v30e$j+L^yY!O)do!Pko~`yU2dNx=XB diff --git a/assets/voxygen/voxel/npc/gecko/male/tail.vox b/assets/voxygen/voxel/npc/gecko/male/tail.vox index e6be1ce75d02d668c7e4348fe07df4521d12e92c..593e3d138e499e7afd32e9391c7df9a4876e375d 100644 GIT binary patch delta 74 zcmaFDafd@N%s)b58Uq7^ucN0QkYezdC@8GM3}i3?aYSU4rvyk82v{N13kD`eAZB>M OzzD*OFE&Q-umAw^4h;eT delta 82 zcmcb^@q|M#%s)b58Uq7^ucN0QkYWg!C@5^g3S=+=aYSU4rvi`$0d^3tIF#`}YgD~UMjR8C?0AnEz+yDRo diff --git a/assets/voxygen/voxel/npc/odontotyrannos/Odontotyrannos-0.vox b/assets/voxygen/voxel/npc/odontotyrannos/Odontotyrannos-0.vox new file mode 100644 index 0000000000000000000000000000000000000000..1f1170ccb83fbf61138b0ebdf9e38ad102ae4aca GIT binary patch literal 4416 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 D_eNTx literal 0 HcmV?d00001 diff --git a/assets/voxygen/voxel/npc/odontotyrannos/Odontotyrannos-11.vox b/assets/voxygen/voxel/npc/odontotyrannos/Odontotyrannos-11.vox new file mode 100644 index 0000000000000000000000000000000000000000..218a9182f472f8a26565fcc3c185e22dbf173ad5 GIT binary patch literal 1228 zcmWlY4NTN^7{~wr{~c)4maMfh$tfvQgwq`ecpd@=$ore;9UP#%=~28~-V5D%!X_z* zXuJ$MQCs+u3Zzr)P+m#{*;u4yu4PWqv^I4XX{%Z4`t;|!efIr5zwP(^J=?R#n3=o4 zBM3rzY;uNd!hli`^vQV%v!@GL3K<`nnKHSiyyQmNr?pT<6n&~i$=51MGh}=mq9CJ` zY@$-Mi-NLR6cu(sQpm2fiIT!9Dtu*^&kCtpR7~Id+9lD)CMYDkq>vnvtn;TCdFWni)4I_27@k~{cBh8q+6RY6wc9&iCkWX1SPaW~Sn0Wq*T! z1#fX=Zv>S^i)e7Iq{I}=!z*b#y^+TAd)eH$(#omBIwr5J=GdWZE{sOY`60A>ve?lS zLZ5dl#l?}NW(1L6q9Q$e6}#IiX!WMjc4`a#6NlJTp3Al)(KL*hNijvCD+(do5=)!6 zo$W0(%&S|&hLd%K8?^+~X4C!CAmux3gjA)nR-Wmib_)&1_aW@A?lI` z?j%BQE5ftO1SUjb9y(9pu6knf4XnsB;u;+zqN0jpw|~XyIe>ZpVd}DPY_z>V6ooB{KjsKm3DG!n#etSi)Dq?Xj;yrDzG4w?4)+^Hrd^isCw=&YtE~@ zvN(pBb3+gcPBSaa!nW3HSgJoIaDF0w>UuIV_pxxkfjxDX*s|#W2U|yJs<=RT+Q+mw z`_V_`bGGGMI;+m&)P0C{c`PXb8!)SDFa?+LUT7UTX*qc7hKXJlPEJrX8>6zYm0BoS zx}GXkJ|pU8x|7`)RT2EGZK5b*4KJSkDR1d>zWi#4w$3hGwcFTI<6v{yX7naKnVCtf wi;E&c8;M38$kfynlarGS4-eDZ+e>3(BTlCigTX+2d^`aG0r>g(F}?r)1MQD@pa1{> literal 0 HcmV?d00001 diff --git a/assets/voxygen/voxel/npc/odontotyrannos/Odontotyrannos-2.vox b/assets/voxygen/voxel/npc/odontotyrannos/Odontotyrannos-2.vox new file mode 100644 index 0000000000000000000000000000000000000000..3cc0a510a22760e06b48384bdd16b8d9f9390370 GIT binary patch literal 5624 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 E2hzo|w*UYD literal 0 HcmV?d00001 diff --git a/assets/voxygen/voxel/npc/odontotyrannos/Odontotyrannos-3.vox b/assets/voxygen/voxel/npc/odontotyrannos/Odontotyrannos-3.vox new file mode 100644 index 0000000000000000000000000000000000000000..9a3066acff3fe988caf4736bcca5552422fb8e90 GIT binary patch literal 4244 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 D_eNTx literal 0 HcmV?d00001 diff --git a/assets/voxygen/voxel/npc/odontotyrannos/Odontotyrannos-5.vox b/assets/voxygen/voxel/npc/odontotyrannos/Odontotyrannos-5.vox new file mode 100644 index 0000000000000000000000000000000000000000..771bfd55c64cb60977c8910fc75e2c2d6caef470 GIT binary patch literal 2476 zcmX9;4Qy8B6@LHUYjl}pF&l#s?XXd3iz(P*DYO)j7Rpa8EtK+8ek=~?H}3uJT}y$) zjvq@^XalPSmw_S(Oro%&KsOyoLdIlcW*IY59d3ybH>S%LHZXhkTz8X`^WOK~_nhZE z=Q(fvoCWvy3L$1qu9{6J`tA~x_Ob9fa!Msi*~BQ5bxJ4F`Pg}%SfjJjsL&`MX&ppH+r%pV?}DswDiqel!kO6F zAZr!Z)^Sh8!l+mqoj7eGL2nq_X&XB4vYKAn)Kp}QjHOet)HYUVRvX4}ku;2**3JCR=vZ3A+KH1`Ou$+L z8>_%ZG9YepXamQ6A6seYb*zK5hn8Ffq4mV;9WfcM`Hy#z@jldCEAH#Shsyh`VqT+z zP+Q4(K9rJpq#|#QJf|3CR(Nt|1M){4#!wH`h-U6|k3BckiFQ6xv!@t7yhjv)+>Lv`_52Cm+7vQyXIE zTuH;e8^+e@UEmVIcft8qHlQv7a!5>!qZGNLPl9+P*H%)esn;~#W0o_f1SyYOD^&Z8^szzLI z@5beY8GJaa1^@l{8h+B=j?4E}W8b4C*fJy!H;){_JFA+pZF(7w_wK@H?XCFHjA=Ns zq6xn)ufR_yl;Fzw0d!ZEBRge0E=(#xT}2W0JpLHI*u5Dir;fwv&Q17Y<0^Dkm*Dy% z_u=nv=P z!yO?$UosqjYny?KZMFE>qGHsS72wZ38SGqGiqDU1!~Rt>arS#Wx2GAq+gos8MG-#T z-GoiGdAP83F8Y>^!nH%|v9+-fU+$X)oY{gK&yK>415e?2+f?+fD8R+`JWLrk41Yb< zg|@oUc%!uly-^iD**yUlp3cXMneQS~HwK^ehq!Wj2Y%RGf;V^6;ph8W@l5krobAd5 zjt|4{`f@RNFdx6_8;k$EGYwZyt;d<3LR^1yI&Ph-z(a)(W9{k^ym5E|KE3<{-2TIM z;Cz6;4~)dcV@omo+ux)O#qi<7>A!`X`@e&ipDV`Nrjgjz_9&J&;}pO0O=bFsNAAIJOGW7)Ftm^phC8kZMfR?TDB-m?bX z{WH;XY#mNs+>e#37huE7W!QGM88aFtqM|7uHJQoi>EDH?cW%V6j!9VjS_g{iOOdmw z28aK68ml))$Zwg6$Jx`7yE52z=mm)FYjM}IN(`M{j=Z=D;FT3%|$ML#J?0Wd*)gzl^U#sff03hw&Pu_Te%l6cArDnnzymK`p4MW zdJ?r08*yUiZ_w9r0<9I#qjbz<%*a`c=E99=$XkK$kL|$x>iOvJ7(m(RBFrCEh9wi{ zB3hBb@`vZ4rJxaK3wPjfRXgenit(q?E;JQS!k4%I!706iU;Oe6diwUEZPNy<+Zf}? zRZpU}p%!!IRN{##6H#0`9wmjjxOwv?1_uW*Fff3lM~|YjvlFeYt*EQ3!_=u$k&}~y LAwz~By#f9QxyBM} literal 0 HcmV?d00001 diff --git a/assets/voxygen/voxel/npc/odontotyrannos/Odontotyrannos-6.vox b/assets/voxygen/voxel/npc/odontotyrannos/Odontotyrannos-6.vox new file mode 100644 index 0000000000000000000000000000000000000000..47280bd4f0ac51f53972c330e5f0d07152d63762 GIT binary patch literal 1228 zcmWlY4NTN^7{~wr{~c)4maMfh$tfvQ(l?f+h^b3^V@#k=eIq3OzAlb z+=3va#u(CM69$!nkY&h?pY1JVDP(+PX3FH4a}6%py;>+Eias@> zUgP?DBLf>!XiU^{bYlXS*Xyt+YIvHzoU-U89LNY|yf~KA1ra=VTd^C$@z}Dt*<$1I zMt^>bXO%;>xFyZshAos}Fd(Q?1Dkov4(CK@y7 zDhT54@vSuGX?W3{3d1{jxF?8*N8h2pHV$`*nn`Ccv7z($ZLpbI<1)@Tw7BgC?scwa zV!Mii*0-@5m-EPDm{4_+_4m+yKWY)?vUDRQv>G(c`-4(o4l*rt)Xo9N?5xzT# z(AS3W>@tDzkywV$6S%99=sY7Ua!u5ZjT2U0$+6qN;&30pvi~p*6F(4ge303RdR{ga z$(bhzDXnI4mYMmk9!wQgWY;y5bM_X?3Tn``o=2T;MJV1${m^YPd!|tL-eK09S9xV| zG&AR_5b{qmE7Z!iwrf~xJ|%E|0)CoC($e>_aK4c}4VT!m=>P}Y#%M0TKv~Miv^oaJ zip=9|>$h}Op2ea6kcj0mBn521qN&3iT*7-H4P>We<7pTnYMGYopeQy*W?(O|QoM9M zmFhf3H7)cQoS4*M{2b9tVb~g8Jo{7L(&v2n)iCW{-PG1^V@q8%n@cy7WzHf!J&|>> uk%UErqtgU3Jw46T)D$BlBlPw4;c~ffI2;&_M&jb)2nYzk&(9C<{{IgJmUpHA literal 0 HcmV?d00001 diff --git a/assets/voxygen/voxel/npc/odontotyrannos/Odontotyrannos-7.vox b/assets/voxygen/voxel/npc/odontotyrannos/Odontotyrannos-7.vox new file mode 100644 index 0000000000000000000000000000000000000000..70430155fdc582b648fe0db240d96d34b65fbb56 GIT binary patch literal 2272 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 MmjFYybcN literal 0 HcmV?d00001 diff --git a/assets/voxygen/voxel/npc/odontotyrannos/Odontotyrannos-9.vox b/assets/voxygen/voxel/npc/odontotyrannos/Odontotyrannos-9.vox new file mode 100644 index 0000000000000000000000000000000000000000..771bfd55c64cb60977c8910fc75e2c2d6caef470 GIT binary patch literal 2476 zcmX9;4Qy8B6@LHUYjl}pF&l#s?XXd3iz(P*DYO)j7Rpa8EtK+8ek=~?H}3uJT}y$) zjvq@^XalPSmw_S(Oro%&KsOyoLdIlcW*IY59d3ybH>S%LHZXhkTz8X`^WOK~_nhZE z=Q(fvoCWvy3L$1qu9{6J`tA~x_Ob9fa!Msi*~BQ5bxJ4F`Pg}%SfjJjsL&`MX&ppH+r%pV?}DswDiqel!kO6F zAZr!Z)^Sh8!l+mqoj7eGL2nq_X&XB4vYKAn)Kp}QjHOet)HYUVRvX4}ku;2**3JCR=vZ3A+KH1`Ou$+L z8>_%ZG9YepXamQ6A6seYb*zK5hn8Ffq4mV;9WfcM`Hy#z@jldCEAH#Shsyh`VqT+z zP+Q4(K9rJpq#|#QJf|3CR(Nt|1M){4#!wH`h-U6|k3BckiFQ6xv!@t7yhjv)+>Lv`_52Cm+7vQyXIE zTuH;e8^+e@UEmVIcft8qHlQv7a!5>!qZGNLPl9+P*H%)esn;~#W0o_f1SyYOD^&Z8^szzLI z@5beY8GJaa1^@l{8h+B=j?4E}W8b4C*fJy!H;){_JFA+pZF(7w_wK@H?XCFHjA=Ns zq6xn)ufR_yl;Fzw0d!ZEBRge0E=(#xT}2W0JpLHI*u5Dir;fwv&Q17Y<0^Dkm*Dy% z_u=nv=P z!yO?$UosqjYny?KZMFE>qGHsS72wZ38SGqGiqDU1!~Rt>arS#Wx2GAq+gos8MG-#T z-GoiGdAP83F8Y>^!nH%|v9+-fU+$X)oY{gK&yK>415e?2+f?+fD8R+`JWLrk41Yb< zg|@oUc%!uly-^iD**yUlp3cXMneQS~HwK^ehq!Wj2Y%RGf;V^6;ph8W@l5krobAd5 zjt|4{`f@RNFdx6_8;k$EGYwZyt;d<3LR^1yI&Ph-z(a)(W9{k^ym5E|KE3<{-2TIM z;Cz6;4~)dcV@omo+ux)O#qi<7>A!`X`@e&ipDV`Nrjgjz_9&J&;}pO0O=bFsNAAIJOGW7)Ftm^phC8kZMfR?TDB-m?bX z{WH;XY#mNs+>e#37huE7W!QGM88aFtqM|7uHJQoi>EDH?cW%V6j!9VjS_g{iOOdmw z28aK68ml))$Zwg6$Jx`7yE52z=mm)FYjM}IN(`M{j=Z=D;FT3%|$ML#J?0Wd*)gzl^U#sff03hw&Pu_Te%l6cArDnnzymK`p4MW zdJ?r08*yUiZ_w9r0<9I#qjbz<%*a`c=E99=$XkK$kL|$x>iOvJ7(m(RBFrCEh9wi{ zB3hBb@`vZ4rJxaK3wPjfRXgenit(q?E;JQS!k4%I!706iU;Oe6diwUEZPNy<+Zf}? zRZpU}p%!!IRN{##6H#0`9wmjjxOwv?1_uW*Fff3lM~|YjvlFeYt*EQ3!_=u$k&}~y LAwz~By#f9QxyBM} literal 0 HcmV?d00001 diff --git a/assets/voxygen/voxel/npc/rat/male/chest.vox b/assets/voxygen/voxel/npc/rat/male/chest.vox index 7b7dfbe310e6b576ac05e93ba5625deed59215f4..6782d48f39ae9ffb4c2802a163ef0e30090b970f 100644 GIT binary patch literal 3736 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 LttwN+{{Q~~P#jT7 diff --git a/assets/voxygen/voxel/npc/rat/male/feet_f.vox b/assets/voxygen/voxel/npc/rat/male/feet_f.vox deleted file mode 100644 index 3b1c60b692b8a55aa3639d8ac6237487a6e877ac..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 1168 zcmajee@xVM7{Kx8DB(7KtOO+Qkh|_q@lH?VM;rn(u}Dr4L*mjCSzBj{{DC>(~ZA^*fbHCBJUdk(k$b3EH?&pw~;=lgv= zpXdAi`t}{Lc8kc~GH;b82|g}T{lPVstKECFr_%U6-Ku#4j_r_wU+SCR#TZMMXsfgF)_J6e_NKgFWpZ z{!U9H64^^ECMG7BoSbBOdYYM;8RqBbSzKIXX=!QsdV702ot>TZ_V&`>-_Ov{5W~a6 zgu`J*M@P{T7>!1flaonJO~tm(jKjK)Y`X>5dfST6&!{$$)nLOBbWs@E!BA5ZH=3LI z@%(unT)IR?o#1#&*xW6YjtTP8Dx}4Tbfq98X>@7*KJ}RjtFP4e>KFBg>N+i4?-U|~ z!mTfKyhG?O7jEts?j05UIzH_aIs!U>N_Zwq@K}W6r-hGnzPi9fL%EHX>Wy?C$s<_n zq5If#M9#jHXpgU_{w zh5|DecCF`P_%2i9R|s9MBQkWH#Kc6bR_n4{ zr;Wlb8z|0m((!gC*RR^Rd&|YW$xU3=nxO&V_Lsu%KM7S1p*CBna|y4yh2y!x>jipd zkML%RV0l9OyIOFi3tKaEzb5T-rm$0cP+?p7{HBzo70+L6F%u}sDkhV`kygxFIDM8==iF0gk z?PJf!W7OQ3;@1mW;88I(#m~J$^lBWxeY%Q;&yD;!lE_~-Q}}oEN%%VLq3^QbwiABH zhdbNhu5K<`1NZA6_2h^1Gp{ZGUkeKh%+1X)J3C7>8pZ4N;`8|k1On7*1M1aLbwZs{ LttwN+{{Q~~P#jT7 diff --git a/assets/voxygen/voxel/npc/rat/male/feet_r.vox b/assets/voxygen/voxel/npc/rat/male/feet_r.vox deleted file mode 100644 index 3b1c60b692b8a55aa3639d8ac6237487a6e877ac..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 1168 zcmajee@xVM7{Kx8DB(7KtOO+Qkh|_q@lH?VM;rn(u}Dr4L*mjCSzBj{{DC>(~ZA^*fbHCBJUdk(k$b3EH?&pw~;=lgv= zpXdAi`t}{Lc8kc~GH;b82|g}T{lPVstKECFr_%U6-Ku#4j_r_wU+SCR#TZMMXsfgF)_J6e_NKgFWpZ z{!U9H64^^ECMG7BoSbBOdYYM;8RqBbSzKIXX=!QsdV702ot>TZ_V&`>-_Ov{5W~a6 zgu`J*M@P{T7>!1flaonJO~tm(jKjK)Y`X>5dfST6&!{$$)nLOBbWs@E!BA5ZH=3LI z@%(unT)IR?o#1#&*xW6YjtTP8Dx}4Tbfq98X>@7*KJ}RjtFP4e>KFBg>N+i4?-U|~ z!mTfKyhG?O7jEts?j05UIzH_aIs!U>N_Zwq@K}W6r-hGnzPi9fL%EHX>Wy?C$s<_n zq5If#M9#jHXpgU_{w zh5|DecCF`P_%2i9R|s9MBQkWH#Kc6bR_n4{ zr;Wlb8z|0m((!gC*RR^Rd&|YW$xU3=nxO&V_Lsu%KM7S1p*CBna|y4yh2y!x>jipd zkML%RV0l9OyIOFi3tKaEzb5T-rm$0cP+?p7{HBzo70+L6F%u}sDkhV`kygxFIDM8==iF0gk z?PJf!W7OQ3;@1mW;88I(#m~J$^lBWxeY%Q;&yD;!lE_~-Q}}oEN%%VLq3^QbwiABH zhdbNhu5K<`1NZA6_2h^1Gp{ZGUkeKh%+1X)J3C7>8pZ4N;`8|k1On7*1M1aLbwZs{ LttwN+{{Q~~P#jT7 diff --git a/assets/voxygen/voxel/npc/rat/male/foot_bl.vox b/assets/voxygen/voxel/npc/rat/male/foot_bl.vox new file mode 100644 index 0000000000000000000000000000000000000000..87a904a820c1c522fe40bcafb9595e812788bb56 GIT binary patch literal 1128 zcmW;K!L8Fk6a~=t5eqeH9h zr+yAM^g}=NLoxJTTj)a{`q1NOWbP#?L-c-VhvsRX=4qbA<7uAeX`bd;WS-_}p5|$u z^*4B$r+J#EdFEehp5|$u=4l?fB`L?^DW2k4Q@~RIv1vIaN%&$Pz)X~(en(R!83T&GM|{aN^@qW#?BKw!4o{e z6Fe>#Jx}liPw*I0^gO{6Ji+5OqUQ;o;0YMF7QF$(#o@$<@+Mcg$XQNul!NSLC-IP* zT;(EXImuBDvX`C2LvC`Fi=5>oM>)t|cH86e*lxGmcD-J=%jL42&*$xQI&H_}aXTCi O+kU^_cDtQ(BmM)LJ8en; literal 0 HcmV?d00001 diff --git a/assets/voxygen/voxel/npc/rat/male/foot_br.vox b/assets/voxygen/voxel/npc/rat/male/foot_br.vox new file mode 100644 index 0000000000000000000000000000000000000000..87a904a820c1c522fe40bcafb9595e812788bb56 GIT binary patch literal 1128 zcmW;K!L8Fk6a~=t5eqeH9h zr+yAM^g}=NLoxJTTj)a{`q1NOWbP#?L-c-VhvsRX=4qbA<7uAeX`bd;WS-_}p5|$u z^*4B$r+J#EdFEehp5|$u=4l?fB`L?^DW2k4Q@~RIv1vIaN%&$Pz)X~(en(R!83T&GM|{aN^@qW#?BKw!4o{e z6Fe>#Jx}liPw*I0^gO{6Ji+5OqUQ;o;0YMF7QF$(#o@$<@+Mcg$XQNul!NSLC-IP* zT;(EXImuBDvX`C2LvC`Fi=5>oM>)t|cH86e*lxGmcD-J=%jL42&*$xQI&H_}aXTCi O+kU^_cDtQ(BmM)LJ8en; literal 0 HcmV?d00001 diff --git a/assets/voxygen/voxel/npc/rat/male/foot_fl.vox b/assets/voxygen/voxel/npc/rat/male/foot_fl.vox new file mode 100644 index 0000000000000000000000000000000000000000..87a904a820c1c522fe40bcafb9595e812788bb56 GIT binary patch literal 1128 zcmW;K!L8Fk6a~=t5eqeH9h zr+yAM^g}=NLoxJTTj)a{`q1NOWbP#?L-c-VhvsRX=4qbA<7uAeX`bd;WS-_}p5|$u z^*4B$r+J#EdFEehp5|$u=4l?fB`L?^DW2k4Q@~RIv1vIaN%&$Pz)X~(en(R!83T&GM|{aN^@qW#?BKw!4o{e z6Fe>#Jx}liPw*I0^gO{6Ji+5OqUQ;o;0YMF7QF$(#o@$<@+Mcg$XQNul!NSLC-IP* zT;(EXImuBDvX`C2LvC`Fi=5>oM>)t|cH86e*lxGmcD-J=%jL42&*$xQI&H_}aXTCi O+kU^_cDtQ(BmM)LJ8en; literal 0 HcmV?d00001 diff --git a/assets/voxygen/voxel/npc/rat/male/foot_fr.vox b/assets/voxygen/voxel/npc/rat/male/foot_fr.vox new file mode 100644 index 0000000000000000000000000000000000000000..87a904a820c1c522fe40bcafb9595e812788bb56 GIT binary patch literal 1128 zcmW;K!L8Fk6a~=t5eqeH9h zr+yAM^g}=NLoxJTTj)a{`q1NOWbP#?L-c-VhvsRX=4qbA<7uAeX`bd;WS-_}p5|$u z^*4B$r+J#EdFEehp5|$u=4l?fB`L?^DW2k4Q@~RIv1vIaN%&$Pz)X~(en(R!83T&GM|{aN^@qW#?BKw!4o{e z6Fe>#Jx}liPw*I0^gO{6Ji+5OqUQ;o;0YMF7QF$(#o@$<@+Mcg$XQNul!NSLC-IP* zT;(EXImuBDvX`C2LvC`Fi=5>oM>)t|cH86e*lxGmcD-J=%jL42&*$xQI&H_}aXTCi O+kU^_cDtQ(BmM)LJ8en; literal 0 HcmV?d00001 diff --git a/assets/voxygen/voxel/npc/rat/male/head.vox b/assets/voxygen/voxel/npc/rat/male/head.vox index 44abdf5d46baa6f0f949f6d44d897590f65276db..2b9a82f3e820cb9c1f41166de6dd63cbf165ca75 100644 GIT binary patch literal 1376 zcmX}q&8-_Z6o%nL&UlxN_Fe>PffZasv2o%2010F`UIhrib#`h&6&PR(YC$f6Eod)o z)B^Kx3|MpDA?Lf~;XCAf`s4G@UnAnTm)GAl@#~w2zh1xm^3#0q^Z0|$e}8#>o3=RK zYjWg!!ZJzvYuuA|iRH28B_-_=>5(HDmmZRPM#7Tyk+6DR=e#uMWo7a`v{tx>Jk*M9 z-tv%|YpooQG}{#BB;%}=myxZRw9BGC5|%~n={8&Qat<}+bME~AY8+zD(dK22wGOg* ztJ;}Iwq9PczUOS6wCbpTqw7 zcZ`oO`toLclh3Ku_-a7)P~}xV%N2Q%7kLpBxxW$ekcT|v5#N_}?-uHcb_Ke@n~GcK z)A{r+=d3rs^bv~U>=hOLgKJ#@Ym{&!C zoOpTei`***f ztFt;qWLZU`nnLPbkyVM>%5kB>^AL&t$Lck;i4qlBMcRl~;#nnu5#(b}4e(2K@ zxSF#PmpRHfp36MN`K-$sUB*Tn#_}zWuwEF;SscS$L)%6bvy66?9jcnTOb_U+rad-v{`zpbqe9UUF$>gqywcQ<-^ zdT{F0DfIRAp})T$Y=LMriuCk!OqehMaW4}&SsrF&2gsWie_;K|D`M~);>c;qLuqOu zdYYPWdfPVqxOXpZ9Xf=`>jXJ(3TAf-%FhbqMGI+;LJo|F^k(1y`yVBrkv{Sj`JVhj z{vZc-2u^kg22Kbrd_jGopu19VW~JcjMnNt09Z5lZJ?+~CPx*qfKrrud!H2Z3D2bt= zGLGgIGts%B2rV^b=-l)S26n%MTgMwPD|-^kivlcpdL}j`%h33|pmjZG+9o*rzM#~P zA(5AZHN~@0SC)@t-Xt`XWMbdqY1qGXIx5QxvHZEYsC}UVjW1WDxv3WIZ#N=!;vEc~ zJA%~Vbr|T`jI^{gWMyTIQJ5P?>66njuP7JoZ%xI?V{u%$kcX>-vv8O_Q^y4tzZCrb zlb||BP%}fYE>G~v6N1f!g4as;<}$$>^98}f-0!1;yorK>$(%RFJx>)Z;ts0f4}O1a z{J00ce_oJ@`uRoJ`t02Q-``Z4iBw%aii?Z!LD^B{7j|R*o?V#IItAZ;EV#6m`_Ils zZf-6%WpBsQs$NKIGbV1Gh`xh@cQZ5bdMw8OA0Xq%VeV#!BmvFh{?e%;3g_d7#F__<3k zd`#iDPc242kK)hXG~78e9{=<|0(_lukMDfoVlMDQF>q-CaD~GSuL7>u-LLXJ`^c+f u-`D8qC~n-ifos>UVR(2Li9`a)WD@oD^{C+j>c~d2h3q7|Ncdfb-~YeGO=~~^ diff --git a/assets/voxygen/voxel/npc/rat/male/tail.vox b/assets/voxygen/voxel/npc/rat/male/tail.vox index 310c3afd6f4324f9d32be2354d04cdaca3fec79a..593e3d138e499e7afd32e9391c7df9a4876e375d 100644 GIT binary patch literal 1116 zcmXBS!Hp9^5CzcM1#Vn?MF28_JpdBO2sVI9!6`Tbq)NdlIE7BZ_dPj<;dL|P zKeoSTdY-%I*Z1G=|3<{u4^Q8`#h2F+KcAjIy`5id5AsSL<@cZGr+41x_U8ZFOFTYE zyf{%FUVeQ3_#uojw{301v85zMJ*(j`^g}=NLqAVzef!Y**0+9MTKdwLFQqU294_^# zPkky<@3n%?yrhumb+RfU)ZICrBerz9_r+J!ZO%+e`G*9z1 z&ze4-=4qbhX`VTy&C@*1(>%?yrg_cG)XY6aZ+?oWc#5ZZif1hcPw^B)xnUW6Es=}L z3FS-i6wg{Vp5iH<;whfFl*Lm##Zx@RvzB+Q(wv#8nY*4Rd6Fl2k|%lAW5AO<$&)7-O7kC*6qk|%kRM=kS-nX5EsW@_v_!4o{e6FkA=a?$ey zPw)hfAw|yOUUm|9xye;7a+Z@E z}9vz@AvI?yKUF&b-P?H+xdLnPN&m$JRY~h;jr!Z`)#+| HIXB`T_u^_$ literal 1136 zcmajee@xVM7{Kudl)S}{RUDFc$X$1*cqetok2nNoVv$@bhQy_atgSOe{=gh_db`zv zeyGDFVUSG2s}XE9F?M5aZLo`?+>8}Dvh5@+LjH+=YOMZx_Z)8h=Xkc)=dPnwgmy=I7^GTwG*nX=(X+dwV;bot^ad_7V<<85|sBXlRI$kr75mN6{rP7!0JQ zrjnkXj%~dehjl$Ub_=czwiV~ktTvI|Xu}b5Q54z6U~@CqT3Yz=>{;$zyhvuf;CM^O z?H0<$1bHb52^x^DG-TLFm#*KZK2sy=EA_qlMg5_=P6}5$h3J5A;|tBV3E>Li`d;DA zVWCd*lYXHipyMZmr?UmGMJRbf_)y2I3r#du*a%i{qWe%jp;|B9N1i2m`ep9*H?rBj zma=>cJD=IaA-|WV7lgKhx~CRl?7UEvZNleru)iRe2Co~xYb}k1X3p){z=d5KsVK{1 z&+}WTd$F9RSE>j$*U|A#6On;;nHs-L8eYg(*GL z%DT37eEYF*>wwnZZpZ0#a>RauU6sQ~Tab+78I1G@@0rcKVKV9e2a=*5R}SS-WvWuu zs)LZ)1g0S5oQA?4DDQ`=2pkxPQ#}K;eG=jQ;c-lB^!pz>!`9Y5c78NQ&9y0hJ*Nvi zD5j?PxmSo?N#wUrlUVrNz@Nj({B=Eze@7pMuZ{P8mkl?a@IwLI+6uRIbFmt@+wh>7 x?~l*CwtT-978aPBn`3r%mRKx?&*#JM_Y(*NsMP{AsKe@*I;C1wmWtp1{{Z#7PlNyf diff --git a/assets/voxygen/voxel/npc/squirrel/male/chest.vox b/assets/voxygen/voxel/npc/squirrel/male/chest.vox index 76bdafaa5cd42096c81d1a082c21881a5293950f..6782d48f39ae9ffb4c2802a163ef0e30090b970f 100644 GIT binary patch literal 3736 zcmXBW&u#R^83*9`KSQozKpg}+=E@2jC<-)+s_W+KR<@>>$gAt{=@OY*Ks@yzW@7= zZ@eEm0t;OA>1WBjXx@Y$&}N^93niu%Ygd=3hoN+YK5HIq{KoXE}xg-)dra`?Is zbNHM|&L=X1LZ{LQC463p%%q~9%%ISzG(y!+WF}SpWCn#!r4gEbA~UJ!Co?E?Dvi+P zCwBcL=M$Mhp;Kv?^sftX=qEX!$P5adN;{6FUmI~UpCl$SgF>g$h_gNt6PZDwQ)#4& zaq`9bQJi-wjnb_%HpJJ39OCDo(5W<{Jusj9z<4xHr_zWiU1ws7_CvHEqWuu?Q zp;Kvurk}`6YWm3x3Y|(Lbp1qTQrAyrQ0P<|Vdy6^lZJjWgF>g$h?DswF_9S*I+aE& z`8tzkePjlOPNf~kZl4iL(O<4*wD(TFSXT<2N;_U>`-9s0d!zbHXq1qyok}CebR85r zl}55BCNhIUr_zqswO>0i+dm{GGJ`^=(g-D8FGOY%6PZDwQ)z^%pU6yNA~Ps-Dvi+e z6PZa&WCn#!r4hP*A~T7J%%ISzG-9c)Td#5GCoz#36grhgnv9bf6grhgnvIhg6grj0 zoU^&j*K$#((vD-u)-78nM^ehxDO;y(o%GYGG*Yy$NUk-J8OL?$R2s=1oX89cok}Cr zY&~RRCNYs26grhgX!?oFBqlP0LZ{M*T_1^w%%ISzG}16mW>Dx<8fh|4W>Dx<+Hqbz z1LWB_g-)d%$BQF%cwVTnnCBu-dmj{Y-pQ$$Z_go}N;_UR&jl$L^X+{M3Y|(Ld4?x4 z<9MFwR2s2*&PhyU28B+g9mgUkvFRr3b{J+G$_xVz0<5U_sRr6VW9$6Pks_&gjBjx%&kr@;^HCOZL zxiqKqIj{PPJ_dzO_53zcHBPSXN1;<`q-LD#SsxTSl}75u$=x`GPNk8CaWaEKrw-#} zb3e$FaSEMEJC62dBgzupuh@H?>a)BttIz(9tYL`%Ir0b z&cFWgx1apac7EN?uifvBm4$G-9i`o`U42*I)pzxyZByTzZ0ei(rhdG2RbSOtFIM$c z{kYtszNjzii^8Jr=N8n1dQcDQA^iWge(!FyyXfu$yXG^BU%NcJJi9!*JZC(4c6oMr zc6oMr&dBoY^6c{L^6c`Qe}+7}Ji9!*Ji9!{pSH`h%d^X~%d^WP-I-+bdy{9AXOrig z0(mw8HaFW`cyp0+S`2PZHhDIAHhIpel4p}=lV_7>ljod1c{X`Ac{X`Ad5$UF%pFvkI}g;p*b&5_!|AVfA8_XO-t% zHhETgR(V!=R(X!4T;*BiS>;*fS>-vG_gtl8W{xz+xB9W<@+|T!@+|T!@|@d1o<*KT zo<*KTo^xx+v&gf^vk0=d>A788Z1KiL)1t7*;|Fzl7I_wV7I~C8cFeI#$IKjQd>>m) zo*++EQFHq)$ diff --git a/assets/voxygen/voxel/npc/squirrel/male/feet_b.vox b/assets/voxygen/voxel/npc/squirrel/male/feet_b.vox deleted file mode 100644 index c0dbbe7deac42f0a3181ac380cbfc52e8e8097c1..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 1112 zcmXZa!Hp9^5Cza$;K;=i0U)Q)S1uqUv0ie8k~R#Lvg)&u`~}m&16FSMv1x`SG34`I^07UhH08 zuROf``10xF{~uyoueL8q8KRz5+qJ&+t#AE2t@Pzf=}TYwd1>lXpAJ%=`Z?Ut5B<;& z#n5|ip$~oNLm%<)w)X8tZO}GAJ9$y;nx}c1r+F5Sr+J#Ed75XDd77trnx}cz-{5JU z=4qbhnSZT$nx}c1r+Mg>r0k2Qc#3CD0Z##xo0WmfAZuFuSiTfb@f6RRDxTsgp5iH< zHGMqAQ#{2}JabBmr+A8|c#3CD^O~8dncEQkoO+(*NuK0Mp0yl2$&(Q2hH3D%L@r7v zq=V#1p0#W|$&)>TIWto;H~n04p20JC2G8JGj{(o%89ak$ z@T^CJXYdT30W#clJuU_tE*wr8ioxS8dY-{Ecm|JJ<`XklY0k{l*yf|g6Fk8aJi+5~ z(engP@C1(`Mb8sF!4o`gBYK|T37&v)Ytb7pTpUikD{pd@i=5>oM>)t|b`p2F$yF|L zj_vt_&!Ze0ie8k~R#Lvg)&u`~}m&16FSMv1x`SG34`I^07UhH08 zuROf``10xF{~uyoueL8q8KRz5+qJ&+t#AE2t@Pzf=}TYwd1>lXpAJ%=`Z?Ut5B<;& z#n5|ip$~oNLm%<)w)X8tZO}GAJ9$y;nx}c1r+F5Sr+J#Ed75XDd77trnx}cz-{5JU z=4qbhnSZT$nx}c1r+Mg>r0k2Qc#3CD0Z##xo0WmfAZuFuSiTfb@f6RRDxTsgp5iH< zHGMqAQ#{2}JabBmr+A8|c#3CD^O~8dncEQkoO+(*NuK0Mp0yl2$&(Q2hH3D%L@r7v zq=V#1p0#W|$&)>TIWto;H~n04p20JC2G8JGj{(o%89ak$ z@T^CJXYdT30W#clJuU_tE*wr8ioxS8dY-{Ecm|JJ<`XklY0k{l*yf|g6Fk8aJi+5~ z(engP@C1(`Mb8sF!4o`gBYK|T37&v)Ytb7pTpUikD{pd@i=5>oM>)t|b`p2F$yF|L zj_vt_&!ZeeH9h zr+yAM^g}=NLoxJTTj)a{`q1NOWbP#?L-c-VhvsRX=4qbA<7uAeX`bd;WS-_}p5|$u z^*4B$r+J#EdFEehp5|$u=4l?fB`L?^DW2k4Q@~RIv1vIaN%&$Pz)X~(en(R!83T&GM|{aN^@qW#?BKw!4o{e z6Fe>#Jx}liPw*I0^gO{6Ji+5OqUQ;o;0YMF7QF$(#o@$<@+Mcg$XQNul!NSLC-IP* zT;(EXImuBDvX`C2LvC`Fi=5>oM>)t|cH86e*lxGmcD-J=%jL42&*$xQI&H_}aXTCi O+kU^_cDtQ(BmM)LJ8en; literal 0 HcmV?d00001 diff --git a/assets/voxygen/voxel/npc/squirrel/male/foot_br.vox b/assets/voxygen/voxel/npc/squirrel/male/foot_br.vox new file mode 100644 index 0000000000000000000000000000000000000000..87a904a820c1c522fe40bcafb9595e812788bb56 GIT binary patch literal 1128 zcmW;K!L8Fk6a~=t5eqeH9h zr+yAM^g}=NLoxJTTj)a{`q1NOWbP#?L-c-VhvsRX=4qbA<7uAeX`bd;WS-_}p5|$u z^*4B$r+J#EdFEehp5|$u=4l?fB`L?^DW2k4Q@~RIv1vIaN%&$Pz)X~(en(R!83T&GM|{aN^@qW#?BKw!4o{e z6Fe>#Jx}liPw*I0^gO{6Ji+5OqUQ;o;0YMF7QF$(#o@$<@+Mcg$XQNul!NSLC-IP* zT;(EXImuBDvX`C2LvC`Fi=5>oM>)t|cH86e*lxGmcD-J=%jL42&*$xQI&H_}aXTCi O+kU^_cDtQ(BmM)LJ8en; literal 0 HcmV?d00001 diff --git a/assets/voxygen/voxel/npc/squirrel/male/foot_fl.vox b/assets/voxygen/voxel/npc/squirrel/male/foot_fl.vox new file mode 100644 index 0000000000000000000000000000000000000000..87a904a820c1c522fe40bcafb9595e812788bb56 GIT binary patch literal 1128 zcmW;K!L8Fk6a~=t5eqeH9h zr+yAM^g}=NLoxJTTj)a{`q1NOWbP#?L-c-VhvsRX=4qbA<7uAeX`bd;WS-_}p5|$u z^*4B$r+J#EdFEehp5|$u=4l?fB`L?^DW2k4Q@~RIv1vIaN%&$Pz)X~(en(R!83T&GM|{aN^@qW#?BKw!4o{e z6Fe>#Jx}liPw*I0^gO{6Ji+5OqUQ;o;0YMF7QF$(#o@$<@+Mcg$XQNul!NSLC-IP* zT;(EXImuBDvX`C2LvC`Fi=5>oM>)t|cH86e*lxGmcD-J=%jL42&*$xQI&H_}aXTCi O+kU^_cDtQ(BmM)LJ8en; literal 0 HcmV?d00001 diff --git a/assets/voxygen/voxel/npc/squirrel/male/foot_fr.vox b/assets/voxygen/voxel/npc/squirrel/male/foot_fr.vox new file mode 100644 index 0000000000000000000000000000000000000000..87a904a820c1c522fe40bcafb9595e812788bb56 GIT binary patch literal 1128 zcmW;K!L8Fk6a~=t5eqeH9h zr+yAM^g}=NLoxJTTj)a{`q1NOWbP#?L-c-VhvsRX=4qbA<7uAeX`bd;WS-_}p5|$u z^*4B$r+J#EdFEehp5|$u=4l?fB`L?^DW2k4Q@~RIv1vIaN%&$Pz)X~(en(R!83T&GM|{aN^@qW#?BKw!4o{e z6Fe>#Jx}liPw*I0^gO{6Ji+5OqUQ;o;0YMF7QF$(#o@$<@+Mcg$XQNul!NSLC-IP* zT;(EXImuBDvX`C2LvC`Fi=5>oM>)t|cH86e*lxGmcD-J=%jL42&*$xQI&H_}aXTCi O+kU^_cDtQ(BmM)LJ8en; literal 0 HcmV?d00001 diff --git a/assets/voxygen/voxel/npc/squirrel/male/head.vox b/assets/voxygen/voxel/npc/squirrel/male/head.vox index d7eed6248f109445fe6a5df63a58dea64039281a..2b9a82f3e820cb9c1f41166de6dd63cbf165ca75 100644 GIT binary patch delta 368 zcmX|+y-fr`6oYNQA>gM30(!U#2tZo#7a*OE6TMs)bU*=!HYkFCU?!u3<(muGk!6qd z{5<=6`h9lTKJBjFBt2X&kC5(9q~~RSb1^S`T>r6q*)Nwq+Pa0Jbc32Ox~Us3)o3Xj zE_p;|&I6|h7*x>lp&QXK+6;OI!=7}(RCM8sWjY3H;1Z@R8lG&CF>{oq)=+A=iUMFz z#qRmI$>b8T6W?3HbD%K@G(&J|4pRg|u(3QmBowBC<{paN(2YN9l%hd_kDu3^Z`OIV LZobyfyL$H@i$qa6 delta 282 zcmW-cy-hUqzU`?zPpr2EPx$NAPN!9Kp>pW z)*v|S!8Se*5yrzEgz%@2P3h4}cBm#4OgYBX;L>R1(u0Pu;mG)NG7MJfVo1`Xyfu_s mHm4phZ?Dg*<@5uV9;f)?Jb~-MtC)X0-H-jFM)>-fXa57*cRL9H diff --git a/assets/voxygen/voxel/npc/squirrel/male/tail.vox b/assets/voxygen/voxel/npc/squirrel/male/tail.vox index dd2a53444bdc7c7f54937f86ffc39aaf021ecfc9..593e3d138e499e7afd32e9391c7df9a4876e375d 100644 GIT binary patch delta 102 zcmdnNd50q)%s)b58Uq7^ucN0QkYey)VPFXMjB@1xae#mkh?#+y35X*iqdX;mGzhRl ls22=Oj6lrr0;mv(8DDH%bBBqY;s5{t4FAt;?q}9y1OQk<6yX2> delta 195 zcmXYqJqiLr4254ZKf8iQ5VWi}(CPdT~Q7s~#ST@Hh8mdSr0wa>9 ts<;XowEp_Q92OjS27<@|mtjYERD~vr!k>zg=W)=cUr#@Ih1b%}eH9h zr+yAM^g}=NLoxJTTj)a{`q1NOWbP#?L-c-VhvsRX=4qbA<7uAeX`bd;WS-_}p5|$u z^*4B$r+J#EdFEehp5|$u=4l?fB`L?^DW2k4Q@~RIv1vIaN%&$Pz)X~(en(R!83T&GM|{aN^@qW#?BKw!4o{e z6Fe>#Jx}liPw*I0^gO{6Ji+5OqUQ;o;0YMF7QF$(#o@$<@+Mcg$XQNul!NSLC-IP* zT;(EXImuBDvX`C2LvC`Fi=5>oM>)t|cH86e*lxGmcD-J=%jL42&*$xQI&H_}aXTCi O+kU^_cDtQ(BmM)LJ8en; literal 0 HcmV?d00001 diff --git a/assets/voxygen/voxel/npc/turtle/male/foot_br.vox b/assets/voxygen/voxel/npc/turtle/male/foot_br.vox new file mode 100644 index 0000000000000000000000000000000000000000..87a904a820c1c522fe40bcafb9595e812788bb56 GIT binary patch literal 1128 zcmW;K!L8Fk6a~=t5eqeH9h zr+yAM^g}=NLoxJTTj)a{`q1NOWbP#?L-c-VhvsRX=4qbA<7uAeX`bd;WS-_}p5|$u z^*4B$r+J#EdFEehp5|$u=4l?fB`L?^DW2k4Q@~RIv1vIaN%&$Pz)X~(en(R!83T&GM|{aN^@qW#?BKw!4o{e z6Fe>#Jx}liPw*I0^gO{6Ji+5OqUQ;o;0YMF7QF$(#o@$<@+Mcg$XQNul!NSLC-IP* zT;(EXImuBDvX`C2LvC`Fi=5>oM>)t|cH86e*lxGmcD-J=%jL42&*$xQI&H_}aXTCi O+kU^_cDtQ(BmM)LJ8en; literal 0 HcmV?d00001 diff --git a/assets/voxygen/voxel/npc/turtle/male/foot_fl.vox b/assets/voxygen/voxel/npc/turtle/male/foot_fl.vox new file mode 100644 index 0000000000000000000000000000000000000000..87a904a820c1c522fe40bcafb9595e812788bb56 GIT binary patch literal 1128 zcmW;K!L8Fk6a~=t5eqeH9h zr+yAM^g}=NLoxJTTj)a{`q1NOWbP#?L-c-VhvsRX=4qbA<7uAeX`bd;WS-_}p5|$u z^*4B$r+J#EdFEehp5|$u=4l?fB`L?^DW2k4Q@~RIv1vIaN%&$Pz)X~(en(R!83T&GM|{aN^@qW#?BKw!4o{e z6Fe>#Jx}liPw*I0^gO{6Ji+5OqUQ;o;0YMF7QF$(#o@$<@+Mcg$XQNul!NSLC-IP* zT;(EXImuBDvX`C2LvC`Fi=5>oM>)t|cH86e*lxGmcD-J=%jL42&*$xQI&H_}aXTCi O+kU^_cDtQ(BmM)LJ8en; literal 0 HcmV?d00001 diff --git a/assets/voxygen/voxel/npc/turtle/male/foot_fr.vox b/assets/voxygen/voxel/npc/turtle/male/foot_fr.vox new file mode 100644 index 0000000000000000000000000000000000000000..87a904a820c1c522fe40bcafb9595e812788bb56 GIT binary patch literal 1128 zcmW;K!L8Fk6a~=t5eqeH9h zr+yAM^g}=NLoxJTTj)a{`q1NOWbP#?L-c-VhvsRX=4qbA<7uAeX`bd;WS-_}p5|$u z^*4B$r+J#EdFEehp5|$u=4l?fB`L?^DW2k4Q@~RIv1vIaN%&$Pz)X~(en(R!83T&GM|{aN^@qW#?BKw!4o{e z6Fe>#Jx}liPw*I0^gO{6Ji+5OqUQ;o;0YMF7QF$(#o@$<@+Mcg$XQNul!NSLC-IP* zT;(EXImuBDvX`C2LvC`Fi=5>oM>)t|cH86e*lxGmcD-J=%jL42&*$xQI&H_}aXTCi O+kU^_cDtQ(BmM)LJ8en; literal 0 HcmV?d00001 diff --git a/assets/voxygen/voxel/quadruped_small_central_manifest.ron b/assets/voxygen/voxel/quadruped_small_central_manifest.ron index d1d5628738..d8fdc201fe 100644 --- a/assets/voxygen/voxel/quadruped_small_central_manifest.ron +++ b/assets/voxygen/voxel/quadruped_small_central_manifest.ron @@ -462,4 +462,172 @@ central: ("armor.empty"), ), ), + (Rat, Male):( + head: ( + offset: (-3.5, 0.0, -3.0), + central: ("npc.frog.male.head"), + ), + chest: ( + offset: (-3.5, -5.0, -3.0), + central: ("npc.frog.male.chest"), + ), + tail: ( + offset: (0.0, 0.0, 0.0), + central: ("armor.empty"), + ), + ), + (Rat, Female):( + head: ( + offset: (-3.5, 0.0, -3.0), + central: ("npc.frog.male.head"), + ), + chest: ( + offset: (-3.5, -5.0, -3.0), + central: ("npc.frog.male.chest"), + ), + tail: ( + offset: (0.0, 0.0, 0.0), + central: ("armor.empty"), + ), + ), + (Axolotl, Male):( + head: ( + offset: (-3.5, 0.0, -3.0), + central: ("npc.frog.male.head"), + ), + chest: ( + offset: (-3.5, -5.0, -3.0), + central: ("npc.frog.male.chest"), + ), + tail: ( + offset: (0.0, 0.0, 0.0), + central: ("armor.empty"), + ), + ), + (Axolotl, Female):( + head: ( + offset: (-3.5, 0.0, -3.0), + central: ("npc.frog.male.head"), + ), + chest: ( + offset: (-3.5, -5.0, -3.0), + central: ("npc.frog.male.chest"), + ), + tail: ( + offset: (0.0, 0.0, 0.0), + central: ("armor.empty"), + ), + ), + (Gecko, Male):( + head: ( + offset: (-3.5, 0.0, -3.0), + central: ("npc.frog.male.head"), + ), + chest: ( + offset: (-3.5, -5.0, -3.0), + central: ("npc.frog.male.chest"), + ), + tail: ( + offset: (0.0, 0.0, 0.0), + central: ("armor.empty"), + ), + ), + (Gecko, Female):( + head: ( + offset: (-3.5, 0.0, -3.0), + central: ("npc.frog.male.head"), + ), + chest: ( + offset: (-3.5, -5.0, -3.0), + central: ("npc.gecko.male.chest"), + ), + tail: ( + offset: (0.0, 0.0, 0.0), + central: ("armor.empty"), + ), + ), + (Turtle, Male):( + head: ( + offset: (-3.5, 0.0, -3.0), + central: ("npc.turtle.male.head"), + ), + chest: ( + offset: (-3.5, -5.0, -3.0), + central: ("npc.turtle.male.chest"), + ), + tail: ( + offset: (0.0, 0.0, 0.0), + central: ("armor.empty"), + ), + ), + (Turtle, Female):( + head: ( + offset: (-3.5, 0.0, -3.0), + central: ("npc.turtle.male.head"), + ), + chest: ( + offset: (-3.5, -5.0, -3.0), + central: ("npc.turtle.male.chest"), + ), + tail: ( + offset: (0.0, 0.0, 0.0), + central: ("armor.empty"), + ), + ), + (Squirrel, Male):( + head: ( + offset: (-3.5, 0.0, -3.0), + central: ("npc.squirrel.male.head"), + ), + chest: ( + offset: (-3.5, -5.0, -3.0), + central: ("npc.squirrel.male.chest"), + ), + tail: ( + offset: (0.0, 0.0, 0.0), + central: ("armor.empty"), + ), + ), + (Squirrel, Female):( + head: ( + offset: (-3.5, 0.0, -3.0), + central: ("npc.squirrel.male.head"), + ), + chest: ( + offset: (-3.5, -5.0, -3.0), + central: ("npc.squirrel.male.chest"), + ), + tail: ( + offset: (0.0, 0.0, 0.0), + central: ("armor.empty"), + ), + ), + (Fungome, Male):( + head: ( + offset: (-3.5, 0.0, -3.0), + central: ("npc.fungome.male.head"), + ), + chest: ( + offset: (-3.5, -5.0, -3.0), + central: ("npc.fungome.male.chest"), + ), + tail: ( + offset: (0.0, 0.0, 0.0), + central: ("armor.empty"), + ), + ), + (Fungome, Female):( + head: ( + offset: (-3.5, 0.0, -3.0), + central: ("npc.fungome.male.head"), + ), + chest: ( + offset: (-3.5, -5.0, -3.0), + central: ("npc.fungome.male.chest"), + ), + tail: ( + offset: (0.0, 0.0, 0.0), + central: ("armor.empty"), + ), + ), }) \ No newline at end of file diff --git a/assets/voxygen/voxel/quadruped_small_lateral_manifest.ron b/assets/voxygen/voxel/quadruped_small_lateral_manifest.ron index d89037e22b..2d2399e6c0 100644 --- a/assets/voxygen/voxel/quadruped_small_lateral_manifest.ron +++ b/assets/voxygen/voxel/quadruped_small_lateral_manifest.ron @@ -575,7 +575,6 @@ lateral: ("npc.frog.male.foot_br"), ), ), - (Frog, Female): ( left_front: ( offset: (-2.5, -2.5, -4.0), @@ -594,4 +593,220 @@ lateral: ("npc.frog.male.foot_br"), ), ), + (Rat, Male): ( + left_front: ( + offset: (-2.5, -2.5, -4.0), + lateral: ("npc.rat.male.foot_fl"), + ), + right_front: ( + offset: (-2.5, -2.5, -4.0), + lateral: ("npc.rat.male.foot_fr"), + ), + left_back: ( + offset: (-2.5, -3.5, -4.0), + lateral: ("npc.rat.male.foot_bl"), + ), + right_back: ( + offset: (-2.5, -3.5, -4.0), + lateral: ("npc.rat.male.foot_br"), + ), + ), + (Rat, Female): ( + left_front: ( + offset: (-2.5, -2.5, -4.0), + lateral: ("npc.rat.male.foot_fl"), + ), + right_front: ( + offset: (-2.5, -2.5, -4.0), + lateral: ("npc.rat.male.foot_fr"), + ), + left_back: ( + offset: (-2.5, -3.5, -4.0), + lateral: ("npc.rat.male.foot_bl"), + ), + right_back: ( + offset: (-2.5, -3.5, -4.0), + lateral: ("npc.rat.male.foot_br"), + ), + ), + (Axolotl, Male): ( + left_front: ( + offset: (-2.5, -2.5, -4.0), + lateral: ("npc.axolotl.male.foot_fl"), + ), + right_front: ( + offset: (-2.5, -2.5, -4.0), + lateral: ("npc.axolotl.male.foot_fr"), + ), + left_back: ( + offset: (-2.5, -3.5, -4.0), + lateral: ("npc.axolotl.male.foot_bl"), + ), + right_back: ( + offset: (-2.5, -3.5, -4.0), + lateral: ("npc.axolotl.male.foot_br"), + ), + ), + (Axolotl, Female): ( + left_front: ( + offset: (-2.5, -2.5, -4.0), + lateral: ("npc.axolotl.male.foot_fl"), + ), + right_front: ( + offset: (-2.5, -2.5, -4.0), + lateral: ("npc.axolotl.male.foot_fr"), + ), + left_back: ( + offset: (-2.5, -3.5, -4.0), + lateral: ("npc.axolotl.male.foot_bl"), + ), + right_back: ( + offset: (-2.5, -3.5, -4.0), + lateral: ("npc.axolotl.male.foot_br"), + ), + ), + (Gecko, Male): ( + left_front: ( + offset: (-2.5, -2.5, -4.0), + lateral: ("npc.gecko.male.foot_fl"), + ), + right_front: ( + offset: (-2.5, -2.5, -4.0), + lateral: ("npc.gecko.male.foot_fr"), + ), + left_back: ( + offset: (-2.5, -3.5, -4.0), + lateral: ("npc.gecko.male.foot_bl"), + ), + right_back: ( + offset: (-2.5, -3.5, -4.0), + lateral: ("npc.gecko.male.foot_br"), + ), + ), + (Gecko, Female): ( + left_front: ( + offset: (-2.5, -2.5, -4.0), + lateral: ("npc.gecko.male.foot_fl"), + ), + right_front: ( + offset: (-2.5, -2.5, -4.0), + lateral: ("npc.gecko.male.foot_fr"), + ), + left_back: ( + offset: (-2.5, -3.5, -4.0), + lateral: ("npc.gecko.male.foot_bl"), + ), + right_back: ( + offset: (-2.5, -3.5, -4.0), + lateral: ("npc.gecko.male.foot_br"), + ), + ), + (Turtle, Male): ( + left_front: ( + offset: (-2.5, -2.5, -4.0), + lateral: ("npc.turtle.male.foot_fl"), + ), + right_front: ( + offset: (-2.5, -2.5, -4.0), + lateral: ("npc.turtle.male.foot_fr"), + ), + left_back: ( + offset: (-2.5, -3.5, -4.0), + lateral: ("npc.turtle.male.foot_bl"), + ), + right_back: ( + offset: (-2.5, -3.5, -4.0), + lateral: ("npc.turtle.male.foot_br"), + ), + ), + (Turtle, Female): ( + left_front: ( + offset: (-2.5, -2.5, -4.0), + lateral: ("npc.turtle.male.foot_fl"), + ), + right_front: ( + offset: (-2.5, -2.5, -4.0), + lateral: ("npc.turtle.male.foot_fr"), + ), + left_back: ( + offset: (-2.5, -3.5, -4.0), + lateral: ("npc.turtle.male.foot_bl"), + ), + right_back: ( + offset: (-2.5, -3.5, -4.0), + lateral: ("npc.turtle.male.foot_br"), + ), + ), + (Squirrel, Male): ( + left_front: ( + offset: (-2.5, -2.5, -4.0), + lateral: ("npc.squirrel.male.foot_fl"), + ), + right_front: ( + offset: (-2.5, -2.5, -4.0), + lateral: ("npc.squirrel.male.foot_fr"), + ), + left_back: ( + offset: (-2.5, -3.5, -4.0), + lateral: ("npc.squirrel.male.foot_bl"), + ), + right_back: ( + offset: (-2.5, -3.5, -4.0), + lateral: ("npc.squirrel.male.foot_br"), + ), + ), + (Squirrel, Female): ( + left_front: ( + offset: (-2.5, -2.5, -4.0), + lateral: ("npc.squirrel.male.foot_fl"), + ), + right_front: ( + offset: (-2.5, -2.5, -4.0), + lateral: ("npc.squirrel.male.foot_fr"), + ), + left_back: ( + offset: (-2.5, -3.5, -4.0), + lateral: ("npc.squirrel.male.foot_bl"), + ), + right_back: ( + offset: (-2.5, -3.5, -4.0), + lateral: ("npc.squirrel.male.foot_br"), + ), + ), + (Fungome, Male): ( + left_front: ( + offset: (-2.5, -2.5, -4.0), + lateral: ("npc.fungome.male.foot_fl"), + ), + right_front: ( + offset: (-2.5, -2.5, -4.0), + lateral: ("npc.fungome.male.foot_fr"), + ), + left_back: ( + offset: (-2.5, -3.5, -4.0), + lateral: ("npc.fungome.male.foot_bl"), + ), + right_back: ( + offset: (-2.5, -3.5, -4.0), + lateral: ("npc.fungome.male.foot_br"), + ), + ), + (Fungome, Female): ( + left_front: ( + offset: (-2.5, -2.5, -4.0), + lateral: ("npc.fungome.male.foot_fl"), + ), + right_front: ( + offset: (-2.5, -2.5, -4.0), + lateral: ("npc.fungome.male.foot_fr"), + ), + left_back: ( + offset: (-2.5, -3.5, -4.0), + lateral: ("npc.fungome.male.foot_bl"), + ), + right_back: ( + offset: (-2.5, -3.5, -4.0), + lateral: ("npc.fungome.male.foot_br"), + ), + ), }) \ No newline at end of file diff --git a/assets/voxygen/voxel/theropod_central_manifest.ron b/assets/voxygen/voxel/theropod_central_manifest.ron new file mode 100644 index 0000000000..1b21ef0838 --- /dev/null +++ b/assets/voxygen/voxel/theropod_central_manifest.ron @@ -0,0 +1,122 @@ +({ + (Archaeos, Male): ( + head: ( + offset: (-4.5, 0.0, -5.0), + central: ("npc.archaeos.male.head"), + ), + jaw: ( + offset: (-4.5, -9.0, -3.0), + central: ("npc.archaeos.male.jaw"), + ), + neck: ( + offset: (-4.5, 0.0, -3.0), + central: ("npc.archaeos.male.neck"), + ), + chest_front: ( + offset: (-7.5, -5.5, -7.0), + central: ("npc.archaeos.male.chest_front"), + ), + chest_back: ( + offset: (-4.5, -9.0, -7.0), + central: ("npc.archaeos.male.chest_back"), + ), + tail_front: ( + offset: (-3.5, -8.0, -3.5), + central: ("npc.archaeos.male.tail_front"), + ), + tail_back: ( + offset: (-7.5, -11.0, -3.0), + central: ("npc.archaeos.male.tail_back"), + ), + ), + (Archaeos, Female): ( + head: ( + offset: (-4.5, 0.0, -5.0), + central: ("npc.archaeos.male.head"), + ), + jaw: ( + offset: (-4.5, -9.0, -3.0), + central: ("npc.archaeos.male.jaw"), + ), + neck: ( + offset: (-4.5, 0.0, -3.0), + central: ("npc.archaeos.male.neck"), + ), + chest_front: ( + offset: (-7.5, -5.5, -7.0), + central: ("npc.archaeos.male.chest_front"), + ), + chest_back: ( + offset: (-4.5, -9.0, -7.0), + central: ("npc.archaeos.male.chest_back"), + ), + tail_front: ( + offset: (-3.5, -8.0, -3.5), + central: ("npc.archaeos.male.tail_front"), + ), + tail_back: ( + offset: (-7.5, -11.0, -3.0), + central: ("npc.archaeos.male.tail_back"), + ), + ), + (Odontotyrannos, Male): ( + head: ( + offset: (-4.5, -4.0, -4.0), + central: ("npc.rat.male.head"), + ), + jaw: ( + offset: (-4.5, -6.0, -4.0), + central: ("npc.rat.male.chest"), + ), + neck: ( + offset: (-4.0, -1.5, -1.0), + central: ("npc.rat.male.chest"), + ), + chest_front: ( + offset: (-4.0, -1.5, -1.0), + central: ("npc.rat.male.chest"), + ), + chest_back: ( + offset: (-4.0, -1.5, -1.0), + central: ("npc.rat.male.chest"), + ), + tail_front: ( + offset: (-0.5, -4.0, -1.5), + central: ("npc.rat.male.chest"), + ), + tail_back: ( + offset: (-0.5, -4.0, -1.5), + central: ("npc.rat.male.chest"), + ), + ), + (Odontotyrannos, Female): ( + head: ( + offset: (-4.5, -4.0, -4.0), + central: ("npc.rat.male.head"), + ), + jaw: ( + offset: (-4.5, -6.0, -4.0), + central: ("npc.rat.male.chest"), + ), + neck: ( + offset: (-4.0, -1.5, -1.0), + central: ("npc.rat.male.chest"), + ), + chest_front: ( + offset: (-4.0, -1.5, -1.0), + central: ("npc.rat.male.chest"), + ), + chest_back: ( + offset: (-4.0, -1.5, -1.0), + central: ("npc.rat.male.chest"), + ), + tail_front: ( + offset: (-0.5, -4.0, -1.5), + central: ("npc.rat.male.chest"), + ), + tail_back: ( + offset: (-0.5, -4.0, -1.5), + central: ("npc.rat.male.chest"), + ), + ), +}) diff --git a/assets/voxygen/voxel/theropod_lateral_manifest.ron b/assets/voxygen/voxel/theropod_lateral_manifest.ron new file mode 100644 index 0000000000..67e48db670 --- /dev/null +++ b/assets/voxygen/voxel/theropod_lateral_manifest.ron @@ -0,0 +1,106 @@ +({ + (Archaeos, Male): ( + hand_l: ( + offset: (-4.0, 2.0, -9.0), + lateral: ("npc.archaeos.male.hand_l"), + ), + hand_r: ( + offset: (0.0, -2.0, -4.0), + lateral: ("npc.archaeos.male.hand_r"), + ), + leg_l: ( + offset: (-6.0, -4.5, -8.0), + lateral: ("npc.archaeos.male.leg_l"), + ), + leg_r: ( + offset: (0.0, -4.5, -8.0), + lateral: ("npc.archaeos.male.leg_r"), + ), + foot_l: ( + offset: (-11.0, -1.0, -8.0), + lateral: ("npc.archaeos.male.foot_l"), + ), + foot_r: ( + offset: (0.0, -1.0, -8.0), + lateral: ("npc.archaeos.male.foot_r"), + ), + ), + (Archaeos, Female): ( + hand_l: ( + offset: (-4.0, 2.0, -9.0), + lateral: ("npc.archaeos.male.hand_l"), + ), + hand_r: ( + offset: (0.0, -2.0, -4.0), + lateral: ("npc.archaeos.male.hand_r"), + ), + leg_l: ( + offset: (-6.0, -4.5, -8.0), + lateral: ("npc.archaeos.male.leg_l"), + ), + leg_r: ( + offset: (0.0, -4.5, -8.0), + lateral: ("npc.archaeos.male.leg_r"), + ), + foot_l: ( + offset: (-11.0, -1.0, -8.0), + lateral: ("npc.archaeos.male.foot_l"), + ), + foot_r: ( + offset: (0.0, -1.0, -8.0), + lateral: ("npc.archaeos.male.foot_r"), + ), + ), + (Odontotyrannos, Male): ( + hand_l: ( + offset: (-6.0, -3.5, -4.0), + lateral: ("npc.ogre.male.shoulder_l"), + ), + hand_r: ( + offset: (-6.0, -4.5, -4.0), + lateral: ("npc.ogre.male.shoulder_r"), + ), + leg_l: ( + offset: (-6.0, -3.5, -4.0), + lateral: ("npc.ogre.male.shoulder_l"), + ), + leg_r: ( + offset: (-6.0, -4.5, -4.0), + lateral: ("npc.ogre.male.shoulder_r"), + ), + foot_l: ( + offset: (-6.0, -3.5, -4.0), + lateral: ("npc.ogre.male.shoulder_l"), + ), + foot_r: ( + offset: (-6.0, -4.5, -4.0), + lateral: ("npc.ogre.male.shoulder_r"), + ), + ), + (Odontotyrannos, Female): ( + hand_l: ( + offset: (-6.0, -3.5, -4.0), + lateral: ("npc.ogre.male.shoulder_l"), + ), + hand_r: ( + offset: (-6.0, -4.5, -4.0), + lateral: ("npc.ogre.male.shoulder_r"), + ), + leg_l: ( + offset: (-6.0, -3.5, -4.0), + lateral: ("npc.ogre.male.shoulder_l"), + ), + leg_r: ( + offset: (-6.0, -4.5, -4.0), + lateral: ("npc.ogre.male.shoulder_r"), + ), + foot_l: ( + offset: (-6.0, -3.5, -4.0), + lateral: ("npc.ogre.male.shoulder_l"), + ), + foot_r: ( + offset: (-6.0, -4.5, -4.0), + lateral: ("npc.ogre.male.shoulder_r"), + ), + ), +}) diff --git a/common/src/comp/agent.rs b/common/src/comp/agent.rs index 218d12240d..1fc7b53371 100644 --- a/common/src/comp/agent.rs +++ b/common/src/comp/agent.rs @@ -1,5 +1,5 @@ use crate::{ - comp::{critter, humanoid, quadruped_low, quadruped_medium, quadruped_small, Body}, + comp::{humanoid, quadruped_low, quadruped_medium, quadruped_small, theropod, Body}, path::Chaser, sync::Uid, }; @@ -97,6 +97,7 @@ impl<'a> From<&'a Body> for Psyche { quadruped_small::Species::Rabbit => 0.1, quadruped_small::Species::Truffler => 0.8, quadruped_small::Species::Frog => 0.6, + _ => 1.0, }, Body::QuadrupedMedium(quadruped_medium) => match quadruped_medium.species { quadruped_medium::Species::Tuskram => 0.8, @@ -123,10 +124,7 @@ impl<'a> From<&'a Body> for Psyche { Body::BipedLarge(_) => 1.0, Body::Object(_) => 1.0, Body::Golem(_) => 1.0, - Body::Critter(critter) => match critter.species { - critter::Species::Axolotl => 1.0, - critter::Species::Turtle => 1.0, - critter::Species::Fungome => 1.0, + Body::Theropod(theropod) => match theropod.species { _ => 0.4, }, Body::Dragon(_) => 1.0, diff --git a/common/src/comp/body.rs b/common/src/comp/body.rs index ce9895893a..986bc6647d 100644 --- a/common/src/comp/body.rs +++ b/common/src/comp/body.rs @@ -1,7 +1,6 @@ pub mod biped_large; pub mod bird_medium; pub mod bird_small; -pub mod critter; pub mod dragon; pub mod fish_medium; pub mod fish_small; @@ -11,6 +10,7 @@ pub mod object; pub mod quadruped_low; pub mod quadruped_medium; pub mod quadruped_small; +pub mod theropod; use crate::{ assets::{self, Asset}, @@ -39,7 +39,7 @@ make_case_elim!( BipedLarge(body: biped_large::Body)= 8, Object(body: object::Body) = 9, Golem(body: golem::Body) = 10, - Critter(body: critter::Body) = 11, + Theropod(body: theropod::Body) = 11, QuadrupedLow(body: quadruped_low::Body) = 12, } ); @@ -72,7 +72,7 @@ pub struct AllBodies { pub biped_large: BodyData>, pub object: BodyData, pub golem: BodyData>, - pub critter: BodyData>, + pub theropod: BodyData>, pub quadruped_low: BodyData>, } @@ -89,7 +89,7 @@ impl core::ops::Index for AllBodies &self.bird_medium.body, NpcKind::Ogre => &self.biped_large.body, NpcKind::StoneGolem => &self.golem.body, - NpcKind::Rat => &self.critter.body, + NpcKind::Archaeos => &self.theropod.body, NpcKind::Reddragon => &self.dragon.body, NpcKind::Crocodile => &self.quadruped_low.body, } @@ -114,7 +114,7 @@ impl<'a, BodyMeta, SpeciesMeta> core::ops::Index<&'a Body> for AllBodies &self.biped_large.body, Body::Object(_) => &self.object.body, Body::Golem(_) => &self.golem.body, - Body::Critter(_) => &self.critter.body, + Body::Theropod(_) => &self.theropod.body, Body::QuadrupedLow(_) => &self.quadruped_low.body, } } @@ -158,7 +158,7 @@ impl Body { quadruped_low::Species::Pangolin => 1.3, _ => 1.6, }, - Body::Critter(_) => 0.3, + Body::Theropod(_) => 0.3, Body::BirdMedium(_) => 0.35, Body::FishMedium(_) => 0.35, Body::Dragon(_) => 8.0, @@ -198,7 +198,7 @@ impl Body { quadruped_low::Species::Maneater => 4.0, _ => 1.3, }, - Body::Critter(_) => 0.7, + Body::Theropod(_) => 0.7, Body::BirdMedium(body) => match body.species { bird_medium::Species::Cockatrice => 1.8, _ => 1.1, @@ -264,7 +264,7 @@ impl Body { }, Body::Object(_) => 10000, Body::Golem(_) => 1500, - Body::Critter(_) => 50, + Body::Theropod(_) => 50, Body::QuadrupedLow(quadruped_low) => match quadruped_low.species { quadruped_low::Species::Crocodile => 600, quadruped_low::Species::Alligator => 600, @@ -331,7 +331,7 @@ impl Body { }, Body::Object(_) => 10, Body::Golem(_) => 150, - Body::Critter(_) => 20, + Body::Theropod(_) => 20, Body::QuadrupedLow(quadruped_low) => match quadruped_low.species { quadruped_low::Species::Crocodile => 20, quadruped_low::Species::Alligator => 20, @@ -396,7 +396,7 @@ impl Body { }, Body::Object(_) => 1, Body::Golem(_) => 75, - Body::Critter(_) => 2, + Body::Theropod(_) => 2, Body::QuadrupedLow(quadruped_low) => match quadruped_low.species { quadruped_low::Species::Crocodile => 10, quadruped_low::Species::Alligator => 10, @@ -426,7 +426,7 @@ impl Body { Body::BipedLarge(_) => 2, Body::Object(_) => 0, Body::Golem(_) => 5, - Body::Critter(_) => 1, + Body::Theropod(_) => 1, Body::QuadrupedLow(_) => 1, } } @@ -473,7 +473,7 @@ impl Body { }, Body::Object(_) => 0, Body::Golem(_) => 250, - Body::Critter(_) => 10, + Body::Theropod(_) => 10, Body::QuadrupedLow(quadruped_low) => match quadruped_low.species { quadruped_low::Species::Crocodile => 50, quadruped_low::Species::Alligator => 50, @@ -502,7 +502,7 @@ impl Body { Body::BipedLarge(_) => 10.0, Body::Object(_) => 3.0, Body::Golem(_) => 7.5, - Body::Critter(_) => 3.0, + Body::Theropod(_) => 3.0, Body::QuadrupedLow(_) => 4.5, } } diff --git a/common/src/comp/body/quadruped_small.rs b/common/src/comp/body/quadruped_small.rs index b0829352f6..7844997cf3 100644 --- a/common/src/comp/body/quadruped_small.rs +++ b/common/src/comp/body/quadruped_small.rs @@ -29,29 +29,32 @@ impl From for super::Body { fn from(body: Body) -> Self { super::Body::QuadrupedSmall(body) } } -make_case_elim!( - species, - #[derive(Copy, Clone, Debug, PartialEq, Eq, Hash, Serialize, Deserialize)] - #[repr(u32)] - pub enum Species { - Pig = 0, - Fox = 1, - Sheep = 2, - Boar = 3, - Jackalope = 4, - Skunk = 5, - Cat = 6, - Batfox = 7, - Raccoon = 8, - Quokka = 9, - Dodarock = 10, - Holladon = 11, - Hyena = 12, - Rabbit = 13, - Truffler = 14, - Frog = 15, - } -); +#[derive(Copy, Clone, Debug, PartialEq, Eq, Hash, Serialize, Deserialize)] +#[repr(u32)] +pub enum Species { + Pig = 0, + Fox = 1, + Sheep = 2, + Boar = 3, + Jackalope = 4, + Skunk = 5, + Cat = 6, + Batfox = 7, + Raccoon = 8, + Quokka = 9, + Dodarock = 10, + Holladon = 11, + Hyena = 12, + Rabbit = 13, + Truffler = 14, + Frog = 15, + Rat = 16, + Axolotl = 17, + Gecko = 18, + Turtle = 19, + Squirrel = 20, + Fungome = 21, +} /// Data representing per-species generic data. /// @@ -74,6 +77,12 @@ pub struct AllSpecies { pub rabbit: SpeciesMeta, pub truffler: SpeciesMeta, pub frog: SpeciesMeta, + pub rat: SpeciesMeta, + pub axolotl: SpeciesMeta, + pub gecko: SpeciesMeta, + pub turtle: SpeciesMeta, + pub squirrel: SpeciesMeta, + pub fungome: SpeciesMeta, } impl<'a, SpeciesMeta> core::ops::Index<&'a Species> for AllSpecies { @@ -98,11 +107,17 @@ impl<'a, SpeciesMeta> core::ops::Index<&'a Species> for AllSpecies Species::Rabbit => &self.rabbit, Species::Truffler => &self.truffler, Species::Frog => &self.frog, + Species::Rat => &self.rat, + Species::Axolotl => &self.axolotl, + Species::Gecko => &self.gecko, + Species::Turtle => &self.turtle, + Species::Squirrel => &self.squirrel, + Species::Fungome => &self.fungome, } } } -pub const ALL_SPECIES: [Species; 16] = [ +pub const ALL_SPECIES: [Species; 22] = [ Species::Pig, Species::Fox, Species::Sheep, @@ -119,6 +134,12 @@ pub const ALL_SPECIES: [Species; 16] = [ Species::Rabbit, Species::Truffler, Species::Frog, + Species::Rat, + Species::Axolotl, + Species::Gecko, + Species::Turtle, + Species::Squirrel, + Species::Fungome, ]; impl<'a, SpeciesMeta: 'a> IntoIterator for &'a AllSpecies { diff --git a/common/src/comp/body/theropod.rs b/common/src/comp/body/theropod.rs index cee07dd02d..446034a128 100644 --- a/common/src/comp/body/theropod.rs +++ b/common/src/comp/body/theropod.rs @@ -22,7 +22,7 @@ impl Body { } impl From for super::Body { - fn from(body: Body) -> Self { super::Body::Critter(body) } + fn from(body: Body) -> Self { super::Body::Theropod(body) } } #[derive(Copy, Clone, Debug, PartialEq, Eq, Hash, Serialize, Deserialize)] @@ -30,7 +30,6 @@ impl From for super::Body { pub enum Species { Archaeos = 0, Odontotyrannos = 1, - } /// Data representing per-species generic data. @@ -52,10 +51,7 @@ impl<'a, SpeciesMeta> core::ops::Index<&'a Species> for AllSpecies } } -pub const ALL_SPECIES: [Species; 2] = [ - Species::Archaeos, - Species::Odontotyrannos, -]; +pub const ALL_SPECIES: [Species; 2] = [Species::Archaeos, Species::Odontotyrannos]; impl<'a, SpeciesMeta: 'a> IntoIterator for &'a AllSpecies { type IntoIter = std::iter::Copied>; diff --git a/common/src/comp/mod.rs b/common/src/comp/mod.rs index 6deb364dff..322d5025e7 100644 --- a/common/src/comp/mod.rs +++ b/common/src/comp/mod.rs @@ -25,8 +25,8 @@ pub use ability::{CharacterAbility, CharacterAbilityType, ItemConfig, Loadout}; pub use admin::{Admin, AdminList}; pub use agent::{Agent, Alignment}; pub use body::{ - biped_large, bird_medium, bird_small, critter, dragon, fish_medium, fish_small, golem, - humanoid, object, quadruped_low, quadruped_medium, quadruped_small, AllBodies, Body, BodyData, + biped_large, bird_medium, bird_small, dragon, fish_medium, fish_small, golem, humanoid, object, + quadruped_low, quadruped_medium, quadruped_small, theropod, AllBodies, Body, BodyData, }; pub use character_state::{Attacking, CharacterState, StateUpdate}; pub use chat::{ diff --git a/common/src/generation.rs b/common/src/generation.rs index e5d19437ab..65a70e6bf8 100644 --- a/common/src/generation.rs +++ b/common/src/generation.rs @@ -110,7 +110,7 @@ impl EntityInfo { Some(get_npc_name(&NPC_NAMES.quadruped_medium, body.species)) }, Body::BirdMedium(body) => Some(get_npc_name(&NPC_NAMES.bird_medium, body.species)), - Body::Critter(body) => Some(get_npc_name(&NPC_NAMES.critter, body.species)), + Body::Theropod(body) => Some(get_npc_name(&NPC_NAMES.theropod, body.species)), Body::QuadrupedSmall(body) => { Some(get_npc_name(&NPC_NAMES.quadruped_small, body.species)) }, diff --git a/common/src/loadout_builder.rs b/common/src/loadout_builder.rs index da149f4458..6ce34b0e8e 100644 --- a/common/src/loadout_builder.rs +++ b/common/src/loadout_builder.rs @@ -55,7 +55,7 @@ impl LoadoutBuilder { .lantern(Some(Item::new_from_asset_expect( "common.items.armor.starter.lantern", ))) - .glider(Some(assets::load_expect_cloned( + .glider(Some(ItemAsset::load_expect_cloned( "common.items.armor.starter.glider", ))) } diff --git a/common/src/npc.rs b/common/src/npc.rs index 815aa1e35f..881aea55fa 100644 --- a/common/src/npc.rs +++ b/common/src/npc.rs @@ -14,7 +14,7 @@ pub enum NpcKind { Pig, Duck, Ogre, - Rat, + Archaeos, StoneGolem, Reddragon, Crocodile, @@ -26,7 +26,7 @@ pub const ALL_NPCS: [NpcKind; 9] = [ NpcKind::Pig, NpcKind::Duck, NpcKind::Ogre, - NpcKind::Rat, + NpcKind::Archaeos, NpcKind::StoneGolem, NpcKind::Reddragon, NpcKind::Crocodile, @@ -94,7 +94,7 @@ pub fn kind_to_body(kind: NpcKind) -> Body { NpcKind::Wolf => comp::quadruped_medium::Body::random().into(), NpcKind::Duck => comp::bird_medium::Body::random().into(), NpcKind::Ogre => comp::biped_large::Body::random().into(), - NpcKind::Rat => comp::critter::Body::random().into(), + NpcKind::Archaeos => comp::theropod::Body::random().into(), NpcKind::StoneGolem => comp::golem::Body::random().into(), NpcKind::Reddragon => comp::dragon::Body::random().into(), NpcKind::Crocodile => comp::quadruped_low::Body::random().into(), @@ -206,9 +206,9 @@ impl NpcBody { .or_else(|| { parse( s, - NpcKind::Rat, - &npc_names.critter, - comp::critter::Body::random_with, + NpcKind::Archaeos, + &npc_names.theropod, + comp::theropod::Body::random_with, ) }) .or_else(|| { diff --git a/common/src/states/utils.rs b/common/src/states/utils.rs index 579b1becb8..02cd6ebfd4 100644 --- a/common/src/states/utils.rs +++ b/common/src/states/utils.rs @@ -41,7 +41,7 @@ impl Body { Body::BipedLarge(_) => 75.0, Body::Object(_) => 40.0, Body::Golem(_) => 60.0, - Body::Critter(_) => 85.0, + Body::Theropod(_) => 85.0, Body::QuadrupedLow(_) => 120.0, } } @@ -59,7 +59,7 @@ impl Body { Body::BipedLarge(_) => 12.0, Body::Object(_) => 5.0, Body::Golem(_) => 8.0, - Body::Critter(_) => 35.0, + Body::Theropod(_) => 35.0, Body::QuadrupedLow(_) => 12.0, } } diff --git a/server/src/events/entity_manipulation.rs b/server/src/events/entity_manipulation.rs index b499b3dd6f..cef530ce5d 100644 --- a/server/src/events/entity_manipulation.rs +++ b/server/src/events/entity_manipulation.rs @@ -317,9 +317,7 @@ pub fn handle_destroy(server: &mut Server, entity: EcsEntity, cause: HealthSourc 7 => "common.loot_tables.loot_table_weapon_rare", _ => "common.loot_tables.loot_table", }, - Some(common::comp::Body::Critter(_)) => { - "common.loot_tables.loot_table_animal_parts" - }, + Some(common::comp::Body::Theropod(_)) => "common.loot_tables.loot_table_animal_parts", Some(common::comp::Body::Dragon(_)) => "common.loot_tables.loot_table_weapon_rare", Some(common::comp::Body::QuadrupedLow(_)) => match rng.gen_range(0, 3) { 0 => "common.loot_tables.loot_table_food", diff --git a/voxygen/src/anim/src/critter/idle.rs b/voxygen/src/anim/src/critter/idle.rs deleted file mode 100644 index 192a89cab0..0000000000 --- a/voxygen/src/anim/src/critter/idle.rs +++ /dev/null @@ -1,68 +0,0 @@ -use super::{super::Animation, CritterAttr, CritterSkeleton}; -//use std::{f32::consts::PI, ops::Mul}; -use super::super::vek::*; -use std::{f32::consts::PI, ops::Mul}; - -pub struct IdleAnimation; - -impl Animation for IdleAnimation { - type Dependency = f64; - type Skeleton = CritterSkeleton; - - #[cfg(feature = "use-dyn-lib")] - const UPDATE_FN: &'static [u8] = b"critter_idle\0"; - - #[cfg_attr(feature = "be-dyn-lib", export_name = "critter_idle")] - fn update_skeleton_inner( - skeleton: &Self::Skeleton, - global_time: Self::Dependency, - anim_time: f64, - _rate: &mut f32, - skeleton_attr: &CritterAttr, - ) -> Self::Skeleton { - let mut next = (*skeleton).clone(); - - let wave = (anim_time as f32 * 10.0).sin(); - let wave_slow = (anim_time as f32 * 5.5 + PI).sin(); - - let rat_head_look = Vec2::new( - ((global_time + anim_time) as f32 / 3.0) - .floor() - .mul(7331.0) - .sin() - * 0.5, - ((global_time + anim_time) as f32 / 3.0) - .floor() - .mul(1337.0) - .sin() - * 0.25, - ); - next.head.position = Vec3::new(0.0, skeleton_attr.head.0, skeleton_attr.head.1); - next.head.orientation = Quaternion::rotation_z(rat_head_look.x) - * Quaternion::rotation_x(rat_head_look.y + wave * 0.03); - next.head.scale = Vec3::one(); - - next.chest.position = Vec3::new( - 0.0, - skeleton_attr.chest.0, - skeleton_attr.chest.1 + wave * 0.3, - ) / 18.0; - next.chest.orientation = Quaternion::rotation_y(wave_slow * 0.06); - next.chest.scale = Vec3::one() / 18.0; - - next.feet_f.position = Vec3::new(0.0, skeleton_attr.feet_f.0, skeleton_attr.feet_f.1); - next.feet_f.orientation = Quaternion::rotation_z(0.0); - next.feet_f.scale = Vec3::one(); - - next.feet_b.position = Vec3::new(0.0, skeleton_attr.feet_b.0, skeleton_attr.feet_b.1); - next.feet_b.orientation = Quaternion::rotation_x(0.0); - next.feet_b.scale = Vec3::one(); - - next.tail.position = - Vec3::new(0.0, skeleton_attr.tail.0 + wave * 0.2, skeleton_attr.tail.1); - next.tail.orientation = Quaternion::rotation_y(wave_slow * 0.05); - next.tail.scale = Vec3::one(); - - next - } -} diff --git a/voxygen/src/anim/src/critter/jump.rs b/voxygen/src/anim/src/critter/jump.rs deleted file mode 100644 index 7630744289..0000000000 --- a/voxygen/src/anim/src/critter/jump.rs +++ /dev/null @@ -1,48 +0,0 @@ -use super::{super::Animation, CritterAttr, CritterSkeleton}; -//use std::f32::consts::PI; -use super::super::vek::*; - -pub struct JumpAnimation; - -impl Animation for JumpAnimation { - type Dependency = (f32, f64); - type Skeleton = CritterSkeleton; - - #[cfg(feature = "use-dyn-lib")] - const UPDATE_FN: &'static [u8] = b"critter_jump\0"; - - #[cfg_attr(feature = "be-dyn-lib", export_name = "critter_jump")] - fn update_skeleton_inner( - skeleton: &Self::Skeleton, - _global_time: Self::Dependency, - _anim_time: f64, - _rate: &mut f32, - skeleton_attr: &CritterAttr, - ) -> Self::Skeleton { - let mut next = (*skeleton).clone(); - - let wave = (_anim_time as f32 * 1.0).sin(); - - next.head.position = Vec3::new(0.0, skeleton_attr.head.0, skeleton_attr.head.1); - next.head.orientation = Quaternion::rotation_z(0.8) * Quaternion::rotation_x(0.5); - next.head.scale = Vec3::one(); - - next.chest.position = Vec3::new(0.0, skeleton_attr.chest.0, skeleton_attr.chest.1) / 18.0; - next.chest.orientation = Quaternion::rotation_y(0.0); - next.chest.scale = Vec3::one() / 18.0; - - next.feet_f.position = Vec3::new(0.0, skeleton_attr.feet_f.0, skeleton_attr.feet_f.1); - next.feet_f.orientation = Quaternion::rotation_x(wave * 0.4); - next.feet_f.scale = Vec3::one(); - - next.feet_b.position = Vec3::new(0.0, skeleton_attr.feet_b.0, skeleton_attr.feet_b.1); - next.feet_b.orientation = Quaternion::rotation_x(wave * 0.4); - next.feet_b.scale = Vec3::one(); - - next.tail.position = Vec3::new(0.0, skeleton_attr.tail.0, skeleton_attr.tail.1); - next.tail.orientation = Quaternion::rotation_y(0.0); - next.tail.scale = Vec3::one(); - - next - } -} diff --git a/voxygen/src/anim/src/critter/mod.rs b/voxygen/src/anim/src/critter/mod.rs deleted file mode 100644 index f83461a23b..0000000000 --- a/voxygen/src/anim/src/critter/mod.rs +++ /dev/null @@ -1,136 +0,0 @@ -pub mod idle; -pub mod jump; -pub mod run; - -// Reexports -pub use self::{idle::IdleAnimation, jump::JumpAnimation, run::RunAnimation}; - -use super::{make_bone, vek::*, FigureBoneData, Skeleton}; -use common::comp::{self}; -use core::convert::TryFrom; - -pub type Body = comp::critter::Body; - -skeleton_impls!(struct CritterSkeleton { - + head, - + chest, - + feet_f, - + feet_b, - + tail, -}); - -pub struct CritterAttr { - head: (f32, f32), - chest: (f32, f32), - feet_f: (f32, f32), - feet_b: (f32, f32), - tail: (f32, f32), -} - -impl Skeleton for CritterSkeleton { - type Attr = CritterAttr; - type Body = Body; - - const BONE_COUNT: usize = 5; - #[cfg(feature = "use-dyn-lib")] - const COMPUTE_FN: &'static [u8] = b"critter_compute_mats\0"; - - #[cfg_attr(feature = "be-dyn-lib", export_name = "critter_compute_mats")] - - fn compute_matrices_inner( - &self, - base_mat: Mat4, - buf: &mut [FigureBoneData; super::MAX_BONE_COUNT], - ) -> Vec3 { - let chest_mat = base_mat * Mat4::::from(self.chest); - - *(<&mut [_; Self::BONE_COUNT]>::try_from(&mut buf[0..Self::BONE_COUNT]).unwrap()) = [ - make_bone(chest_mat * Mat4::::from(self.head)), - make_bone(chest_mat), - make_bone(chest_mat * Mat4::::from(self.feet_f)), - make_bone(chest_mat * Mat4::::from(self.feet_b)), - make_bone(chest_mat * Mat4::::from(self.tail)), - ]; - Vec3::default() - } -} - -impl<'a> std::convert::TryFrom<&'a comp::Body> for CritterAttr { - type Error = (); - - fn try_from(body: &'a comp::Body) -> Result { - match body { - comp::Body::Critter(body) => Ok(CritterAttr::from(body)), - _ => Err(()), - } - } -} - -impl CritterAttr { - #[allow(clippy::match_single_binding)] // TODO: Pending review in #587 - pub fn calculate_scale(body: &comp::critter::Body) -> f32 { - match (body.species, body.body_type) { - (_, _) => 0.0, - } - } -} - -impl Default for CritterAttr { - fn default() -> Self { - Self { - head: (0.0, 0.0), - chest: (0.0, 0.0), - feet_f: (0.0, 0.0), - feet_b: (0.0, 0.0), - tail: (0.0, 0.0), - } - } -} - -impl<'a> From<&'a Body> for CritterAttr { - fn from(body: &'a Body) -> Self { - use comp::critter::Species::*; - Self { - head: match (body.species, body.body_type) { - (Rat, _) => (6.5, 3.0), - (Axolotl, _) => (5.0, 1.0), - (Gecko, _) => (5.0, 0.0), - (Turtle, _) => (8.0, 3.0), - (Squirrel, _) => (5.0, 0.0), - (Fungome, _) => (4.0, 0.0), - }, - chest: match (body.species, body.body_type) { - (Rat, _) => (0.0, 6.0), - (Axolotl, _) => (-1.0, 3.0), - (Gecko, _) => (-2.0, 3.0), - (Turtle, _) => (0.0, 6.0), - (Squirrel, _) => (0.0, 3.0), - (Fungome, _) => (0.0, 5.0), - }, - feet_f: match (body.species, body.body_type) { - (Rat, _) => (2.0, -5.0), - (Axolotl, _) => (2.0, -5.0), - (Gecko, _) => (1.0, -2.0), - (Turtle, _) => (3.0, -5.0), - (Squirrel, _) => (1.0, -2.0), - (Fungome, _) => (1.0, -4.0), - }, - feet_b: match (body.species, body.body_type) { - (Rat, _) => (-2.0, -5.0), - (Axolotl, _) => (-2.0, -5.0), - (Gecko, _) => (-2.0, -2.0), - (Turtle, _) => (-2.0, -5.0), - (Squirrel, _) => (-1.0, -2.0), - (Fungome, _) => (-2.0, -4.0), - }, - tail: match (body.species, body.body_type) { - (Rat, _) => (-8.0, -1.0), - (Axolotl, _) => (-7.0, -1.0), - (Gecko, _) => (-6.5, -2.0), - (Turtle, _) => (-6.0, 0.0), - (Squirrel, _) => (-3.0, 0.0), - (Fungome, _) => (-6.0, -1.0), - }, - } - } -} diff --git a/voxygen/src/anim/src/critter/run.rs b/voxygen/src/anim/src/critter/run.rs deleted file mode 100644 index 2f342e28bd..0000000000 --- a/voxygen/src/anim/src/critter/run.rs +++ /dev/null @@ -1,59 +0,0 @@ -use super::{super::Animation, CritterAttr, CritterSkeleton}; -//use std::{f32::consts::PI, ops::Mul}; -use super::super::vek::*; -use std::f32::consts::PI; - -pub struct RunAnimation; - -impl Animation for RunAnimation { - type Dependency = (f32, f64); - type Skeleton = CritterSkeleton; - - #[cfg(feature = "use-dyn-lib")] - const UPDATE_FN: &'static [u8] = b"critter_run\0"; - - #[cfg_attr(feature = "be-dyn-lib", export_name = "critter_run")] - fn update_skeleton_inner( - skeleton: &Self::Skeleton, - (_velocity, _global_time): Self::Dependency, - anim_time: f64, - _rate: &mut f32, - skeleton_attr: &CritterAttr, - ) -> Self::Skeleton { - let mut next = (*skeleton).clone(); - - let wave = (anim_time as f32 * 8.0).sin(); - let wavealt = (anim_time as f32 * 8.0 + PI / 2.0).sin(); - let wave_slow = (anim_time as f32 * 6.5 + PI).sin(); - - next.head.position = Vec3::new(0.0, skeleton_attr.head.0, skeleton_attr.head.1); - next.head.orientation = - Quaternion::rotation_z(0.0) * Quaternion::rotation_x(0.0 + wave * 0.03); - next.head.scale = Vec3::one(); - - next.chest.position = Vec3::new( - 0.0, - skeleton_attr.chest.0 + wave * 1.0, - skeleton_attr.chest.1, - ) / 18.0; - next.chest.orientation = Quaternion::rotation_x(wave * 0.1); - next.chest.scale = Vec3::one() / 18.0; - - next.feet_f.position = Vec3::new(0.0, skeleton_attr.feet_f.0, skeleton_attr.feet_f.1); - next.feet_f.orientation = - Quaternion::rotation_x(wave * 0.8) * Quaternion::rotation_z(wavealt / 6.0); - next.feet_f.scale = Vec3::one(); - - next.feet_b.position = Vec3::new(0.0, skeleton_attr.feet_b.0, skeleton_attr.feet_b.1); - next.feet_b.orientation = - Quaternion::rotation_x(wavealt * 0.8) * Quaternion::rotation_z(wavealt / 6.0); - next.feet_b.scale = Vec3::one(); - - next.tail.position = - Vec3::new(0.0, skeleton_attr.tail.0 + wave * 1.0, skeleton_attr.tail.1); - next.tail.orientation = Quaternion::rotation_y(wave_slow * 0.08); - next.tail.scale = Vec3::one(); - - next - } -} diff --git a/voxygen/src/anim/src/lib.rs b/voxygen/src/anim/src/lib.rs index 833227ae5f..ffe1380b00 100644 --- a/voxygen/src/anim/src/lib.rs +++ b/voxygen/src/anim/src/lib.rs @@ -43,7 +43,6 @@ pub mod biped_large; pub mod bird_medium; pub mod bird_small; pub mod character; -pub mod critter; pub mod dragon; #[cfg(feature = "use-dyn-lib")] pub mod dyn_lib; pub mod fish_medium; @@ -54,6 +53,7 @@ pub mod object; pub mod quadruped_low; pub mod quadruped_medium; pub mod quadruped_small; +pub mod theropod; pub mod vek; #[cfg(feature = "use-dyn-lib")] diff --git a/voxygen/src/anim/src/quadruped_small/mod.rs b/voxygen/src/anim/src/quadruped_small/mod.rs index 5d5de9e931..0c49563099 100644 --- a/voxygen/src/anim/src/quadruped_small/mod.rs +++ b/voxygen/src/anim/src/quadruped_small/mod.rs @@ -114,6 +114,12 @@ impl<'a> From<&'a Body> for SkeletonAttr { (Rabbit, _) => (4.0, 3.0), (Truffler, _) => (7.5, -9.0), (Frog, _) => (4.0, 2.0), + (Rat, _) => (6.0, -2.0), + (Axolotl, _) => (7.0, 1.0), + (Gecko, _) => (7.5, 2.0), + (Turtle, _) => (4.0, 3.0), + (Squirrel, _) => (7.5, -9.0), + (Fungome, _) => (4.0, 2.0), }, chest: match (body.species, body.body_type) { (Pig, _) => (0.0, 6.0), @@ -132,6 +138,12 @@ impl<'a> From<&'a Body> for SkeletonAttr { (Rabbit, _) => (-2.0, 6.0), (Truffler, _) => (-2.0, 16.0), (Frog, _) => (-2.0, 4.5), + (Rat, _) => (6.0, -2.0), + (Axolotl, _) => (7.0, 1.0), + (Gecko, _) => (7.5, 2.0), + (Turtle, _) => (4.0, 3.0), + (Squirrel, _) => (7.5, -9.0), + (Fungome, _) => (4.0, 2.0), }, feet_f: match (body.species, body.body_type) { (Pig, _) => (4.5, 3.5, -1.0), @@ -150,6 +162,12 @@ impl<'a> From<&'a Body> for SkeletonAttr { (Rabbit, _) => (3.0, 3.0, -3.0), (Truffler, _) => (2.5, 5.0, -9.0), (Frog, _) => (4.5, 6.5, 0.0), + (Rat, _) => (6.0, -2.0, 0.0), + (Axolotl, _) => (7.0, 1.0, 0.0), + (Gecko, _) => (7.5, 2.0, 0.0), + (Turtle, _) => (4.0, 3.0, 0.0), + (Squirrel, _) => (7.5, -9.0, 0.0), + (Fungome, _) => (4.0, 2.0, 0.0), }, feet_b: match (body.species, body.body_type) { (Pig, _) => (3.5, -2.0, 0.0), @@ -168,6 +186,12 @@ impl<'a> From<&'a Body> for SkeletonAttr { (Rabbit, _) => (3.5, -2.0, -1.0), (Truffler, _) => (3.0, -5.0, -9.5), (Frog, _) => (5.0, -3.5, 0.0), + (Rat, _) => (6.0, -2.0, 0.0), + (Axolotl, _) => (7.0, 1.0, 0.0), + (Gecko, _) => (7.5, 2.0, 0.0), + (Turtle, _) => (4.0, 3.0, 0.0), + (Squirrel, _) => (7.5, -9.0, 0.0), + (Fungome, _) => (4.0, 2.0, 0.0), }, tail: match (body.species, body.body_type) { (Pig, _) => (-4.5, 2.5), @@ -186,6 +210,12 @@ impl<'a> From<&'a Body> for SkeletonAttr { (Rabbit, _) => (-4.0, -0.0), (Truffler, _) => (0.0, 0.0), (Frog, _) => (0.0, -0.0), + (Rat, _) => (6.0, -2.0), + (Axolotl, _) => (7.0, 1.0), + (Gecko, _) => (7.5, 2.0), + (Turtle, _) => (4.0, 3.0), + (Squirrel, _) => (7.5, -9.0), + (Fungome, _) => (4.0, 2.0), }, scaler: match (body.species, body.body_type) { (Pig, _) => (0.9), @@ -204,6 +234,12 @@ impl<'a> From<&'a Body> for SkeletonAttr { (Rabbit, _) => (0.7), (Truffler, _) => (1.0), (Frog, _) => (0.7), + (Rat, _) => (6.0), + (Axolotl, _) => (7.0), + (Gecko, _) => (7.5), + (Turtle, _) => (4.0), + (Squirrel, _) => (7.5), + (Fungome, _) => (4.0), }, tempo: match (body.species, body.body_type) { (Pig, _) => (1.0), @@ -222,6 +258,12 @@ impl<'a> From<&'a Body> for SkeletonAttr { (Rabbit, _) => (1.15), (Truffler, _) => (1.0), (Frog, _) => (1.15), + (Rat, _) => (6.0), + (Axolotl, _) => (7.0), + (Gecko, _) => (7.5), + (Turtle, _) => (4.0), + (Squirrel, _) => (7.5), + (Fungome, _) => (4.0), }, maximize: match (body.species, body.body_type) { (Pig, _) => (1.0), @@ -240,6 +282,12 @@ impl<'a> From<&'a Body> for SkeletonAttr { (Rabbit, _) => (1.3), (Truffler, _) => (1.0), (Frog, _) => (1.3), + (Rat, _) => (0.1), + (Axolotl, _) => (0.1), + (Gecko, _) => (0.1), + (Turtle, _) => (0.1), + (Squirrel, _) => (0.1), + (Fungome, _) => (0.1), }, minimize: match (body.species, body.body_type) { (Pig, _) => (0.6), @@ -258,6 +306,12 @@ impl<'a> From<&'a Body> for SkeletonAttr { (Rabbit, _) => (0.8), (Truffler, _) => (1.0), (Frog, _) => (0.8), + (Rat, _) => (0.1), + (Axolotl, _) => (0.1), + (Gecko, _) => (0.1), + (Turtle, _) => (0.1), + (Squirrel, _) => (0.1), + (Fungome, _) => (0.1), }, spring: match (body.species, body.body_type) { (Pig, _) => (1.0), @@ -276,6 +330,12 @@ impl<'a> From<&'a Body> for SkeletonAttr { (Rabbit, _) => (2.5), (Truffler, _) => (0.8), (Frog, _) => (2.5), + (Rat, _) => (0.1), + (Axolotl, _) => (0.1), + (Gecko, _) => (0.1), + (Turtle, _) => (0.1), + (Squirrel, _) => (0.1), + (Fungome, _) => (0.1), }, feed: match (body.species, body.body_type) { (Pig, _) => (1.0), @@ -294,6 +354,12 @@ impl<'a> From<&'a Body> for SkeletonAttr { (Rabbit, _) => (1.2), (Truffler, _) => (0.6), (Frog, _) => (0.7), + (Rat, _) => (0.1), + (Axolotl, _) => (0.1), + (Gecko, _) => (0.1), + (Turtle, _) => (0.1), + (Squirrel, _) => (0.1), + (Fungome, _) => (0.1), }, } } diff --git a/voxygen/src/anim/src/theropod/idle.rs b/voxygen/src/anim/src/theropod/idle.rs new file mode 100644 index 0000000000..f82a9575a1 --- /dev/null +++ b/voxygen/src/anim/src/theropod/idle.rs @@ -0,0 +1,109 @@ +use super::{super::Animation, SkeletonAttr, TheropodSkeleton}; +//use std::{f32::consts::PI, ops::Mul}; +use super::super::vek::*; +use std::{f32::consts::PI, ops::Mul}; + +pub struct IdleAnimation; + +impl Animation for IdleAnimation { + type Dependency = f64; + type Skeleton = TheropodSkeleton; + + #[cfg(feature = "use-dyn-lib")] + const UPDATE_FN: &'static [u8] = b"theropod_idle\0"; + + #[cfg_attr(feature = "be-dyn-lib", export_name = "theropod_idle")] + fn update_skeleton_inner( + skeleton: &Self::Skeleton, + global_time: Self::Dependency, + anim_time: f64, + _rate: &mut f32, + skeleton_attr: &SkeletonAttr, + ) -> Self::Skeleton { + let mut next = (*skeleton).clone(); + + next.head.position = Vec3::new(0.0, skeleton_attr.head.0, skeleton_attr.head.1); + next.head.orientation = Quaternion::rotation_z(0.0); + next.head.scale = Vec3::one(); + + next.jaw.position = Vec3::new(0.0, skeleton_attr.jaw.0, skeleton_attr.jaw.1); + next.jaw.orientation = Quaternion::rotation_z(0.0); + next.jaw.scale = Vec3::one(); + + next.neck.position = Vec3::new(0.0, skeleton_attr.neck.0, skeleton_attr.neck.1); + next.neck.orientation = Quaternion::rotation_z(0.0); + next.neck.scale = Vec3::one(); + + next.chest_front.position = Vec3::new( + 0.0, + skeleton_attr.chest_front.0, + skeleton_attr.chest_front.1, + ); + next.chest_front.orientation = Quaternion::rotation_z(0.0); + next.chest_front.scale = Vec3::one(); + + next.chest_back.position = + Vec3::new(0.0, skeleton_attr.chest_back.0, skeleton_attr.chest_back.1); + next.chest_back.orientation = Quaternion::rotation_z(0.0); + next.chest_back.scale = Vec3::one(); + + next.tail_front.position = + Vec3::new(0.0, skeleton_attr.tail_front.0, skeleton_attr.tail_front.1); + next.tail_front.orientation = Quaternion::rotation_z(0.0); + next.tail_front.scale = Vec3::one(); + + next.tail_back.position = + Vec3::new(0.0, skeleton_attr.tail_back.0, skeleton_attr.tail_back.1); + next.tail_back.orientation = Quaternion::rotation_z(0.0); + next.tail_back.scale = Vec3::one(); + + next.hand_l.position = Vec3::new( + skeleton_attr.hand_l.0, + skeleton_attr.hand_l.0, + skeleton_attr.hand_l.1, + ); + next.hand_l.orientation = Quaternion::rotation_z(0.0); + next.hand_l.scale = Vec3::one(); + + next.hand_r.position = Vec3::new( + skeleton_attr.hand_r.0, + skeleton_attr.hand_r.0, + skeleton_attr.hand_r.1, + ); + next.hand_r.orientation = Quaternion::rotation_z(0.0); + next.hand_l.scale = Vec3::one(); + + next.leg_l.position = Vec3::new( + skeleton_attr.leg_l.0, + skeleton_attr.leg_l.0, + skeleton_attr.leg_l.1, + ); + next.leg_l.orientation = Quaternion::rotation_z(0.0); + next.leg_l.scale = Vec3::one(); + + next.leg_r.position = Vec3::new( + skeleton_attr.leg_r.0, + skeleton_attr.leg_r.0, + skeleton_attr.leg_r.1, + ); + next.leg_r.orientation = Quaternion::rotation_z(0.0); + next.leg_r.scale = Vec3::one(); + + next.foot_l.position = Vec3::new( + skeleton_attr.foot_l.0, + skeleton_attr.foot_l.0, + skeleton_attr.foot_l.1, + ); + next.foot_l.orientation = Quaternion::rotation_z(0.0); + next.foot_l.scale = Vec3::one(); + + next.foot_r.position = Vec3::new( + skeleton_attr.foot_r.0, + skeleton_attr.foot_r.0, + skeleton_attr.foot_r.1, + ); + next.foot_r.orientation = Quaternion::rotation_z(0.0); + next.foot_r.scale = Vec3::one(); + next + } +} diff --git a/voxygen/src/anim/src/theropod/jump.rs b/voxygen/src/anim/src/theropod/jump.rs new file mode 100644 index 0000000000..a18778e6a6 --- /dev/null +++ b/voxygen/src/anim/src/theropod/jump.rs @@ -0,0 +1,111 @@ +use super::{super::Animation, SkeletonAttr, TheropodSkeleton}; +//use std::f32::consts::PI; +use super::super::vek::*; + +pub struct JumpAnimation; + +impl Animation for JumpAnimation { + type Dependency = (f32, f64); + type Skeleton = TheropodSkeleton; + + #[cfg(feature = "use-dyn-lib")] + const UPDATE_FN: &'static [u8] = b"theropod_jump\0"; + + #[cfg_attr(feature = "be-dyn-lib", export_name = "theropod_jump")] + fn update_skeleton_inner( + skeleton: &Self::Skeleton, + _global_time: Self::Dependency, + _anim_time: f64, + _rate: &mut f32, + skeleton_attr: &SkeletonAttr, + ) -> Self::Skeleton { + let mut next = (*skeleton).clone(); + + let wave = (_anim_time as f32 * 1.0).sin(); + + next.head.position = Vec3::new(0.0, skeleton_attr.head.0, skeleton_attr.head.1); + next.head.orientation = Quaternion::rotation_z(0.0); + next.head.scale = Vec3::one(); + + next.jaw.position = Vec3::new(0.0, skeleton_attr.jaw.0, skeleton_attr.jaw.1); + next.jaw.orientation = Quaternion::rotation_z(0.0); + next.jaw.scale = Vec3::one(); + + next.neck.position = Vec3::new(0.0, skeleton_attr.neck.0, skeleton_attr.neck.1); + next.neck.orientation = Quaternion::rotation_z(0.0); + next.neck.scale = Vec3::one(); + + next.chest_front.position = Vec3::new( + 0.0, + skeleton_attr.chest_front.0, + skeleton_attr.chest_front.1, + ); + next.chest_front.orientation = Quaternion::rotation_z(0.0); + next.chest_front.scale = Vec3::one(); + + next.chest_back.position = + Vec3::new(0.0, skeleton_attr.chest_back.0, skeleton_attr.chest_back.1); + next.chest_back.orientation = Quaternion::rotation_z(0.0); + next.chest_back.scale = Vec3::one(); + + next.tail_front.position = + Vec3::new(0.0, skeleton_attr.tail_front.0, skeleton_attr.tail_front.1); + next.tail_front.orientation = Quaternion::rotation_z(0.0); + next.tail_front.scale = Vec3::one(); + + next.tail_back.position = + Vec3::new(0.0, skeleton_attr.tail_back.0, skeleton_attr.tail_back.1); + next.tail_back.orientation = Quaternion::rotation_z(0.0); + next.tail_back.scale = Vec3::one(); + + next.hand_l.position = Vec3::new( + skeleton_attr.hand_l.0, + skeleton_attr.hand_l.0, + skeleton_attr.hand_l.1, + ); + next.hand_l.orientation = Quaternion::rotation_z(0.0); + next.hand_l.scale = Vec3::one(); + + next.hand_r.position = Vec3::new( + skeleton_attr.hand_r.0, + skeleton_attr.hand_r.0, + skeleton_attr.hand_r.1, + ); + next.hand_r.orientation = Quaternion::rotation_z(0.0); + next.hand_l.scale = Vec3::one(); + + next.leg_l.position = Vec3::new( + skeleton_attr.leg_l.0, + skeleton_attr.leg_l.0, + skeleton_attr.leg_l.1, + ); + next.leg_l.orientation = Quaternion::rotation_z(0.0); + next.leg_l.scale = Vec3::one(); + + next.leg_r.position = Vec3::new( + skeleton_attr.leg_r.0, + skeleton_attr.leg_r.0, + skeleton_attr.leg_r.1, + ); + next.leg_r.orientation = Quaternion::rotation_z(0.0); + next.leg_r.scale = Vec3::one(); + + next.foot_l.position = Vec3::new( + skeleton_attr.foot_l.0, + skeleton_attr.foot_l.0, + skeleton_attr.foot_l.1, + ); + next.foot_l.orientation = Quaternion::rotation_z(0.0); + next.foot_l.scale = Vec3::one(); + + next.foot_r.position = Vec3::new( + skeleton_attr.foot_r.0, + skeleton_attr.foot_r.0, + skeleton_attr.foot_r.1, + ); + next.foot_r.orientation = Quaternion::rotation_z(0.0); + next.foot_r.scale = Vec3::one(); + + next + } +} diff --git a/voxygen/src/anim/src/theropod/mod.rs b/voxygen/src/anim/src/theropod/mod.rs new file mode 100644 index 0000000000..4a024f8663 --- /dev/null +++ b/voxygen/src/anim/src/theropod/mod.rs @@ -0,0 +1,177 @@ +pub mod idle; +pub mod jump; +pub mod run; + +// Reexports +pub use self::{idle::IdleAnimation, jump::JumpAnimation, run::RunAnimation}; + +use super::{make_bone, vek::*, FigureBoneData, Skeleton}; +use common::comp::{self}; +use core::convert::TryFrom; + +pub type Body = comp::theropod::Body; + +skeleton_impls!(struct TheropodSkeleton { + + head, + + jaw, + + neck, + + chest_front, + + chest_back, + + tail_front, + + tail_back, + + hand_l, + + hand_r, + + leg_l, + + leg_r, + + foot_l, + + foot_r, +}); + +impl Skeleton for TheropodSkeleton { + type Attr = SkeletonAttr; + type Body = Body; + + const BONE_COUNT: usize = 13; + #[cfg(feature = "use-dyn-lib")] + const COMPUTE_FN: &'static [u8] = b"theropod_compute_mats\0"; + + #[cfg_attr(feature = "be-dyn-lib", export_name = "theropod_compute_mats")] + + fn compute_matrices_inner( + &self, + base_mat: Mat4, + buf: &mut [FigureBoneData; super::MAX_BONE_COUNT], + ) -> Vec3 { + let chest_front_mat = base_mat * Mat4::::from(self.chest_front); + let neck_mat = chest_front_mat * Mat4::::from(self.neck); + let head_mat = neck_mat * Mat4::::from(self.head); + let chest_back_mat = chest_front_mat * Mat4::::from(self.chest_back); + let tail_front_mat = chest_back_mat * Mat4::::from(self.tail_front); + let leg_l_mat = chest_front_mat * Mat4::::from(self.leg_l); + let leg_r_mat = chest_front_mat * Mat4::::from(self.leg_r); + + *(<&mut [_; Self::BONE_COUNT]>::try_from(&mut buf[0..Self::BONE_COUNT]).unwrap()) = [ + make_bone(head_mat), + make_bone(head_mat * Mat4::::from(self.jaw)), + make_bone(neck_mat), + make_bone(chest_front_mat), + make_bone(chest_back_mat), + make_bone(tail_front_mat), + make_bone(tail_front_mat * Mat4::::from(self.tail_back)), + make_bone(chest_front_mat * Mat4::::from(self.hand_l)), + make_bone(chest_front_mat * Mat4::::from(self.hand_r)), + make_bone(leg_l_mat), + make_bone(leg_r_mat), + make_bone(leg_l_mat * Mat4::::from(self.foot_l)), + make_bone(leg_r_mat * Mat4::::from(self.foot_r)), + ]; + Vec3::default() + } +} + +pub struct SkeletonAttr { + head: (f32, f32), + neck: (f32, f32), + jaw: (f32, f32), + chest_front: (f32, f32), + chest_back: (f32, f32), + tail_front: (f32, f32), + tail_back: (f32, f32), + hand_l: (f32, f32, f32), + hand_r: (f32, f32, f32), + leg_l: (f32, f32, f32), + leg_r: (f32, f32, f32), + foot_l: (f32, f32, f32), + foot_r: (f32, f32, f32), +} + +impl<'a> std::convert::TryFrom<&'a comp::Body> for SkeletonAttr { + type Error = (); + + fn try_from(body: &'a comp::Body) -> Result { + match body { + comp::Body::Theropod(body) => Ok(SkeletonAttr::from(body)), + _ => Err(()), + } + } +} + +impl Default for SkeletonAttr { + fn default() -> Self { + Self { + head: (0.0, 0.0), + neck: (0.0, 0.0), + jaw: (0.0, 0.0), + chest_front: (0.0, 0.0), + chest_back: (0.0, 0.0), + tail_front: (0.0, 0.0), + tail_back: (0.0, 0.0), + hand_l: (0.0, 0.0, 0.0), + hand_r: (0.0, 0.0, 0.0), + leg_l: (0.0, 0.0, 0.0), + leg_r: (0.0, 0.0, 0.0), + foot_l: (0.0, 0.0, 0.0), + foot_r: (0.0, 0.0, 0.0), + } + } +} + +impl<'a> From<&'a Body> for SkeletonAttr { + fn from(body: &'a Body) -> Self { + use comp::theropod::Species::*; + Self { + head: match (body.species, body.body_type) { + (Archaeos, _) => (6.5, 3.0), + (Odontotyrannos, _) => (5.0, 1.0), + }, + jaw: match (body.species, body.body_type) { + (Archaeos, _) => (0.0, 6.0), + (Odontotyrannos, _) => (-1.0, 3.0), + }, + neck: match (body.species, body.body_type) { + (Archaeos, _) => (0.0, 6.0), + (Odontotyrannos, _) => (-1.0, 3.0), + }, + chest_front: match (body.species, body.body_type) { + (Archaeos, _) => (0.0, 6.0), + (Odontotyrannos, _) => (-1.0, 3.0), + }, + chest_back: match (body.species, body.body_type) { + (Archaeos, _) => (0.0, 6.0), + (Odontotyrannos, _) => (-1.0, 3.0), + }, + tail_front: match (body.species, body.body_type) { + (Archaeos, _) => (-8.0, -1.0), + (Odontotyrannos, _) => (-7.0, -1.0), + }, + tail_back: match (body.species, body.body_type) { + (Archaeos, _) => (-8.0, -1.0), + (Odontotyrannos, _) => (-7.0, -1.0), + }, + hand_l: match (body.species, body.body_type) { + (Archaeos, _) => (-8.0, -1.0, 0.0), + (Odontotyrannos, _) => (-7.0, -1.0, 0.0), + }, + hand_r: match (body.species, body.body_type) { + (Archaeos, _) => (8.0, -1.0, 0.0), + (Odontotyrannos, _) => (7.0, -1.0, 0.0), + }, + leg_l: match (body.species, body.body_type) { + (Archaeos, _) => (-8.0, -1.0, 0.0), + (Odontotyrannos, _) => (-7.0, -1.0, 0.0), + }, + leg_r: match (body.species, body.body_type) { + (Archaeos, _) => (8.0, -1.0, 0.0), + (Odontotyrannos, _) => (7.0, -1.0, 0.0), + }, + foot_l: match (body.species, body.body_type) { + (Archaeos, _) => (-8.0, -1.0, 0.0), + (Odontotyrannos, _) => (-7.0, -1.0, 0.0), + }, + foot_r: match (body.species, body.body_type) { + (Archaeos, _) => (8.0, -1.0, 0.0), + (Odontotyrannos, _) => (7.0, -1.0, 0.0), + }, + } + } +} diff --git a/voxygen/src/anim/src/theropod/run.rs b/voxygen/src/anim/src/theropod/run.rs new file mode 100644 index 0000000000..4ca88632a4 --- /dev/null +++ b/voxygen/src/anim/src/theropod/run.rs @@ -0,0 +1,114 @@ +use super::{super::Animation, SkeletonAttr, TheropodSkeleton}; +//use std::{f32::consts::PI, ops::Mul}; +use super::super::vek::*; +use std::f32::consts::PI; + +pub struct RunAnimation; + +impl Animation for RunAnimation { + type Dependency = (f32, f64); + type Skeleton = TheropodSkeleton; + + #[cfg(feature = "use-dyn-lib")] + const UPDATE_FN: &'static [u8] = b"theropod_run\0"; + + #[cfg_attr(feature = "be-dyn-lib", export_name = "theropod_run")] + fn update_skeleton_inner( + skeleton: &Self::Skeleton, + (_velocity, _global_time): Self::Dependency, + anim_time: f64, + _rate: &mut f32, + skeleton_attr: &SkeletonAttr, + ) -> Self::Skeleton { + let mut next = (*skeleton).clone(); + + let wave = (anim_time as f32 * 8.0).sin(); + let wavealt = (anim_time as f32 * 8.0 + PI / 2.0).sin(); + let wave_slow = (anim_time as f32 * 6.5 + PI).sin(); + + next.head.position = Vec3::new(0.0, skeleton_attr.head.0, skeleton_attr.head.1); + next.head.orientation = Quaternion::rotation_z(0.0); + next.head.scale = Vec3::one(); + + next.jaw.position = Vec3::new(0.0, skeleton_attr.jaw.0, skeleton_attr.jaw.1); + next.jaw.orientation = Quaternion::rotation_z(0.0); + next.jaw.scale = Vec3::one(); + + next.neck.position = Vec3::new(0.0, skeleton_attr.neck.0, skeleton_attr.neck.1); + next.neck.orientation = Quaternion::rotation_z(0.0); + next.neck.scale = Vec3::one(); + + next.chest_front.position = Vec3::new( + 0.0, + skeleton_attr.chest_front.0, + skeleton_attr.chest_front.1, + ); + next.chest_front.orientation = Quaternion::rotation_z(0.0); + next.chest_front.scale = Vec3::one(); + + next.chest_back.position = + Vec3::new(0.0, skeleton_attr.chest_back.0, skeleton_attr.chest_back.1); + next.chest_back.orientation = Quaternion::rotation_z(0.0); + next.chest_back.scale = Vec3::one(); + + next.tail_front.position = + Vec3::new(0.0, skeleton_attr.tail_front.0, skeleton_attr.tail_front.1); + next.tail_front.orientation = Quaternion::rotation_z(0.0); + next.tail_front.scale = Vec3::one(); + + next.tail_back.position = + Vec3::new(0.0, skeleton_attr.tail_back.0, skeleton_attr.tail_back.1); + next.tail_back.orientation = Quaternion::rotation_z(0.0); + next.tail_back.scale = Vec3::one(); + + next.hand_l.position = Vec3::new( + skeleton_attr.hand_l.0, + skeleton_attr.hand_l.0, + skeleton_attr.hand_l.1, + ); + next.hand_l.orientation = Quaternion::rotation_z(0.0); + next.hand_l.scale = Vec3::one(); + + next.hand_r.position = Vec3::new( + skeleton_attr.hand_r.0, + skeleton_attr.hand_r.0, + skeleton_attr.hand_r.1, + ); + next.hand_r.orientation = Quaternion::rotation_z(0.0); + next.hand_l.scale = Vec3::one(); + + next.leg_l.position = Vec3::new( + skeleton_attr.leg_l.0, + skeleton_attr.leg_l.0, + skeleton_attr.leg_l.1, + ); + next.leg_l.orientation = Quaternion::rotation_z(0.0); + next.leg_l.scale = Vec3::one(); + + next.leg_r.position = Vec3::new( + skeleton_attr.leg_r.0, + skeleton_attr.leg_r.0, + skeleton_attr.leg_r.1, + ); + next.leg_r.orientation = Quaternion::rotation_z(0.0); + next.leg_r.scale = Vec3::one(); + + next.foot_l.position = Vec3::new( + skeleton_attr.foot_l.0, + skeleton_attr.foot_l.0, + skeleton_attr.foot_l.1, + ); + next.foot_l.orientation = Quaternion::rotation_z(0.0); + next.foot_l.scale = Vec3::one(); + + next.foot_r.position = Vec3::new( + skeleton_attr.foot_r.0, + skeleton_attr.foot_r.0, + skeleton_attr.foot_r.1, + ); + next.foot_r.orientation = Quaternion::rotation_z(0.0); + next.foot_r.scale = Vec3::one(); + + next + } +} diff --git a/voxygen/src/scene/figure/cache.rs b/voxygen/src/scene/figure/cache.rs index 60d723a4d5..421b3259eb 100644 --- a/voxygen/src/scene/figure/cache.rs +++ b/voxygen/src/scene/figure/cache.rs @@ -254,6 +254,7 @@ where manifest_indicator, } } + /// NOTE: Intended for render time (useful with systems like wgpu that /// expect data used by the rendering pipelines to be stable throughout /// the render pass). @@ -283,6 +284,12 @@ where }), }; + if let Some(((FigureModelEntryFuture::Done(model), _), _)) = self.models.get(&key) { + Some(model) + } else { + None + } + } pub fn get_or_create_model<'c>( &'c mut self, diff --git a/voxygen/src/scene/figure/load.rs b/voxygen/src/scene/figure/load.rs index 4fb0025440..09f0e40edc 100644 --- a/voxygen/src/scene/figure/load.rs +++ b/voxygen/src/scene/figure/load.rs @@ -5,7 +5,6 @@ use common::{ biped_large::{self, BodyType as BLBodyType, Species as BLSpecies}, bird_medium::{self, BodyType as BMBodyType, Species as BMSpecies}, bird_small, - critter::{self, BodyType as CBodyType, Species as CSpecies}, dragon::{self, BodyType as DBodyType, Species as DSpecies}, fish_medium, fish_small, golem::{self, BodyType as GBodyType, Species as GSpecies}, @@ -15,6 +14,7 @@ use common::{ quadruped_low::{self, BodyType as QLBodyType, Species as QLSpecies}, quadruped_medium::{self, BodyType as QMBodyType, Species as QMSpecies}, quadruped_small::{self, BodyType as QSBodyType, Species as QSSpecies}, + theropod::{self, BodyType as TBodyType, Species as TSpecies}, }, figure::{DynaUnionizer, MatSegment, Material, Segment}, }; @@ -1734,57 +1734,100 @@ impl BirdMediumLateralSpec { } //// #[derive(Deserialize)] -struct CritterCenterSpec(HashMap<(CSpecies, CBodyType), SidedCCenterVoxSpec>); +struct TheropodCentralSpec(HashMap<(TSpecies, TBodyType), SidedTCentralVoxSpec>); #[derive(Deserialize)] -struct SidedCCenterVoxSpec { - head: CritterCenterSubSpec, - chest: CritterCenterSubSpec, - feet_f: CritterCenterSubSpec, - feet_b: CritterCenterSubSpec, - tail: CritterCenterSubSpec, +struct SidedTCentralVoxSpec { + head: TheropodCentralSubSpec, + jaw: TheropodCentralSubSpec, + neck: TheropodCentralSubSpec, + chest_front: TheropodCentralSubSpec, + chest_back: TheropodCentralSubSpec, + tail_front: TheropodCentralSubSpec, + tail_back: TheropodCentralSubSpec, } #[derive(Deserialize)] -struct CritterCenterSubSpec { +struct TheropodCentralSubSpec { offset: [f32; 3], // Should be relative to initial origin - center: VoxSimple, + central: VoxSimple, } +#[derive(Deserialize)] +struct TheropodLateralSpec(HashMap<(TSpecies, TBodyType), SidedTLateralVoxSpec>); +#[derive(Deserialize)] +struct SidedTLateralVoxSpec { + hand_l: TheropodLateralSubSpec, + hand_r: TheropodLateralSubSpec, + leg_l: TheropodLateralSubSpec, + leg_r: TheropodLateralSubSpec, + foot_l: TheropodLateralSubSpec, + foot_r: TheropodLateralSubSpec, +} +#[derive(Deserialize)] +struct TheropodLateralSubSpec { + offset: [f32; 3], // Should be relative to initial origin + lateral: VoxSimple, +} make_vox_spec!( - critter::Body, - struct CritterSpec { - center: CritterCenterSpec = "voxygen.voxel.critter_center_manifest", + theropod::Body, + struct TheropodSpec { + central: TheropodCentralSpec = "voxygen.voxel.theropod_central_manifest", + lateral: TheropodLateralSpec = "voxygen.voxel.theropod_lateral_manifest", }, |FigureKey { body, .. }, spec| { [ - Some(spec.center.asset.mesh_head( + Some(spec.central.asset.mesh_head( body.species, body.body_type, )), - Some(spec.center.asset.mesh_chest( + Some(spec.central.asset.mesh_jaw( body.species, body.body_type, )), - Some(spec.center.asset.mesh_feet_f( + Some(spec.central.asset.mesh_neck( body.species, body.body_type, )), - Some(spec.center.asset.mesh_feet_b( + Some(spec.central.asset.mesh_chest_front( body.species, body.body_type, )), - Some(spec.center.asset.mesh_tail( + Some(spec.central.asset.mesh_chest_back( + body.species, + body.body_type, + )), + Some(spec.central.asset.mesh_tail_front( + body.species, + body.body_type, + )), + Some(spec.central.asset.mesh_tail_back( + body.species, + body.body_type, + )), + Some(spec.lateral.asset.mesh_hand_l( + body.species, + body.body_type, + )), + Some(spec.lateral.asset.mesh_hand_r( + body.species, + body.body_type, + )), + Some(spec.lateral.asset.mesh_leg_l( + body.species, + body.body_type, + )), + Some(spec.lateral.asset.mesh_leg_r( + body.species, + body.body_type, + )), + Some(spec.lateral.asset.mesh_foot_l( + body.species, + body.body_type, + )), + Some(spec.lateral.asset.mesh_foot_r( body.species, body.body_type, )), - None, - None, - None, - None, - None, - None, - None, - None, None, None, None, @@ -1792,8 +1835,8 @@ make_vox_spec!( }, ); -impl CritterCenterSpec { - fn mesh_head(&self, species: CSpecies, body_type: CBodyType) -> BoneMeshes { +impl TheropodCentralSpec { + fn mesh_head(&self, species: TSpecies, body_type: TBodyType) -> BoneMeshes { let spec = match self.0.get(&(species, body_type)) { Some(spec) => spec, None => { @@ -1804,73 +1847,234 @@ impl CritterCenterSpec { return load_mesh("not_found", Vec3::new(-5.0, -5.0, -2.5)); }, }; - let center = graceful_load_segment(&spec.head.center.0); + let central = graceful_load_segment(&spec.head.central.0); - (center, Vec3::from(spec.head.offset)) + (central, Vec3::from(spec.head.offset)) } - fn mesh_chest(&self, species: CSpecies, body_type: CBodyType) -> BoneMeshes { + fn mesh_jaw(&self, species: TSpecies, body_type: TBodyType) -> BoneMeshes { let spec = match self.0.get(&(species, body_type)) { Some(spec) => spec, None => { error!( - "No chest specification exists for the combination of {:?} and {:?}", + "No jaw specification exists for the combination of {:?} and {:?}", species, body_type ); return load_mesh("not_found", Vec3::new(-5.0, -5.0, -2.5)); }, }; - let center = graceful_load_segment(&spec.chest.center.0); + let central = graceful_load_segment(&spec.jaw.central.0); - (center, Vec3::from(spec.chest.offset)) + (central, Vec3::from(spec.jaw.offset)) } - fn mesh_feet_f(&self, species: CSpecies, body_type: CBodyType) -> BoneMeshes { + fn mesh_neck(&self, species: TSpecies, body_type: TBodyType) -> BoneMeshes { let spec = match self.0.get(&(species, body_type)) { Some(spec) => spec, None => { error!( - "No feet specification exists for the combination of {:?} and {:?}", + "No jaw specification exists for the combination of {:?} and {:?}", species, body_type ); return load_mesh("not_found", Vec3::new(-5.0, -5.0, -2.5)); }, }; - let center = graceful_load_segment(&spec.feet_f.center.0); + let central = graceful_load_segment(&spec.neck.central.0); - (center, Vec3::from(spec.feet_f.offset)) + (central, Vec3::from(spec.neck.offset)) } - fn mesh_feet_b(&self, species: CSpecies, body_type: CBodyType) -> BoneMeshes { + fn mesh_chest_front(&self, species: TSpecies, body_type: TBodyType) -> BoneMeshes { let spec = match self.0.get(&(species, body_type)) { Some(spec) => spec, None => { error!( - "No feet specification exists for the combination of {:?} and {:?}", + "No front chest specification exists for the combination of {:?} and {:?}", species, body_type ); return load_mesh("not_found", Vec3::new(-5.0, -5.0, -2.5)); }, }; - let center = graceful_load_segment(&spec.feet_b.center.0); + let central = graceful_load_segment(&spec.chest_front.central.0); - (center, Vec3::from(spec.feet_b.offset)) + (central, Vec3::from(spec.chest_front.offset)) } - fn mesh_tail(&self, species: CSpecies, body_type: CBodyType) -> BoneMeshes { + fn mesh_chest_back(&self, species: TSpecies, body_type: TBodyType) -> BoneMeshes { let spec = match self.0.get(&(species, body_type)) { Some(spec) => spec, None => { error!( - "No tail specification exists for the combination of {:?} and {:?}", + "No back chest specification exists for the combination of {:?} and {:?}", species, body_type ); return load_mesh("not_found", Vec3::new(-5.0, -5.0, -2.5)); }, }; - let center = graceful_load_segment(&spec.tail.center.0); + let central = graceful_load_segment(&spec.chest_back.central.0); - (center, Vec3::from(spec.tail.offset)) + (central, Vec3::from(spec.chest_back.offset)) + } + + fn mesh_tail_front( + &self, + species: TSpecies, + body_type: TBodyType, + ) -> BoneMeshes { + let spec = match self.0.get(&(species, body_type)) { + Some(spec) => spec, + None => { + error!( + "No front tail specification exists for the combination of {:?} and {:?}", + species, body_type + ); + return load_mesh("not_found", Vec3::new(-5.0, -5.0, -2.5)); + }, + }; + let central = graceful_load_segment(&spec.tail_front.central.0); + + (central, Vec3::from(spec.tail_front.offset)) + } + + fn mesh_tail_back( + &self, + species: TSpecies, + body_type: TBodyType, + ) -> BoneMeshes { + let spec = match self.0.get(&(species, body_type)) { + Some(spec) => spec, + None => { + error!( + "No back tail specification exists for the combination of {:?} and {:?}", + species, body_type + ); + return load_mesh("not_found", Vec3::new(-5.0, -5.0, -2.5)); + }, + }; + let central = graceful_load_segment(&spec.tail_back.central.0); + + (central, Vec3::from(spec.tail_back.offset)) + } +} +impl TheropodLateralSpec { + fn mesh_hand_l( + &self, + species: TSpecies, + body_type: TBodyType, + ) -> BoneMeshes { + let spec = match self.0.get(&(species, body_type)) { + Some(spec) => spec, + None => { + error!( + "No left hand specification exists for the combination of {:?} and {:?}", + species, body_type + ); + return load_mesh("not_found", Vec3::new(-5.0, -5.0, -2.5)); + }, + }; + let lateral = graceful_load_segment(&spec.hand_l.lateral.0); + + (lateral, Vec3::from(spec.hand_l.offset)) + } + + fn mesh_hand_r( + &self, + species: TSpecies, + body_type: TBodyType, + ) -> BoneMeshes { + let spec = match self.0.get(&(species, body_type)) { + Some(spec) => spec, + None => { + error!( + "No right hand specification exists for the combination of {:?} and {:?}", + species, body_type + ); + return load_mesh("not_found", Vec3::new(-5.0, -5.0, -2.5)); + }, + }; + let lateral = graceful_load_segment(&spec.hand_r.lateral.0); + + (lateral, Vec3::from(spec.hand_r.offset)) + } + + fn mesh_leg_l( + &self, + species: TSpecies, + body_type: TBodyType, + ) -> BoneMeshes { + let spec = match self.0.get(&(species, body_type)) { + Some(spec) => spec, + None => { + error!( + "No left leg specification exists for the combination of {:?} and {:?}", + species, body_type + ); + return load_mesh("not_found", Vec3::new(-5.0, -5.0, -2.5)); + }, + }; + let lateral = graceful_load_segment(&spec.leg_l.lateral.0); + + (lateral, Vec3::from(spec.leg_l.offset)) + } + + fn mesh_leg_r( + &self, + species: TSpecies, + body_type: TBodyType, + ) -> BoneMeshes { + let spec = match self.0.get(&(species, body_type)) { + Some(spec) => spec, + None => { + error!( + "No right leg specification exists for the combination of {:?} and {:?}", + species, body_type + ); + return load_mesh("not_found", Vec3::new(-5.0, -5.0, -2.5)); + }, + }; + let lateral = graceful_load_segment(&spec.leg_r.lateral.0); + + (lateral, Vec3::from(spec.leg_r.offset)) + } + + fn mesh_foot_l( + &self, + species: TSpecies, + body_type: TBodyType, + ) -> BoneMeshes { + let spec = match self.0.get(&(species, body_type)) { + Some(spec) => spec, + None => { + error!( + "No left foot specification exists for the combination of {:?} and {:?}", + species, body_type + ); + return load_mesh("not_found", Vec3::new(-5.0, -5.0, -2.5)); + }, + }; + let lateral = graceful_load_segment(&spec.foot_l.lateral.0); + + (lateral, Vec3::from(spec.foot_l.offset)) + } + + fn mesh_foot_r( + &self, + species: TSpecies, + body_type: TBodyType, + ) -> BoneMeshes { + let spec = match self.0.get(&(species, body_type)) { + Some(spec) => spec, + None => { + error!( + "No right foot specification exists for the combination of {:?} and {:?}", + species, body_type + ); + return load_mesh("not_found", Vec3::new(-5.0, -5.0, -2.5)); + }, + }; + let lateral = graceful_load_segment(&spec.foot_r.lateral.0); + + (lateral, Vec3::from(spec.foot_r.offset)) } } //// @@ -2821,6 +3025,10 @@ make_vox_spec!( body.species, body.body_type, )), + Some(spec.center.asset.mesh_torso_lower( + body.species, + body.body_type, + )), Some(spec.lateral.asset.mesh_shoulder_l( body.species, body.body_type, @@ -2858,7 +3066,6 @@ make_vox_spec!( None, None, None, - None, ] }, ); @@ -2900,7 +3107,6 @@ impl GolemCenterSpec { &self, species: GSpecies, body_type: GBodyType, - generate_mesh: impl FnOnce(Segment, Vec3) -> BoneMeshes, ) -> BoneMeshes { let spec = match self.0.get(&(species, body_type)) { Some(spec) => spec, @@ -2909,12 +3115,12 @@ impl GolemCenterSpec { "No torso lower specification exists for the combination of {:?} and {:?}", species, body_type ); - return load_mesh("not_found", Vec3::new(-5.0, -5.0, -2.5), generate_mesh); + return load_mesh("not_found", Vec3::new(-5.0, -5.0, -2.5)); }, }; let center = graceful_load_segment(&spec.torso_lower.center.0); - generate_mesh(center, Vec3::from(spec.torso_lower.offset)) + (center, Vec3::from(spec.torso_lower.offset)) } } impl GolemLateralSpec { diff --git a/voxygen/src/scene/figure/mod.rs b/voxygen/src/scene/figure/mod.rs index b6a16f0f9e..eda6fa8fb5 100644 --- a/voxygen/src/scene/figure/mod.rs +++ b/voxygen/src/scene/figure/mod.rs @@ -17,11 +17,11 @@ use crate::{ }; use anim::{ biped_large::BipedLargeSkeleton, bird_medium::BirdMediumSkeleton, - bird_small::BirdSmallSkeleton, character::CharacterSkeleton, critter::CritterSkeleton, - dragon::DragonSkeleton, fish_medium::FishMediumSkeleton, fish_small::FishSmallSkeleton, - golem::GolemSkeleton, object::ObjectSkeleton, quadruped_low::QuadrupedLowSkeleton, - quadruped_medium::QuadrupedMediumSkeleton, quadruped_small::QuadrupedSmallSkeleton, Animation, - Skeleton, + bird_small::BirdSmallSkeleton, character::CharacterSkeleton, dragon::DragonSkeleton, + fish_medium::FishMediumSkeleton, fish_small::FishSmallSkeleton, golem::GolemSkeleton, + object::ObjectSkeleton, quadruped_low::QuadrupedLowSkeleton, + quadruped_medium::QuadrupedMediumSkeleton, quadruped_small::QuadrupedSmallSkeleton, + theropod::TheropodSkeleton, Animation, Skeleton, }; use common::{ comp::{ @@ -87,7 +87,7 @@ struct FigureMgrStates { quadruped_low_states: HashMap>, bird_medium_states: HashMap>, fish_medium_states: HashMap>, - critter_states: HashMap>, + theropod_states: HashMap>, dragon_states: HashMap>, bird_small_states: HashMap>, fish_small_states: HashMap>, @@ -105,7 +105,7 @@ impl FigureMgrStates { quadruped_low_states: HashMap::new(), bird_medium_states: HashMap::new(), fish_medium_states: HashMap::new(), - critter_states: HashMap::new(), + theropod_states: HashMap::new(), dragon_states: HashMap::new(), bird_small_states: HashMap::new(), fish_small_states: HashMap::new(), @@ -149,8 +149,8 @@ impl FigureMgrStates { .fish_medium_states .get_mut(&entity) .map(DerefMut::deref_mut), - Body::Critter(_) => self - .critter_states + Body::Theropod(_) => self + .theropod_states .get_mut(&entity) .map(DerefMut::deref_mut), Body::Dragon(_) => self.dragon_states.get_mut(&entity).map(DerefMut::deref_mut), @@ -185,7 +185,7 @@ impl FigureMgrStates { Body::QuadrupedLow(_) => self.quadruped_low_states.remove(&entity).map(|e| e.meta), Body::BirdMedium(_) => self.bird_medium_states.remove(&entity).map(|e| e.meta), Body::FishMedium(_) => self.fish_medium_states.remove(&entity).map(|e| e.meta), - Body::Critter(_) => self.critter_states.remove(&entity).map(|e| e.meta), + Body::Theropod(_) => self.theropod_states.remove(&entity).map(|e| e.meta), Body::Dragon(_) => self.dragon_states.remove(&entity).map(|e| e.meta), Body::BirdSmall(_) => self.bird_small_states.remove(&entity).map(|e| e.meta), Body::FishSmall(_) => self.fish_small_states.remove(&entity).map(|e| e.meta), @@ -203,7 +203,7 @@ impl FigureMgrStates { self.quadruped_low_states.retain(|k, v| f(k, &mut *v)); self.bird_medium_states.retain(|k, v| f(k, &mut *v)); self.fish_medium_states.retain(|k, v| f(k, &mut *v)); - self.critter_states.retain(|k, v| f(k, &mut *v)); + self.theropod_states.retain(|k, v| f(k, &mut *v)); self.dragon_states.retain(|k, v| f(k, &mut *v)); self.bird_small_states.retain(|k, v| f(k, &mut *v)); self.fish_small_states.retain(|k, v| f(k, &mut *v)); @@ -220,7 +220,7 @@ impl FigureMgrStates { + self.quadruped_low_states.len() + self.bird_medium_states.len() + self.fish_medium_states.len() - + self.critter_states.len() + + self.theropod_states.len() + self.dragon_states.len() + self.bird_small_states.len() + self.fish_small_states.len() @@ -255,7 +255,7 @@ impl FigureMgrStates { .filter(|(_, c)| c.visible()) .count() + self - .critter_states + .theropod_states .iter() .filter(|(_, c)| c.visible()) .count() @@ -300,7 +300,7 @@ impl FigureMgrStates { pub struct FigureMgr { col_lights: FigureColLights, model_cache: FigureModelCache, - critter_model_cache: FigureModelCache, + theropod_model_cache: FigureModelCache, quadruped_small_model_cache: FigureModelCache, quadruped_medium_model_cache: FigureModelCache, quadruped_low_model_cache: FigureModelCache, @@ -320,7 +320,7 @@ impl FigureMgr { Self { col_lights: FigureColLights::new(renderer), model_cache: FigureModelCache::new(), - critter_model_cache: FigureModelCache::new(), + theropod_model_cache: FigureModelCache::new(), quadruped_small_model_cache: FigureModelCache::new(), quadruped_medium_model_cache: FigureModelCache::new(), quadruped_low_model_cache: FigureModelCache::new(), @@ -341,7 +341,7 @@ impl FigureMgr { pub fn clean(&mut self, tick: u64) { span!(_guard, "clean", "FigureManager::clean"); self.model_cache.clean(&mut self.col_lights, tick); - self.critter_model_cache.clean(&mut self.col_lights, tick); + self.theropod_model_cache.clean(&mut self.col_lights, tick); self.quadruped_small_model_cache .clean(&mut self.col_lights, tick); self.quadruped_medium_model_cache @@ -1636,8 +1636,8 @@ impl FigureMgr { &mut update_buf, ); }, - Body::Critter(body) => { - let (model, skeleton_attr) = self.critter_model_cache.get_or_create_model( + Body::Theropod(body) => { + let (model, skeleton_attr) = self.theropod_model_cache.get_or_create_model( renderer, &mut self.col_lights, *body, @@ -1648,10 +1648,11 @@ impl FigureMgr { scene_data.thread_pool, ); - let state = - self.states.critter_states.entry(entity).or_insert_with(|| { - FigureState::new(renderer, CritterSkeleton::default()) - }); + let state = self + .states + .theropod_states + .entry(entity) + .or_insert_with(|| FigureState::new(renderer, TheropodSkeleton::default())); let (character, last_character) = match (character, last_character) { (Some(c), Some(l)) => (c, l), @@ -1668,24 +1669,24 @@ impl FigureMgr { physics.in_fluid.is_some(), // In water ) { // Standing - (true, false, false) => anim::critter::IdleAnimation::update_skeleton( - &CritterSkeleton::default(), + (true, false, false) => anim::theropod::IdleAnimation::update_skeleton( + &TheropodSkeleton::default(), time, state.state_time, &mut state_animation_rate, skeleton_attr, ), // Running - (true, true, false) => anim::critter::RunAnimation::update_skeleton( - &CritterSkeleton::default(), + (true, true, false) => anim::theropod::RunAnimation::update_skeleton( + &TheropodSkeleton::default(), (vel.0.magnitude(), time), state.state_time, &mut state_animation_rate, skeleton_attr, ), // In air - (false, _, false) => anim::critter::JumpAnimation::update_skeleton( - &CritterSkeleton::default(), + (false, _, false) => anim::theropod::JumpAnimation::update_skeleton( + &TheropodSkeleton::default(), (vel.0.magnitude(), time), state.state_time, &mut state_animation_rate, @@ -1693,8 +1694,8 @@ impl FigureMgr { ), // TODO! - _ => anim::critter::IdleAnimation::update_skeleton( - &CritterSkeleton::default(), + _ => anim::theropod::IdleAnimation::update_skeleton( + &TheropodSkeleton::default(), time, state.state_time, &mut state_animation_rate, @@ -2321,7 +2322,7 @@ impl FigureMgr { let FigureMgr { col_lights: ref col_lights_, model_cache, - critter_model_cache, + theropod_model_cache, quadruped_small_model_cache, quadruped_medium_model_cache, quadruped_low_model_cache, @@ -2341,7 +2342,7 @@ impl FigureMgr { quadruped_low_states, bird_medium_states, fish_medium_states, - critter_states, + theropod_states, dragon_states, bird_small_states, fish_small_states, @@ -2454,14 +2455,14 @@ impl FigureMgr { ), ) }), - Body::Critter(body) => critter_states + Body::Theropod(body) => theropod_states .get(&entity) .filter(|state| filter_state(&*state)) .map(move |state| { ( state.locals(), state.bone_consts(), - critter_model_cache.get_model( + theropod_model_cache.get_model( col_lights, *body, loadout, diff --git a/world/src/layer/mod.rs b/world/src/layer/mod.rs index 4ab7406b02..1f56cb27b6 100644 --- a/world/src/layer/mod.rs +++ b/world/src/layer/mod.rs @@ -281,7 +281,7 @@ pub fn apply_caves_supplement<'a>( }; comp::quadruped_low::Body::random_with(rng, &species).into() }, - 3 => { + _ => { is_hostile = true; let species = match rng.gen_range(0, 8) { 0 => comp::biped_large::Species::Ogre, @@ -291,14 +291,6 @@ pub fn apply_caves_supplement<'a>( }; comp::biped_large::Body::random_with(rng, &species).into() }, - _ => { - is_hostile = false; - let species = match rng.gen_range(0, 5) { - 0 => comp::critter::Species::Fungome, - _ => comp::critter::Species::Rat, - }; - comp::critter::Body::random_with(rng, &species).into() - }, }) .with_alignment(if is_hostile { comp::Alignment::Enemy diff --git a/world/src/lib.rs b/world/src/lib.rs index a992cc9188..e698f714e8 100644 --- a/world/src/lib.rs +++ b/world/src/lib.rs @@ -35,7 +35,7 @@ use crate::{ util::{Grid, Sampler}, }; use common::{ - comp::{self, bird_medium, critter, quadruped_low, quadruped_medium, quadruped_small}, + comp::{self, bird_medium, quadruped_low, quadruped_medium, quadruped_small, theropod}, generation::{ChunkSupplement, EntityInfo}, msg::server::WorldMapMsg, terrain::{Block, BlockKind, TerrainChunk, TerrainChunkMeta, TerrainChunkSize}, @@ -256,8 +256,8 @@ impl World { comp::Body::BirdMedium(bird_medium::Body::random()) }, 2 => { - is_hostile = false; - comp::Body::Critter(critter::Body::random()) + is_hostile = true; + comp::Body::Theropod(theropod::Body::random()) }, 3 => { match quadlow { From d61d0e3c365fe9e3445c260148bc5ff6af15cc10 Mon Sep 17 00:00:00 2001 From: Snowram Date: Sat, 29 Aug 2020 16:11:48 +0200 Subject: [PATCH 11/28] Tweak offsets for theropods --- .../voxygen/voxel/npc/archaeos/male/leg_l.vox | Bin 2540 -> 2540 bytes .../voxygen/voxel/npc/archaeos/male/leg_r.vox | Bin 2540 -> 2540 bytes .../voxygen/voxel/npc/archaeos/male/neck.vox | Bin 2836 -> 2836 bytes .../npc/odontotyrannos/Odontotyrannos-4.vox | Bin 2952 -> 0 bytes .../npc/odontotyrannos/Odontotyrannos-9.vox | Bin 2476 -> 0 bytes .../chest_back.vox} | Bin .../chest_front.vox} | Bin .../foot_l.vox} | Bin .../voxel/npc/odontotyrannos/male/foot_r.vox | Bin 0 -> 2952 bytes .../{Odontotyrannos-6.vox => male/hand_l.vox} | Bin .../hand_r.vox} | Bin .../{Odontotyrannos-0.vox => male/head.vox} | Bin .../{Odontotyrannos-1.vox => male/jaw.vox} | Bin .../{Odontotyrannos-5.vox => male/leg_l.vox} | Bin .../voxel/npc/odontotyrannos/male/leg_r.vox | Bin 0 -> 2476 bytes .../tail_back.vox} | Bin .../tail_front.vox} | Bin .../voxel/theropod_central_manifest.ron | 60 +++++++------- .../voxel/theropod_lateral_manifest.ron | 52 ++++++------ voxygen/src/anim/src/quadruped_medium/run.rs | 4 +- voxygen/src/anim/src/theropod/idle.rs | 39 ++++----- voxygen/src/anim/src/theropod/jump.rs | 36 ++++----- voxygen/src/anim/src/theropod/mod.rs | 76 +++++++----------- voxygen/src/anim/src/theropod/run.rs | 42 +++++----- 24 files changed, 146 insertions(+), 163 deletions(-) delete mode 100644 assets/voxygen/voxel/npc/odontotyrannos/Odontotyrannos-4.vox delete mode 100644 assets/voxygen/voxel/npc/odontotyrannos/Odontotyrannos-9.vox rename assets/voxygen/voxel/npc/odontotyrannos/{Odontotyrannos-3.vox => male/chest_back.vox} (100%) rename assets/voxygen/voxel/npc/odontotyrannos/{Odontotyrannos-2.vox => male/chest_front.vox} (100%) rename assets/voxygen/voxel/npc/odontotyrannos/{Odontotyrannos-10.vox => male/foot_l.vox} (100%) create mode 100644 assets/voxygen/voxel/npc/odontotyrannos/male/foot_r.vox rename assets/voxygen/voxel/npc/odontotyrannos/{Odontotyrannos-6.vox => male/hand_l.vox} (100%) rename assets/voxygen/voxel/npc/odontotyrannos/{Odontotyrannos-11.vox => male/hand_r.vox} (100%) rename assets/voxygen/voxel/npc/odontotyrannos/{Odontotyrannos-0.vox => male/head.vox} (100%) rename assets/voxygen/voxel/npc/odontotyrannos/{Odontotyrannos-1.vox => male/jaw.vox} (100%) rename assets/voxygen/voxel/npc/odontotyrannos/{Odontotyrannos-5.vox => male/leg_l.vox} (100%) create mode 100644 assets/voxygen/voxel/npc/odontotyrannos/male/leg_r.vox rename assets/voxygen/voxel/npc/odontotyrannos/{Odontotyrannos-8.vox => male/tail_back.vox} (100%) rename assets/voxygen/voxel/npc/odontotyrannos/{Odontotyrannos-7.vox => male/tail_front.vox} (100%) diff --git a/assets/voxygen/voxel/npc/archaeos/male/leg_l.vox b/assets/voxygen/voxel/npc/archaeos/male/leg_l.vox index 6c94ec3143a1034824e42a25c0c94ea1e831e6fe..0007f2a7878efdb437db62146c7e3159ec6ead82 100644 GIT binary patch delta 1464 zcmW-h!4=pj3`Eh41lWhYq>XK1i?R)8w~$`a&sLBk@|}YoMo1$u8vOgm?;k(^d*i%Q zn9r3tcGhvV-Y?Jo)aY0C@o4m0b*zeGOXs8Nmy*@z)v7-&=UqCNYwm2vj-0D}KH2+| z>W}kV$5xKJh*!=lHJ_^SycH9m`NZhU9#^u@IBpLD8^E2WI=}+}ab6@B4QJow1AnJ+ zz=F6ub_K;67&I6`L5exYQjFy%Dy6Dvmdtv!+nA^AH!z&Sbm|` z%rm&5xp8P-(E+2w05s^neMJN?x)8TC8nKT%Vxog%sRsI(x5l`PmW-wZYf=3U#uObh z7lIwNaRufeUdQ!1j!OX*2uA@J4On#M^KLQdl#Y9C&0-X_J&W1au2E>D5GQ*T8mX1D zC|od9G+SV?cRg0Y3^4->a-y!pUsdli8yDbNs2H$fb?sIp5+sTRMH-22wF1!g`5Vn7 z#mEbahB+fA@Cm%u^U+M2&gGeilkbt2N5WL{0`T=W?<7bBHRWSgiM>fuLUFDfSS0Ka zi@z$N7$DZlL~NWFtCLZ2W(rU&DAI_FYK#?pa@D|1zOkTIyv`>I14tjpFi*}5K333xDH09wH5en;J)oSGTuJ=p$nWB*5&Pwj*dkvv p6!_Ew27*yhv;P~2<1<045DiI#;=S=ZZ3JW0P&qT~zy7a(@(+7|yoUe) delta 1464 zcmW-h%Nf`>2!sX0L-t`WX=7X1qHIfNw~$`a&sLBk@;e7USqKI+jQsn@?;k(^d;7ej zusl~p@6d4#uS=tzw7SCkajV;Ptn6cZosX+757s=dp?XHlJL_E1+%b=BF<0jKgx3>Q zkK$Wed(10pKB<1*>*EhBIO>@?*78vw<*NEQu8?aTvz(KujD zTpT-_ViOD+w5A}%6urEA>5D6JvbJLx{j&KwnSeD8l8pk+ZQ~^QxY8*g&WH}m!i1l-0By4IZ#9C zjl?K6a;`z#sKy5y++I*<*=uk^k#C$Uj%9*T;yh|uz@{I!7YzFZYd(Ta%VX(MF`|%YifYF6>OQ8|vaa&Jxa4c7&k9oWGCA1_o<*;U|+ZdBMmRtyS zeD-CSn)o`dSAAUGP=Ro~0iyvGo#lCtZaSr7&+Q`_MQ)8`wz<<1jU?h^Ux`L?#YhS# z3?F{8*JQ8SkTIzIoTnV=YX zMo~-7$T55l-tc&Q1Wm`%2*k;^#U%@v3SIy{f8!2ZsOkS2;`q#=)e#LzMsXkfP6xr51}bNU{_FqzC;k8_BD|ph diff --git a/assets/voxygen/voxel/npc/archaeos/male/leg_r.vox b/assets/voxygen/voxel/npc/archaeos/male/leg_r.vox index 702d3e818ff50688ca41de5db7d59a1eb844e1c8..7f205f0dc194e244ef962bb0167a1c6fdfa2335a 100644 GIT binary patch delta 1464 zcmW-h%Nf`>2!zG(l6}}q+SnGhDBIH6Eu@$9vlXO>{LX<-7J>l{Bme&K`^V4!UOR6S z=I65LZFyW-b!pZ!x-P4JyzBNn*05u{&d0MZ4^}^~%z85BJ#;SR+%}FKG1u_(v8u;Z zkK$WK$nqu2n02E!;wF-0%8Ui#uhj@NcvG;ZnMwWi%U^lV{X|Cy&TA(ba3P9J9Iojg7Vx+ zL+KdB(&tLzQjHHbxV@k-yjOBVksq8Zjui=`#Cg<;fXzB?7Yx?~Yd(U_@MGzPUNO($ zhT_Jdc|`$6hXH8NeSSp*FuHJVDKsKK?y!jtj^)|tW8U6<2`vdtIjlw29gHaob1nos zKKcqwM!b&el^vHGR3IETz-U0CGe7UNrc*ku+&+_0qWgIf2i?%ZkTm&~z-#K%9JcTRiNpZ%52T$Z=TPG?fyuW` ze8G1+qww3=Yx>G`Xv9yvg`*o^PQLI9UxeQ&;+!=c4Pe60d6>hV@7F2ffT|ra5zv4T z2!zG(l6}}q+SnGhDBIH6Eu@$9vlXO>{LX<-7J>l{Bme&K`^V4!-acurz_UL;M?=df{`3&#p9X$b>PgpHwU&h}0xMc)RfJIXR*Z?Tbon)uss6Fz)Uo;L_ z6BoxGO|c0E4MtOtVv1hgz4XNuIa%AW5&g3HI+=hq4w8)m;OQ8|vaYs*da4h#mAMRcl`un$VNFiwW%!5ZyTnEgcqA$Y%vm#cI*9~1#eyP9qGqlDG(Z2OnV=YX zLD5Lg$O(K7UMe0RLDR7`0&((famfOvf){{KZ`?+Z6Ol=RDeB&-d#TaX@8`m7sV~y#$$+EG%#MC zlK6v(XC%54GZaCCXCwl}ZEVYg;%x;Dh$1l&--I!8C4+KSa=pY~j(mxyM(mewww-*Z pp}^-d7%)afP5o<#<1<045DiI2aSeW_gJ8@DDrbiJ^?&{oe*lT_ygvW{ diff --git a/assets/voxygen/voxel/npc/archaeos/male/neck.vox b/assets/voxygen/voxel/npc/archaeos/male/neck.vox index bbe142c14df466582927b2a30ab0d8e171aebbab..29f2c001df17a8c88257c4a3a2bbd8daa62e41f2 100644 GIT binary patch delta 1762 zcmW-h$(6=74upxN0IL0-j}D=`lbAG|hqi;H!=J(&oXI5UPjjdTk;GCcg8JvLfByRK ze?B9Aeb|$89x?UA7?-=>o_^WX-NS!u<{dU3tGqloGrOEK>%49Fw~UyM+h<+Lx5!b$ zIE!zU;~Q5NafKb@jnGeEv-qy`r|atpLC)jX z0%UymOT_%QoY>5tCSMcZrJtVl-4;LX%hkj*F`c0D){M_(t>2VCHREY>lIdHllXWSc z?05vBs^wAIRq>wn(^Hq;GiR^kDt)n^SD-@G8zXY+F80coJ7?X25kM=o-Y7mdidhahQ+4i^$yznKZ9vzl*~9x{c25wLKv>Z;NIQUJL$TkhRZC z@4foGEAR^x;#`qOMQ#dh>AA}DtQVm@UHeC_qg-cpt?D`on^jx3PGQxYSDl4TaXx(0 zuro`m%=S!Qm42vnNVOL>N9-E0rnF1iYQ&b|yTZ46*AZtrG47u&jf5bRK#xrxN13nX zu@(h0>r_IjbFVCdCPe9=^T}Fra1HC(r0y&I7yr&P9d*4Ttxt&kWSCV0`F4 zc%LCG5=Lo{W`Jhz%7rHdYB@z0nv+*D&&=l47z6pj8A|7MEL+lTYT9g@i;ktqvtysaipi6M0DfuB8zz}^{@U?A MQT7Vxf7O5HzuTwYa{vGU delta 1762 zcmW-h$&v0h41@(V7HVFVk1vFOCJCqEJhUAo9h8C(&cq4&lMh`GNi2;fsDFO{^ZV~V zpP?TgcE>b!O?hifrdS zGkww>U!CE^Id)8!((WRM!tTc+eoXQ0dK1Jg0vc<|k2#p?TV=PkJ{5kqf87$~NjzPskLiD_awfX9`Sp3^LULVnkzyW2^YpJW}ZOS;2! zCxpu9JHyV(_pI-p^33}h^?vauEyu-JHoEk zue)-_A?~)B1Yc*6APH*ryS~n0bqbjy?TWH%sP2(@k47zgJZG+Mz71bPCHJq(#kYRZ z(teLq+#gY|Ay~y06a(l9JugW8=mbBUn8(wQz9*Irk-0LW8i1XoV z4m-kg$+j)Rmki(2b5GS)*cjS!XbI((%C&~pNZ&Gjt#_R|qKGMf)@Txf2m(uMmiB62 zsu`AZ^}C}Kp%5y;=%g8Z8hM-IpgNAWKH7V0 zQ73@a)~MSLl6CNrwKR-7a%=9YxtnGlx?=CQh(pA+g-}S?U>!ON8_8a3^WnROt!jYe z&J_q{9T?47$0izbppp3J@rdL;7`!eHa(CF8^=96S2@6}ZI?QV`$QooVYd0jdAZg}d z%#T&9HsbK0F!$?RqZ_%o9v29{-vMU`-6+odxbj(?Bu)}1iBrhEc2^MqDC89K>fK`; zF5qKz1KFEH&XLq1>(+Gdi%)$h=2Zed?=tZIT^Up{gsKIH!~p7{d+|Oc zEE39dlQBS3Zy7UB3ix~^UF0-)CF6)_UX3x3FPx!tUdOx!-G*k)XJ%ro#n2^{B>%@Z=zXUv%?^NmiV{cDzrN LJqP-?`j7YzxA@+L diff --git a/assets/voxygen/voxel/npc/odontotyrannos/Odontotyrannos-4.vox b/assets/voxygen/voxel/npc/odontotyrannos/Odontotyrannos-4.vox deleted file mode 100644 index cc45052882acb2c0c04a7566aa6b4ad83f18a795..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 2952 zcmW-i4Qy8B6~~`@@ALiKw@8*{V=|+tM3GiguwX3$1%yKRvbIn_`LwLGZ|8kK)>9WO5&HnqpzR9oubDw*jbIx<_ zxwmce7hgIkgqShi+#B?>Wq!(OpM5Kwqv)@AkG7{BNUB7ZXi=6# zY5GwOv6_BVuSFKLD5kt8jVLH1%Gxjw)f$mG+TMs_pq)~srH`eL6`8T3XsswY+Magc zdP+NSj75|aMNKtS>zI$WryXdgRFjKK%F~A!&)PkGsNS<@8H@f^D79p{$))kd*KRdR7$_HoSlQDu|FMVrLzbzJl$Br)eXE*fHqlQH`pXMuJq zj3ZR7dqHE(8^Gp5ublF=v@RIxZNhr8=tDaVe0Lc4Fd88u}4U46$5urcw{{ zQ&Xz6ai%PNsK&-6YZ;4pt_70XxR~QCO2@jD%CuunVqIKzF3vnPkd$lM^PZ10>vDa+<7kAUQ#X3EoI3OFD2hW+Dc|#N!H3fXvrCnJd5NE z$YRj4q>bc!%Yr4&(3cu2YgY0*KwtLHQ-hU7GP7~2kYE2h72xlky+e4v>p`?% zR)hb%`a1sg)G@57Yrww;594UlQhd}ufOAWF@b=t1{`cPd_-TJX&Rx`uz1P>{zTsnW z;m{$xvbF=8XHLeE!Cm;IzZXBAJp+eUufT7nG~#DB*5l37ConK;3X0Pv;>=C;Xl<;+ z!#Cf6&vxI7qtnOZ*p?0WZ2eknX|Bgd*L@Rj-r94watUBzweI{PJwH}38wfKD5 zwOBXhDm=1aJWj8ghG&;I;LE`t6q+VtC|iWLw`chD_L2B|-)x-iYr)T#O+ee^8vJEv z4|XhRz^8{cx7&mCNh56}GoU;J?^aN6P@C$7NRXO?5+cfLhNVC2Y= z)Nf%-WV)hRfD+;Z@|`_T^JaegPqUZiKAy9!5ZssYrv=t3vuvI$FT0+0;=3hB!O`@x^NxJ!29&j=zY}_iw_KrLDMbNgMi3 zoyLT&JPy43SM&}(f{uqD$Hp^%z_=%0LOQDvxwe&z`4q;jE#b|HE8cpf!}-b1+P8yI%w6xb2f5X+uL7~g}t2i`zW zc|S&9G84mVH(}oVhj7^?t$1MLtGIK`BY1S+6t;D}jCIXF!H(XeXqmJW&+qsx_T-;O zZ{v^9aP3sg9(5Z!YS*KE>}q^}+(s;FUWB2ICouV%IxHG98MjYbfWqn?th)ME?|pVH;LVxCvi<@lU>`U*ea)I*y%t_M&gY-MDjo33sf$11;?>m_L6O zZkaX-6B;I>zIHS&T)2Sq=g;HBi4!<{_%OC?*@E8QUbMEhV*2#y7&U4Xh7TW($`|1O D_eNTx diff --git a/assets/voxygen/voxel/npc/odontotyrannos/Odontotyrannos-9.vox b/assets/voxygen/voxel/npc/odontotyrannos/Odontotyrannos-9.vox deleted file mode 100644 index 771bfd55c64cb60977c8910fc75e2c2d6caef470..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 2476 zcmX9;4Qy8B6@LHUYjl}pF&l#s?XXd3iz(P*DYO)j7Rpa8EtK+8ek=~?H}3uJT}y$) zjvq@^XalPSmw_S(Oro%&KsOyoLdIlcW*IY59d3ybH>S%LHZXhkTz8X`^WOK~_nhZE z=Q(fvoCWvy3L$1qu9{6J`tA~x_Ob9fa!Msi*~BQ5bxJ4F`Pg}%SfjJjsL&`MX&ppH+r%pV?}DswDiqel!kO6F zAZr!Z)^Sh8!l+mqoj7eGL2nq_X&XB4vYKAn)Kp}QjHOet)HYUVRvX4}ku;2**3JCR=vZ3A+KH1`Ou$+L z8>_%ZG9YepXamQ6A6seYb*zK5hn8Ffq4mV;9WfcM`Hy#z@jldCEAH#Shsyh`VqT+z zP+Q4(K9rJpq#|#QJf|3CR(Nt|1M){4#!wH`h-U6|k3BckiFQ6xv!@t7yhjv)+>Lv`_52Cm+7vQyXIE zTuH;e8^+e@UEmVIcft8qHlQv7a!5>!qZGNLPl9+P*H%)esn;~#W0o_f1SyYOD^&Z8^szzLI z@5beY8GJaa1^@l{8h+B=j?4E}W8b4C*fJy!H;){_JFA+pZF(7w_wK@H?XCFHjA=Ns zq6xn)ufR_yl;Fzw0d!ZEBRge0E=(#xT}2W0JpLHI*u5Dir;fwv&Q17Y<0^Dkm*Dy% z_u=nv=P z!yO?$UosqjYny?KZMFE>qGHsS72wZ38SGqGiqDU1!~Rt>arS#Wx2GAq+gos8MG-#T z-GoiGdAP83F8Y>^!nH%|v9+-fU+$X)oY{gK&yK>415e?2+f?+fD8R+`JWLrk41Yb< zg|@oUc%!uly-^iD**yUlp3cXMneQS~HwK^ehq!Wj2Y%RGf;V^6;ph8W@l5krobAd5 zjt|4{`f@RNFdx6_8;k$EGYwZyt;d<3LR^1yI&Ph-z(a)(W9{k^ym5E|KE3<{-2TIM z;Cz6;4~)dcV@omo+ux)O#qi<7>A!`X`@e&ipDV`Nrjgjz_9&J&;}pO0O=bFsNAAIJOGW7)Ftm^phC8kZMfR?TDB-m?bX z{WH;XY#mNs+>e#37huE7W!QGM88aFtqM|7uHJQoi>EDH?cW%V6j!9VjS_g{iOOdmw z28aK68ml))$Zwg6$Jx`7yE52z=mm)FYjM}IN(`M{j=Z=D;FT3%|$ML#J?0Wd*)gzl^U#sff03hw&Pu_Te%l6cArDnnzymK`p4MW zdJ?r08*yUiZ_w9r0<9I#qjbz<%*a`c=E99=$XkK$kL|$x>iOvJ7(m(RBFrCEh9wi{ zB3hBb@`vZ4rJxaK3wPjfRXgenit(q?E;JQS!k4%I!706iU;Oe6diwUEZPNy<+Zf}? zRZpU}p%!!IRN{##6H#0`9wmjjxOwv?1_uW*Fff3lM~|YjvlFeYt*EQ3!_=u$k&}~y LAwz~By#f9QxyBM} diff --git a/assets/voxygen/voxel/npc/odontotyrannos/Odontotyrannos-3.vox b/assets/voxygen/voxel/npc/odontotyrannos/male/chest_back.vox similarity index 100% rename from assets/voxygen/voxel/npc/odontotyrannos/Odontotyrannos-3.vox rename to assets/voxygen/voxel/npc/odontotyrannos/male/chest_back.vox diff --git a/assets/voxygen/voxel/npc/odontotyrannos/Odontotyrannos-2.vox b/assets/voxygen/voxel/npc/odontotyrannos/male/chest_front.vox similarity index 100% rename from assets/voxygen/voxel/npc/odontotyrannos/Odontotyrannos-2.vox rename to assets/voxygen/voxel/npc/odontotyrannos/male/chest_front.vox diff --git a/assets/voxygen/voxel/npc/odontotyrannos/Odontotyrannos-10.vox b/assets/voxygen/voxel/npc/odontotyrannos/male/foot_l.vox similarity index 100% rename from assets/voxygen/voxel/npc/odontotyrannos/Odontotyrannos-10.vox rename to assets/voxygen/voxel/npc/odontotyrannos/male/foot_l.vox diff --git a/assets/voxygen/voxel/npc/odontotyrannos/male/foot_r.vox b/assets/voxygen/voxel/npc/odontotyrannos/male/foot_r.vox new file mode 100644 index 0000000000000000000000000000000000000000..d141945ef50f6b8e297d95c194269cf2316fd16b GIT binary patch literal 2952 zcmXAq3yf9O6^8eF?{m(*Jkm6+l@g^$6q&&cIN&%43?K{)FUJ`e-VYr*%-pHxK04zF ziIj(c7KT7a)TXF_0@WyXP#&!oBq62JQq$BLMXPP1#+GW+#uiNf{@32*%fHS(Yp=ET zI_sRii3ZA?7$7_30GU$*WVh)iTo zGmj-|Aag|Yi5MryToRa0XpvXM8&Pydl&leXLo`uDa@|`|aF+g-_h@U{ibyNc*ojg^ zf}0rDB6-51^NW~1d+NR3O0zMp{;2v zu1nf+#8@OmqTs2HY9r>Ot!XRTlIpUm7-ISm7qj-5K2#mECfYJC*XL57FjvAD3GXMo zPgMzXQAK&(y1dWuTp6C5s0{Z~eU^U2MwaJrsSUQIyv^&c`YVf0%hVF1Wl3pS^oDE1 z8d)$#vcIyZj7%l*R_2|R%q2_4%A&S1RYa25$wK60F;Kme>@WQs<2uIRwc@p;9c;O` zjN_SuYP>9I&p4jcYF+SH6ZArD>vQIj-JZp$~ z9^zuw5;GprvCONOHFM24$7f8xgn1MCCETB|CfYh-O;k}{cP<|?%$tz~mtkIFc&&-c zvOmN`mgjH<9dT~iU+*nzv_+#-Nh`(qu_dQf!D_``tAZvVTFqPeDs45}bFi&4b7txbKzoWw?|WFnPnsv?qWKIXkxr8eeyh~~AT z%2*YB!Wt6ZOBkQ3sfuf|yyjdfWK`-i><86mcow3Fywl%4?hPAQ}&Ts|{&tfw1_(@L>E)HtIzFTXsY49jqK71Ij zt!c%U=@W6ZZ#O>e>B5g@PQ&5VEAZ<{b@=J+HF)dnDfG^mgu;~ZICn=4n(C_Y*qyiG z^F14JZ0cB?*t#B{uUmty4K?`qmapTjyPI%qX#+OTsK)+f)A7dLHOSAX!WTt9_lw*N;bkx&ZI&Nb%XSA^2POOq}m-#Lt$DL-WK+{CQU=b}p*L zXNR}o$u+ZZx{doDYsH?P9QLoS#z%WrV145#oZCDPdzX*I2hZG(&5Nt><-Xa#$xZm= z;gR@c|95e;dn)=?SK@rnC`=i9E&h6ZJGz^0#*1Cm=*!pR!#%g-+=CT(qVqfGY#NPE z`%}DiVh4WET7#E&G~ws_y6{lz7@Xcd0yugtez$i7E*-4EulA0?e_or0caPtXle?<$ z@ypZk#hE(XSalOR*4E&~LkscI#qZiZGCWc-2 zZ9M(RICQKSjxF7{VpYp1d~%@yU%cIbs~^tC+ZTHA{8M$f^yck2_~d-NdS)WyS73MF zJZ#)vfusHRW97>6m^Ei47O$$r?D@B0+pc!>_Rqqu=kLR@^H1WQwF~jU(-X1fbSq}I zOhDa=3e4}Ej9vY^@!-yNxOT%GSo+)sR5#aR*!uZ6^v4reyD^W7+$`M5XF7a$C$>EE zD8#l7L@Q_DnmLm&s<;B;x6eTw>4muR21ZPqfYy_*V8lb4F==rVZduff?lWgGu04l? z@BIZ`eUGE{v8S-%-0v~wnd8XJs6)1SC1XB|F>8vrp|J%+w;n=sM*$1gZO6iw-o?$! zOQ_lT3M!X$Laf?^^(WrL{6m*edH8)KgT97=H%vmfrUGKg3rNOx;(^{b(OEix5kseA zaMfnanfoZNAKHY6H@uGf?s*(f^q#@?_E)jC;m6q7bqtLY7UQLzzro(zOX#ZmA!`<$(OR_*Eu&WBdt)|WLBj&{Z#adCH&TkOP4O;)TvWAa^wiMZrzHmt}Zk+HDT)1sTekF7zPg>jPe)Ye~mCym;e9( literal 0 HcmV?d00001 diff --git a/assets/voxygen/voxel/npc/odontotyrannos/Odontotyrannos-6.vox b/assets/voxygen/voxel/npc/odontotyrannos/male/hand_l.vox similarity index 100% rename from assets/voxygen/voxel/npc/odontotyrannos/Odontotyrannos-6.vox rename to assets/voxygen/voxel/npc/odontotyrannos/male/hand_l.vox diff --git a/assets/voxygen/voxel/npc/odontotyrannos/Odontotyrannos-11.vox b/assets/voxygen/voxel/npc/odontotyrannos/male/hand_r.vox similarity index 100% rename from assets/voxygen/voxel/npc/odontotyrannos/Odontotyrannos-11.vox rename to assets/voxygen/voxel/npc/odontotyrannos/male/hand_r.vox diff --git a/assets/voxygen/voxel/npc/odontotyrannos/Odontotyrannos-0.vox b/assets/voxygen/voxel/npc/odontotyrannos/male/head.vox similarity index 100% rename from assets/voxygen/voxel/npc/odontotyrannos/Odontotyrannos-0.vox rename to assets/voxygen/voxel/npc/odontotyrannos/male/head.vox diff --git a/assets/voxygen/voxel/npc/odontotyrannos/Odontotyrannos-1.vox b/assets/voxygen/voxel/npc/odontotyrannos/male/jaw.vox similarity index 100% rename from assets/voxygen/voxel/npc/odontotyrannos/Odontotyrannos-1.vox rename to assets/voxygen/voxel/npc/odontotyrannos/male/jaw.vox diff --git a/assets/voxygen/voxel/npc/odontotyrannos/Odontotyrannos-5.vox b/assets/voxygen/voxel/npc/odontotyrannos/male/leg_l.vox similarity index 100% rename from assets/voxygen/voxel/npc/odontotyrannos/Odontotyrannos-5.vox rename to assets/voxygen/voxel/npc/odontotyrannos/male/leg_l.vox diff --git a/assets/voxygen/voxel/npc/odontotyrannos/male/leg_r.vox b/assets/voxygen/voxel/npc/odontotyrannos/male/leg_r.vox new file mode 100644 index 0000000000000000000000000000000000000000..245295d41f668ded54130948c301aad75c5f8d6f GIT binary patch literal 2476 zcmX9;4Qy8B6@LHUYjl}pF&l#s?XXd3iz(P*DYO)j7Rpa8EtK+8ek=~?H}3uJT}y$) zjvq@^XalPSmw_S(Oro%&KsOyoLdIlcW*IY59d3ybH>S%LHZXhkTz8X`^WOK~_nhZE z=Q(fvoCWvy3L$1qu9{6J`tA~YUVRvX4}ku{8+*3JCF=-67r+KH1`RKQvT z8=JsJHXv?tCv!@YiP<+v)+>Lv`_52Cm+_QyXIE zTv@}u8^+e@UEmVOcgOiQHlQv7a!5>!V-&g9ntSAgGiJ!8ajEBhB5hSyYOD^&Z8^szzLI z@5beY8GJaa1^@l{8h+B=j?4E}W8b4C*fJy!H;){_JFA+pZF(7w_wK@H?XCFHjA=Ns zq6xn)ufR_yl;Fzw0d!ZEBRge0E=(#xT}2W0JpLHI*u5Dir;fwv&Q17Y<0^Dkm*Dy% z_u=nv=P z!yO?$UosqjYny?KZMFE>qGHsS72wZ38SGqGiqDU1!~Rt>arS#Wx2GAq+gos8MG-#T z-GoiGdAP83F8Y>^!nH%|v9+-fU+$X)oY{gK&yK>415e?2+f?+fD8R+`JWLrk41Yb< zg|@oUc%!uly-^iD**yUlp3cXMneQS~HwK^ehq!Wj2Y%RGf;V^6;ph8W@l5krobAd5 zjt|4{`f@RNFdx6_8;k$EGYwZyt;d<3LR^1yI&Ph-z(a)(W9{k^ym5E|KE3<{-2TIM z;Cz6;4~)dcV@omo+ux)O#qi<7>A!`X`@e&ipDV`Nrjgjz_9&J&;}pO0O=bFsNAAIJOGW7)Ftm^phC8kZMfR?TDB-m?bX z{WH;XY#mNs+>e#37huE7W!QGM88aFtqM|7uHJQoi>EDH?cW%V6j!9VjS_g{iOOdmw z28aK68ml))$Zwg6$Jx`7yE52z=mm)FYjM}IN(`M{j=Z=D;FT3%|$ML#J?0Wd*)gzl^U#sff03hw&Pu_Te%l6cArDnnzymK`p4MW zdJ?r08*yUiZ_w9r0<9I#qjbz<%*a`c=E99=$XkK$kL|$x>iOvJ7(m(RBFrCEh9wi{ zB3hBb@`vZ4rJxaK3wPjfRXgenit(q?E;JQS!k4%I!706iU;Oe6diwUEZPNy<+Zf}? zRZpU}p%!!IRN{##6H#0`9wmjjxOwv?1_uW*Fff3lM~|YjvlFeYt*EQ3!_=u$k&}~y LAwz~By#f9QHQ^EQ literal 0 HcmV?d00001 diff --git a/assets/voxygen/voxel/npc/odontotyrannos/Odontotyrannos-8.vox b/assets/voxygen/voxel/npc/odontotyrannos/male/tail_back.vox similarity index 100% rename from assets/voxygen/voxel/npc/odontotyrannos/Odontotyrannos-8.vox rename to assets/voxygen/voxel/npc/odontotyrannos/male/tail_back.vox diff --git a/assets/voxygen/voxel/npc/odontotyrannos/Odontotyrannos-7.vox b/assets/voxygen/voxel/npc/odontotyrannos/male/tail_front.vox similarity index 100% rename from assets/voxygen/voxel/npc/odontotyrannos/Odontotyrannos-7.vox rename to assets/voxygen/voxel/npc/odontotyrannos/male/tail_front.vox diff --git a/assets/voxygen/voxel/theropod_central_manifest.ron b/assets/voxygen/voxel/theropod_central_manifest.ron index 1b21ef0838..d859b44337 100644 --- a/assets/voxygen/voxel/theropod_central_manifest.ron +++ b/assets/voxygen/voxel/theropod_central_manifest.ron @@ -5,7 +5,7 @@ central: ("npc.archaeos.male.head"), ), jaw: ( - offset: (-4.5, -9.0, -3.0), + offset: (-5.5, -9.0, -3.0), central: ("npc.archaeos.male.jaw"), ), neck: ( @@ -35,7 +35,7 @@ central: ("npc.archaeos.male.head"), ), jaw: ( - offset: (-4.5, -9.0, -3.0), + offset: (-5.5, -9.0, -3.0), central: ("npc.archaeos.male.jaw"), ), neck: ( @@ -61,62 +61,62 @@ ), (Odontotyrannos, Male): ( head: ( - offset: (-4.5, -4.0, -4.0), - central: ("npc.rat.male.head"), + offset: (-10.5, 0.0, -8.0), + central: ("npc.odontotyrannos.male.head"), ), jaw: ( - offset: (-4.5, -6.0, -4.0), - central: ("npc.rat.male.chest"), + offset: (-6.5, -7.0, -3.0), + central: ("npc.odontotyrannos.male.jaw"), ), neck: ( - offset: (-4.0, -1.5, -1.0), - central: ("npc.rat.male.chest"), + offset: (0.0, 0.0, 0.0), + central: ("armor.empty"), ), chest_front: ( - offset: (-4.0, -1.5, -1.0), - central: ("npc.rat.male.chest"), + offset: (-5.5, -5.0, -6.0), + central: ("npc.odontotyrannos.male.chest_front"), ), chest_back: ( - offset: (-4.0, -1.5, -1.0), - central: ("npc.rat.male.chest"), + offset: (-6.5, -8.0, -8.5), + central: ("npc.odontotyrannos.male.chest_back"), ), tail_front: ( - offset: (-0.5, -4.0, -1.5), - central: ("npc.rat.male.chest"), + offset: (-3.5, -8.0, -5.5), + central: ("npc.odontotyrannos.male.tail_front"), ), tail_back: ( - offset: (-0.5, -4.0, -1.5), - central: ("npc.rat.male.chest"), + offset: (-2.5, -8.0, -3.0), + central: ("npc.odontotyrannos.male.tail_back"), ), ), (Odontotyrannos, Female): ( head: ( - offset: (-4.5, -4.0, -4.0), - central: ("npc.rat.male.head"), + offset: (-10.5, 0.0, -8.0), + central: ("npc.odontotyrannos.male.head"), ), jaw: ( - offset: (-4.5, -6.0, -4.0), - central: ("npc.rat.male.chest"), + offset: (-6.5, -7.0, -3.0), + central: ("npc.odontotyrannos.male.jaw"), ), neck: ( - offset: (-4.0, -1.5, -1.0), - central: ("npc.rat.male.chest"), + offset: (0.0, 0.0, 0.0), + central: ("armor.empty"), ), chest_front: ( - offset: (-4.0, -1.5, -1.0), - central: ("npc.rat.male.chest"), + offset: (-5.5, -5.0, -6.0), + central: ("npc.odontotyrannos.male.chest_front"), ), chest_back: ( - offset: (-4.0, -1.5, -1.0), - central: ("npc.rat.male.chest"), + offset: (-6.5, -8.0, -8.5), + central: ("npc.odontotyrannos.male.chest_back"), ), tail_front: ( - offset: (-0.5, -4.0, -1.5), - central: ("npc.rat.male.chest"), + offset: (-3.5, -8.0, -5.5), + central: ("npc.odontotyrannos.male.tail_front"), ), tail_back: ( - offset: (-0.5, -4.0, -1.5), - central: ("npc.rat.male.chest"), + offset: (-2.5, -8.0, -3.0), + central: ("npc.odontotyrannos.male.tail_back"), ), ), }) diff --git a/assets/voxygen/voxel/theropod_lateral_manifest.ron b/assets/voxygen/voxel/theropod_lateral_manifest.ron index 67e48db670..9c4db7376e 100644 --- a/assets/voxygen/voxel/theropod_lateral_manifest.ron +++ b/assets/voxygen/voxel/theropod_lateral_manifest.ron @@ -5,7 +5,7 @@ lateral: ("npc.archaeos.male.hand_l"), ), hand_r: ( - offset: (0.0, -2.0, -4.0), + offset: (0.0, -2.0, -9.0), lateral: ("npc.archaeos.male.hand_r"), ), leg_l: ( @@ -31,7 +31,7 @@ lateral: ("npc.archaeos.male.hand_l"), ), hand_r: ( - offset: (0.0, -2.0, -4.0), + offset: (0.0, -2.0, -9.0), lateral: ("npc.archaeos.male.hand_r"), ), leg_l: ( @@ -53,54 +53,54 @@ ), (Odontotyrannos, Male): ( hand_l: ( - offset: (-6.0, -3.5, -4.0), - lateral: ("npc.ogre.male.shoulder_l"), + offset: (-3.0, -3.0, -7.0), + lateral: ("npc.odontotyrannos.male.hand_l"), ), hand_r: ( - offset: (-6.0, -4.5, -4.0), - lateral: ("npc.ogre.male.shoulder_r"), + offset: (0.0, -3.0, -7.0), + lateral: ("npc.odontotyrannos.male.hand_r"), ), leg_l: ( - offset: (-6.0, -3.5, -4.0), - lateral: ("npc.ogre.male.shoulder_l"), + offset: (-7.0, -4.5, -4.0), + lateral: ("npc.odontotyrannos.male.leg_l"), ), leg_r: ( - offset: (-6.0, -4.5, -4.0), - lateral: ("npc.ogre.male.shoulder_r"), + offset: (0.0, -4.5, -4.0), + lateral: ("npc.odontotyrannos.male.leg_r"), ), foot_l: ( - offset: (-6.0, -3.5, -4.0), - lateral: ("npc.ogre.male.shoulder_l"), + offset: (-14.0, -1.0, -8.0), + lateral: ("npc.odontotyrannos.male.foot_l"), ), foot_r: ( - offset: (-6.0, -4.5, -4.0), - lateral: ("npc.ogre.male.shoulder_r"), + offset: (-6.0, -1.0, -8.0), + lateral: ("npc.odontotyrannos.male.foot_r"), ), ), (Odontotyrannos, Female): ( hand_l: ( - offset: (-6.0, -3.5, -4.0), - lateral: ("npc.ogre.male.shoulder_l"), + offset: (-3.0, -3.0, -7.0), + lateral: ("npc.odontotyrannos.male.hand_l"), ), hand_r: ( - offset: (-6.0, -4.5, -4.0), - lateral: ("npc.ogre.male.shoulder_r"), + offset: (0.0, -3.0, -7.0), + lateral: ("npc.odontotyrannos.male.hand_r"), ), leg_l: ( - offset: (-6.0, -3.5, -4.0), - lateral: ("npc.ogre.male.shoulder_l"), + offset: (-7.0, -4.5, -4.0), + lateral: ("npc.odontotyrannos.male.leg_l"), ), leg_r: ( - offset: (-6.0, -4.5, -4.0), - lateral: ("npc.ogre.male.shoulder_r"), + offset: (0.0, -4.5, -4.0), + lateral: ("npc.odontotyrannos.male.leg_r"), ), foot_l: ( - offset: (-6.0, -3.5, -4.0), - lateral: ("npc.ogre.male.shoulder_l"), + offset: (-14.0, -1.0, -8.0), + lateral: ("npc.odontotyrannos.male.foot_l"), ), foot_r: ( - offset: (-6.0, -4.5, -4.0), - lateral: ("npc.ogre.male.shoulder_r"), + offset: (-6.0, -1.0, -8.0), + lateral: ("npc.odontotyrannos.male.foot_r"), ), ), }) diff --git a/voxygen/src/anim/src/quadruped_medium/run.rs b/voxygen/src/anim/src/quadruped_medium/run.rs index 310e6d2105..23af24cfd3 100644 --- a/voxygen/src/anim/src/quadruped_medium/run.rs +++ b/voxygen/src/anim/src/quadruped_medium/run.rs @@ -133,11 +133,11 @@ impl Animation for RunAnimation { skeleton_attr.torso_front.1 + canceler * 1.0 + canceler * shortalt * 2.5 - + x_tilt * 10.0, + + x_tilt * 10.0 * canceler, ) * skeleton_attr.scaler / 11.0; next.torso_front.orientation = - Quaternion::rotation_x((amplitude * (short * -0.13).max(-0.2)) + x_tilt) + Quaternion::rotation_x((amplitude * (short * -0.13).max(-0.2)) + x_tilt * (canceler * 6.0).min(1.0)) * Quaternion::rotation_y(tilt * 0.8) * Quaternion::rotation_z(tilt * -1.5); next.torso_front.scale = Vec3::one() * skeleton_attr.scaler / 11.0; diff --git a/voxygen/src/anim/src/theropod/idle.rs b/voxygen/src/anim/src/theropod/idle.rs index f82a9575a1..7fc5ea3121 100644 --- a/voxygen/src/anim/src/theropod/idle.rs +++ b/voxygen/src/anim/src/theropod/idle.rs @@ -58,52 +58,53 @@ impl Animation for IdleAnimation { next.tail_back.scale = Vec3::one(); next.hand_l.position = Vec3::new( - skeleton_attr.hand_l.0, - skeleton_attr.hand_l.0, - skeleton_attr.hand_l.1, + -skeleton_attr.hand.0, + skeleton_attr.hand.1, + skeleton_attr.hand.2, ); next.hand_l.orientation = Quaternion::rotation_z(0.0); next.hand_l.scale = Vec3::one(); next.hand_r.position = Vec3::new( - skeleton_attr.hand_r.0, - skeleton_attr.hand_r.0, - skeleton_attr.hand_r.1, + skeleton_attr.hand.0, + skeleton_attr.hand.1, + skeleton_attr.hand.2, ); next.hand_r.orientation = Quaternion::rotation_z(0.0); - next.hand_l.scale = Vec3::one(); + next.hand_r.scale = Vec3::one(); next.leg_l.position = Vec3::new( - skeleton_attr.leg_l.0, - skeleton_attr.leg_l.0, - skeleton_attr.leg_l.1, + -skeleton_attr.leg.0, + skeleton_attr.leg.1, + skeleton_attr.leg.2, ); next.leg_l.orientation = Quaternion::rotation_z(0.0); next.leg_l.scale = Vec3::one(); next.leg_r.position = Vec3::new( - skeleton_attr.leg_r.0, - skeleton_attr.leg_r.0, - skeleton_attr.leg_r.1, + skeleton_attr.leg.0, + skeleton_attr.leg.1, + skeleton_attr.leg.2, ); next.leg_r.orientation = Quaternion::rotation_z(0.0); next.leg_r.scale = Vec3::one(); next.foot_l.position = Vec3::new( - skeleton_attr.foot_l.0, - skeleton_attr.foot_l.0, - skeleton_attr.foot_l.1, + -skeleton_attr.foot.0, + skeleton_attr.foot.1, + skeleton_attr.foot.2, ); next.foot_l.orientation = Quaternion::rotation_z(0.0); next.foot_l.scale = Vec3::one(); next.foot_r.position = Vec3::new( - skeleton_attr.foot_r.0, - skeleton_attr.foot_r.0, - skeleton_attr.foot_r.1, + skeleton_attr.foot.0, + skeleton_attr.foot.1, + skeleton_attr.foot.2, ); next.foot_r.orientation = Quaternion::rotation_z(0.0); next.foot_r.scale = Vec3::one(); + next } } diff --git a/voxygen/src/anim/src/theropod/jump.rs b/voxygen/src/anim/src/theropod/jump.rs index a18778e6a6..fe6be33a0b 100644 --- a/voxygen/src/anim/src/theropod/jump.rs +++ b/voxygen/src/anim/src/theropod/jump.rs @@ -59,49 +59,49 @@ impl Animation for JumpAnimation { next.tail_back.scale = Vec3::one(); next.hand_l.position = Vec3::new( - skeleton_attr.hand_l.0, - skeleton_attr.hand_l.0, - skeleton_attr.hand_l.1, + -skeleton_attr.hand.0, + skeleton_attr.hand.1, + skeleton_attr.hand.2, ); next.hand_l.orientation = Quaternion::rotation_z(0.0); next.hand_l.scale = Vec3::one(); next.hand_r.position = Vec3::new( - skeleton_attr.hand_r.0, - skeleton_attr.hand_r.0, - skeleton_attr.hand_r.1, + skeleton_attr.hand.0, + skeleton_attr.hand.1, + skeleton_attr.hand.2, ); next.hand_r.orientation = Quaternion::rotation_z(0.0); next.hand_l.scale = Vec3::one(); next.leg_l.position = Vec3::new( - skeleton_attr.leg_l.0, - skeleton_attr.leg_l.0, - skeleton_attr.leg_l.1, + -skeleton_attr.leg.0, + skeleton_attr.leg.1, + skeleton_attr.leg.2, ); next.leg_l.orientation = Quaternion::rotation_z(0.0); next.leg_l.scale = Vec3::one(); next.leg_r.position = Vec3::new( - skeleton_attr.leg_r.0, - skeleton_attr.leg_r.0, - skeleton_attr.leg_r.1, + skeleton_attr.leg.0, + skeleton_attr.leg.1, + skeleton_attr.leg.2, ); next.leg_r.orientation = Quaternion::rotation_z(0.0); next.leg_r.scale = Vec3::one(); next.foot_l.position = Vec3::new( - skeleton_attr.foot_l.0, - skeleton_attr.foot_l.0, - skeleton_attr.foot_l.1, + -skeleton_attr.foot.0, + skeleton_attr.foot.1, + skeleton_attr.foot.2, ); next.foot_l.orientation = Quaternion::rotation_z(0.0); next.foot_l.scale = Vec3::one(); next.foot_r.position = Vec3::new( - skeleton_attr.foot_r.0, - skeleton_attr.foot_r.0, - skeleton_attr.foot_r.1, + skeleton_attr.foot.0, + skeleton_attr.foot.1, + skeleton_attr.foot.2, ); next.foot_r.orientation = Quaternion::rotation_z(0.0); next.foot_r.scale = Vec3::one(); diff --git a/voxygen/src/anim/src/theropod/mod.rs b/voxygen/src/anim/src/theropod/mod.rs index 4a024f8663..86b08cfb5a 100644 --- a/voxygen/src/anim/src/theropod/mod.rs +++ b/voxygen/src/anim/src/theropod/mod.rs @@ -77,12 +77,9 @@ pub struct SkeletonAttr { chest_back: (f32, f32), tail_front: (f32, f32), tail_back: (f32, f32), - hand_l: (f32, f32, f32), - hand_r: (f32, f32, f32), - leg_l: (f32, f32, f32), - leg_r: (f32, f32, f32), - foot_l: (f32, f32, f32), - foot_r: (f32, f32, f32), + hand: (f32, f32, f32), + leg: (f32, f32, f32), + foot: (f32, f32, f32), } impl<'a> std::convert::TryFrom<&'a comp::Body> for SkeletonAttr { @@ -106,12 +103,9 @@ impl Default for SkeletonAttr { chest_back: (0.0, 0.0), tail_front: (0.0, 0.0), tail_back: (0.0, 0.0), - hand_l: (0.0, 0.0, 0.0), - hand_r: (0.0, 0.0, 0.0), - leg_l: (0.0, 0.0, 0.0), - leg_r: (0.0, 0.0, 0.0), - foot_l: (0.0, 0.0, 0.0), - foot_r: (0.0, 0.0, 0.0), + hand: (0.0, 0.0, 0.0), + leg: (0.0, 0.0, 0.0), + foot: (0.0, 0.0, 0.0), } } } @@ -121,56 +115,44 @@ impl<'a> From<&'a Body> for SkeletonAttr { use comp::theropod::Species::*; Self { head: match (body.species, body.body_type) { - (Archaeos, _) => (6.5, 3.0), - (Odontotyrannos, _) => (5.0, 1.0), + (Archaeos, _) => (8.0, 4.0), + (Odontotyrannos, _) => (-2.5, 3.0), }, jaw: match (body.species, body.body_type) { - (Archaeos, _) => (0.0, 6.0), - (Odontotyrannos, _) => (-1.0, 3.0), + (Archaeos, _) => (10.0, -7.0), + (Odontotyrannos, _) => (10.0, -7.0), }, neck: match (body.species, body.body_type) { - (Archaeos, _) => (0.0, 6.0), - (Odontotyrannos, _) => (-1.0, 3.0), + (Archaeos, _) => (4.5, -2.0), + (Odontotyrannos, _) => (4.5, -2.0), }, chest_front: match (body.species, body.body_type) { - (Archaeos, _) => (0.0, 6.0), - (Odontotyrannos, _) => (-1.0, 3.0), + (Archaeos, _) => (4.5, 20.0), + (Odontotyrannos, _) => (4.0, 13.0), }, chest_back: match (body.species, body.body_type) { - (Archaeos, _) => (0.0, 6.0), - (Odontotyrannos, _) => (-1.0, 3.0), + (Archaeos, _) => (-5.5, -1.0), + (Odontotyrannos, _) => (-5.0, 2.0), }, tail_front: match (body.species, body.body_type) { - (Archaeos, _) => (-8.0, -1.0), - (Odontotyrannos, _) => (-7.0, -1.0), + (Archaeos, _) => (-9.0, -1.5), + (Odontotyrannos, _) => (-8.0, -1.0), }, tail_back: match (body.species, body.body_type) { - (Archaeos, _) => (-8.0, -1.0), - (Odontotyrannos, _) => (-7.0, -1.0), + (Archaeos, _) => (-20.0, -0.5), + (Odontotyrannos, _) => (-19.0, -1.5), }, - hand_l: match (body.species, body.body_type) { - (Archaeos, _) => (-8.0, -1.0, 0.0), - (Odontotyrannos, _) => (-7.0, -1.0, 0.0), + hand: match (body.species, body.body_type) { + (Archaeos, _) => (2.5, -2.5, -4.0), + (Odontotyrannos, _) => (3.5, 3.0, -4.0), }, - hand_r: match (body.species, body.body_type) { - (Archaeos, _) => (8.0, -1.0, 0.0), - (Odontotyrannos, _) => (7.0, -1.0, 0.0), + leg: match (body.species, body.body_type) { + (Archaeos, _) => (4.5, -9.0, -4.0), + (Odontotyrannos, _) => (5.5, -6.5, -2.0), }, - leg_l: match (body.species, body.body_type) { - (Archaeos, _) => (-8.0, -1.0, 0.0), - (Odontotyrannos, _) => (-7.0, -1.0, 0.0), - }, - leg_r: match (body.species, body.body_type) { - (Archaeos, _) => (8.0, -1.0, 0.0), - (Odontotyrannos, _) => (7.0, -1.0, 0.0), - }, - foot_l: match (body.species, body.body_type) { - (Archaeos, _) => (-8.0, -1.0, 0.0), - (Odontotyrannos, _) => (-7.0, -1.0, 0.0), - }, - foot_r: match (body.species, body.body_type) { - (Archaeos, _) => (8.0, -1.0, 0.0), - (Odontotyrannos, _) => (7.0, -1.0, 0.0), + foot: match (body.species, body.body_type) { + (Archaeos, _) => (1.0, -0.5, -8.0), + (Odontotyrannos, _) => (-1.0, -6.5, -3.0), }, } } diff --git a/voxygen/src/anim/src/theropod/run.rs b/voxygen/src/anim/src/theropod/run.rs index 4ca88632a4..c607a53f8f 100644 --- a/voxygen/src/anim/src/theropod/run.rs +++ b/voxygen/src/anim/src/theropod/run.rs @@ -22,9 +22,9 @@ impl Animation for RunAnimation { ) -> Self::Skeleton { let mut next = (*skeleton).clone(); - let wave = (anim_time as f32 * 8.0).sin(); - let wavealt = (anim_time as f32 * 8.0 + PI / 2.0).sin(); - let wave_slow = (anim_time as f32 * 6.5 + PI).sin(); + //let wave = (anim_time as f32 * 8.0).sin(); + //let wavealt = (anim_time as f32 * 8.0 + PI / 2.0).sin(); + //let wave_slow = (anim_time as f32 * 6.5 + PI).sin(); next.head.position = Vec3::new(0.0, skeleton_attr.head.0, skeleton_attr.head.1); next.head.orientation = Quaternion::rotation_z(0.0); @@ -62,49 +62,49 @@ impl Animation for RunAnimation { next.tail_back.scale = Vec3::one(); next.hand_l.position = Vec3::new( - skeleton_attr.hand_l.0, - skeleton_attr.hand_l.0, - skeleton_attr.hand_l.1, + -skeleton_attr.hand.0, + skeleton_attr.hand.1, + skeleton_attr.hand.2, ); next.hand_l.orientation = Quaternion::rotation_z(0.0); next.hand_l.scale = Vec3::one(); next.hand_r.position = Vec3::new( - skeleton_attr.hand_r.0, - skeleton_attr.hand_r.0, - skeleton_attr.hand_r.1, + skeleton_attr.hand.0, + skeleton_attr.hand.1, + skeleton_attr.hand.2, ); next.hand_r.orientation = Quaternion::rotation_z(0.0); next.hand_l.scale = Vec3::one(); next.leg_l.position = Vec3::new( - skeleton_attr.leg_l.0, - skeleton_attr.leg_l.0, - skeleton_attr.leg_l.1, + -skeleton_attr.leg.0, + skeleton_attr.leg.1, + skeleton_attr.leg.2, ); next.leg_l.orientation = Quaternion::rotation_z(0.0); next.leg_l.scale = Vec3::one(); next.leg_r.position = Vec3::new( - skeleton_attr.leg_r.0, - skeleton_attr.leg_r.0, - skeleton_attr.leg_r.1, + skeleton_attr.leg.0, + skeleton_attr.leg.1, + skeleton_attr.leg.2, ); next.leg_r.orientation = Quaternion::rotation_z(0.0); next.leg_r.scale = Vec3::one(); next.foot_l.position = Vec3::new( - skeleton_attr.foot_l.0, - skeleton_attr.foot_l.0, - skeleton_attr.foot_l.1, + -skeleton_attr.foot.0, + skeleton_attr.foot.1, + skeleton_attr.foot.2, ); next.foot_l.orientation = Quaternion::rotation_z(0.0); next.foot_l.scale = Vec3::one(); next.foot_r.position = Vec3::new( - skeleton_attr.foot_r.0, - skeleton_attr.foot_r.0, - skeleton_attr.foot_r.1, + skeleton_attr.foot.0, + skeleton_attr.foot.1, + skeleton_attr.foot.2, ); next.foot_r.orientation = Quaternion::rotation_z(0.0); next.foot_r.scale = Vec3::one(); From 54f4c3c0482539b3232c39e53c83e21a48f65cc2 Mon Sep 17 00:00:00 2001 From: jshipsey Date: Sat, 29 Aug 2020 19:46:05 -0400 Subject: [PATCH 12/28] idle for theropod, corrections to swimming --- voxygen/src/anim/src/quadruped_medium/run.rs | 6 +- voxygen/src/anim/src/theropod/idle.rs | 50 +++++----- voxygen/src/anim/src/theropod/jump.rs | 53 +++++------ voxygen/src/anim/src/theropod/mod.rs | 24 ++--- voxygen/src/anim/src/theropod/run.rs | 96 ++++++++++++++------ voxygen/src/scene/figure/mod.rs | 40 +++++++- 6 files changed, 173 insertions(+), 96 deletions(-) diff --git a/voxygen/src/anim/src/quadruped_medium/run.rs b/voxygen/src/anim/src/quadruped_medium/run.rs index 23af24cfd3..8fa866c4d3 100644 --- a/voxygen/src/anim/src/quadruped_medium/run.rs +++ b/voxygen/src/anim/src/quadruped_medium/run.rs @@ -25,7 +25,7 @@ impl Animation for RunAnimation { let speed = Vec2::::from(velocity).magnitude(); *rate = 1.0; //let increasefreqtest = (((1.0/speed)*3.0).round()).min(5.0); - let lab = 0.1; //6 + let lab = 0.6; //6 let amplitude = (speed / 24.0).max(0.25); let amplitude2 = (speed * 1.4 / 24.0).max(0.6); let amplitude3 = (speed / 24.0).max(0.35); @@ -106,8 +106,8 @@ impl Animation for RunAnimation { next.head_upper.position = Vec3::new(0.0, skeleton_attr.head_upper.0, skeleton_attr.head_upper.1); next.head_upper.orientation = - Quaternion::rotation_x(look.y * 0.1 / canceler + amplitude * short * -0.03 - 0.1) - * Quaternion::rotation_z(look.x * 0.1 / canceler + tilt * -1.2) + Quaternion::rotation_x(look.y*0.3 / ((canceler).max(0.5)) + amplitude * short * -0.03 - 0.1) + * Quaternion::rotation_z(look.x*0.3 / ((canceler).max(0.5)) + tilt * -1.2) * Quaternion::rotation_y(tilt * 0.8); next.head_upper.scale = Vec3::one(); diff --git a/voxygen/src/anim/src/theropod/idle.rs b/voxygen/src/anim/src/theropod/idle.rs index 7fc5ea3121..b6c35f5d0c 100644 --- a/voxygen/src/anim/src/theropod/idle.rs +++ b/voxygen/src/anim/src/theropod/idle.rs @@ -22,39 +22,43 @@ impl Animation for IdleAnimation { ) -> Self::Skeleton { let mut next = (*skeleton).clone(); - next.head.position = Vec3::new(0.0, skeleton_attr.head.0, skeleton_attr.head.1); - next.head.orientation = Quaternion::rotation_z(0.0); - next.head.scale = Vec3::one(); + + let breathe = (anim_time as f32 * 0.8).sin(); + + + next.head.position = Vec3::new(0.0, skeleton_attr.head.0, skeleton_attr.head.1+breathe * 0.3); + next.head.orientation = Quaternion::rotation_x(breathe * 0.1-0.1); + next.head.scale = Vec3::one()*1.02; next.jaw.position = Vec3::new(0.0, skeleton_attr.jaw.0, skeleton_attr.jaw.1); - next.jaw.orientation = Quaternion::rotation_z(0.0); - next.jaw.scale = Vec3::one(); + next.jaw.orientation = Quaternion::rotation_x(breathe * 0.05); + next.jaw.scale = Vec3::one()*0.98; - next.neck.position = Vec3::new(0.0, skeleton_attr.neck.0, skeleton_attr.neck.1); - next.neck.orientation = Quaternion::rotation_z(0.0); - next.neck.scale = Vec3::one(); + next.neck.position = Vec3::new(0.0, skeleton_attr.neck.0, skeleton_attr.neck.1+breathe * 0.2); + next.neck.orientation = Quaternion::rotation_x(-0.1); + next.neck.scale = Vec3::one()*0.98; next.chest_front.position = Vec3::new( 0.0, skeleton_attr.chest_front.0, - skeleton_attr.chest_front.1, - ); - next.chest_front.orientation = Quaternion::rotation_z(0.0); - next.chest_front.scale = Vec3::one(); + skeleton_attr.chest_front.1+breathe * 0.3, + )/3.0; + next.chest_front.orientation = Quaternion::rotation_x(breathe * 0.04); + next.chest_front.scale = Vec3::one()/3.0; next.chest_back.position = Vec3::new(0.0, skeleton_attr.chest_back.0, skeleton_attr.chest_back.1); - next.chest_back.orientation = Quaternion::rotation_z(0.0); + next.chest_back.orientation = Quaternion::rotation_x(breathe * -0.04); next.chest_back.scale = Vec3::one(); next.tail_front.position = Vec3::new(0.0, skeleton_attr.tail_front.0, skeleton_attr.tail_front.1); - next.tail_front.orientation = Quaternion::rotation_z(0.0); + next.tail_front.orientation = Quaternion::rotation_x(0.1); next.tail_front.scale = Vec3::one(); next.tail_back.position = Vec3::new(0.0, skeleton_attr.tail_back.0, skeleton_attr.tail_back.1); - next.tail_back.orientation = Quaternion::rotation_z(0.0); + next.tail_back.orientation = Quaternion::rotation_x(0.1); next.tail_back.scale = Vec3::one(); next.hand_l.position = Vec3::new( @@ -62,7 +66,7 @@ impl Animation for IdleAnimation { skeleton_attr.hand.1, skeleton_attr.hand.2, ); - next.hand_l.orientation = Quaternion::rotation_z(0.0); + next.hand_l.orientation = Quaternion::rotation_x(breathe * 0.2); next.hand_l.scale = Vec3::one(); next.hand_r.position = Vec3::new( @@ -70,13 +74,13 @@ impl Animation for IdleAnimation { skeleton_attr.hand.1, skeleton_attr.hand.2, ); - next.hand_r.orientation = Quaternion::rotation_z(0.0); + next.hand_r.orientation = Quaternion::rotation_x(breathe * 0.2); next.hand_r.scale = Vec3::one(); next.leg_l.position = Vec3::new( -skeleton_attr.leg.0, skeleton_attr.leg.1, - skeleton_attr.leg.2, + skeleton_attr.leg.2+breathe * 0.05, ); next.leg_l.orientation = Quaternion::rotation_z(0.0); next.leg_l.scale = Vec3::one(); @@ -84,7 +88,7 @@ impl Animation for IdleAnimation { next.leg_r.position = Vec3::new( skeleton_attr.leg.0, skeleton_attr.leg.1, - skeleton_attr.leg.2, + skeleton_attr.leg.2+breathe * 0.05, ); next.leg_r.orientation = Quaternion::rotation_z(0.0); next.leg_r.scale = Vec3::one(); @@ -92,18 +96,18 @@ impl Animation for IdleAnimation { next.foot_l.position = Vec3::new( -skeleton_attr.foot.0, skeleton_attr.foot.1, - skeleton_attr.foot.2, + skeleton_attr.foot.2+breathe * -0.35, ); next.foot_l.orientation = Quaternion::rotation_z(0.0); - next.foot_l.scale = Vec3::one(); + next.foot_l.scale = Vec3::one()*1.02; next.foot_r.position = Vec3::new( skeleton_attr.foot.0, skeleton_attr.foot.1, - skeleton_attr.foot.2, + skeleton_attr.foot.2+breathe * -0.45, ); next.foot_r.orientation = Quaternion::rotation_z(0.0); - next.foot_r.scale = Vec3::one(); + next.foot_r.scale = Vec3::one()*1.02; next } diff --git a/voxygen/src/anim/src/theropod/jump.rs b/voxygen/src/anim/src/theropod/jump.rs index fe6be33a0b..23c2a5f958 100644 --- a/voxygen/src/anim/src/theropod/jump.rs +++ b/voxygen/src/anim/src/theropod/jump.rs @@ -15,47 +15,48 @@ impl Animation for JumpAnimation { fn update_skeleton_inner( skeleton: &Self::Skeleton, _global_time: Self::Dependency, - _anim_time: f64, + anim_time: f64, _rate: &mut f32, skeleton_attr: &SkeletonAttr, ) -> Self::Skeleton { let mut next = (*skeleton).clone(); - let wave = (_anim_time as f32 * 1.0).sin(); + let breathe = (anim_time as f32 * 0.8).sin(); - next.head.position = Vec3::new(0.0, skeleton_attr.head.0, skeleton_attr.head.1); - next.head.orientation = Quaternion::rotation_z(0.0); - next.head.scale = Vec3::one(); + + next.head.position = Vec3::new(0.0, skeleton_attr.head.0, skeleton_attr.head.1+breathe * 0.3); + next.head.orientation = Quaternion::rotation_x(breathe * 0.1-0.1); + next.head.scale = Vec3::one()*1.02; next.jaw.position = Vec3::new(0.0, skeleton_attr.jaw.0, skeleton_attr.jaw.1); - next.jaw.orientation = Quaternion::rotation_z(0.0); - next.jaw.scale = Vec3::one(); + next.jaw.orientation = Quaternion::rotation_x(breathe * 0.05); + next.jaw.scale = Vec3::one()*0.98; - next.neck.position = Vec3::new(0.0, skeleton_attr.neck.0, skeleton_attr.neck.1); - next.neck.orientation = Quaternion::rotation_z(0.0); - next.neck.scale = Vec3::one(); + next.neck.position = Vec3::new(0.0, skeleton_attr.neck.0, skeleton_attr.neck.1+breathe * 0.2); + next.neck.orientation = Quaternion::rotation_x(-0.1); + next.neck.scale = Vec3::one()*0.98; next.chest_front.position = Vec3::new( 0.0, skeleton_attr.chest_front.0, - skeleton_attr.chest_front.1, - ); - next.chest_front.orientation = Quaternion::rotation_z(0.0); - next.chest_front.scale = Vec3::one(); + skeleton_attr.chest_front.1+breathe * 0.3, + )/3.0; + next.chest_front.orientation = Quaternion::rotation_x(breathe * 0.04); + next.chest_front.scale = Vec3::one()/3.0; next.chest_back.position = Vec3::new(0.0, skeleton_attr.chest_back.0, skeleton_attr.chest_back.1); - next.chest_back.orientation = Quaternion::rotation_z(0.0); + next.chest_back.orientation = Quaternion::rotation_x(breathe * -0.04); next.chest_back.scale = Vec3::one(); next.tail_front.position = Vec3::new(0.0, skeleton_attr.tail_front.0, skeleton_attr.tail_front.1); - next.tail_front.orientation = Quaternion::rotation_z(0.0); + next.tail_front.orientation = Quaternion::rotation_x(0.1); next.tail_front.scale = Vec3::one(); next.tail_back.position = Vec3::new(0.0, skeleton_attr.tail_back.0, skeleton_attr.tail_back.1); - next.tail_back.orientation = Quaternion::rotation_z(0.0); + next.tail_back.orientation = Quaternion::rotation_x(0.1); next.tail_back.scale = Vec3::one(); next.hand_l.position = Vec3::new( @@ -63,7 +64,7 @@ impl Animation for JumpAnimation { skeleton_attr.hand.1, skeleton_attr.hand.2, ); - next.hand_l.orientation = Quaternion::rotation_z(0.0); + next.hand_l.orientation = Quaternion::rotation_x(breathe * 0.2); next.hand_l.scale = Vec3::one(); next.hand_r.position = Vec3::new( @@ -71,13 +72,13 @@ impl Animation for JumpAnimation { skeleton_attr.hand.1, skeleton_attr.hand.2, ); - next.hand_r.orientation = Quaternion::rotation_z(0.0); - next.hand_l.scale = Vec3::one(); + next.hand_r.orientation = Quaternion::rotation_x(breathe * 0.2); + next.hand_r.scale = Vec3::one(); next.leg_l.position = Vec3::new( -skeleton_attr.leg.0, skeleton_attr.leg.1, - skeleton_attr.leg.2, + skeleton_attr.leg.2+breathe * 0.05, ); next.leg_l.orientation = Quaternion::rotation_z(0.0); next.leg_l.scale = Vec3::one(); @@ -85,7 +86,7 @@ impl Animation for JumpAnimation { next.leg_r.position = Vec3::new( skeleton_attr.leg.0, skeleton_attr.leg.1, - skeleton_attr.leg.2, + skeleton_attr.leg.2+breathe * 0.05, ); next.leg_r.orientation = Quaternion::rotation_z(0.0); next.leg_r.scale = Vec3::one(); @@ -93,18 +94,18 @@ impl Animation for JumpAnimation { next.foot_l.position = Vec3::new( -skeleton_attr.foot.0, skeleton_attr.foot.1, - skeleton_attr.foot.2, + skeleton_attr.foot.2+breathe * -0.35, ); next.foot_l.orientation = Quaternion::rotation_z(0.0); - next.foot_l.scale = Vec3::one(); + next.foot_l.scale = Vec3::one()*1.02; next.foot_r.position = Vec3::new( skeleton_attr.foot.0, skeleton_attr.foot.1, - skeleton_attr.foot.2, + skeleton_attr.foot.2+breathe * -0.45, ); next.foot_r.orientation = Quaternion::rotation_z(0.0); - next.foot_r.scale = Vec3::one(); + next.foot_r.scale = Vec3::one()*1.02; next } diff --git a/voxygen/src/anim/src/theropod/mod.rs b/voxygen/src/anim/src/theropod/mod.rs index 86b08cfb5a..d14642c740 100644 --- a/voxygen/src/anim/src/theropod/mod.rs +++ b/voxygen/src/anim/src/theropod/mod.rs @@ -47,8 +47,8 @@ impl Skeleton for TheropodSkeleton { let head_mat = neck_mat * Mat4::::from(self.head); let chest_back_mat = chest_front_mat * Mat4::::from(self.chest_back); let tail_front_mat = chest_back_mat * Mat4::::from(self.tail_front); - let leg_l_mat = chest_front_mat * Mat4::::from(self.leg_l); - let leg_r_mat = chest_front_mat * Mat4::::from(self.leg_r); + let leg_l_mat = chest_back_mat * Mat4::::from(self.leg_l); + let leg_r_mat = chest_back_mat * Mat4::::from(self.leg_r); *(<&mut [_; Self::BONE_COUNT]>::try_from(&mut buf[0..Self::BONE_COUNT]).unwrap()) = [ make_bone(head_mat), @@ -119,16 +119,16 @@ impl<'a> From<&'a Body> for SkeletonAttr { (Odontotyrannos, _) => (-2.5, 3.0), }, jaw: match (body.species, body.body_type) { - (Archaeos, _) => (10.0, -7.0), - (Odontotyrannos, _) => (10.0, -7.0), + (Archaeos, _) => (1.0, -7.0), + (Odontotyrannos, _) => (1.0, -7.0), }, neck: match (body.species, body.body_type) { (Archaeos, _) => (4.5, -2.0), (Odontotyrannos, _) => (4.5, -2.0), }, chest_front: match (body.species, body.body_type) { - (Archaeos, _) => (4.5, 20.0), - (Odontotyrannos, _) => (4.0, 13.0), + (Archaeos, _) => (0.0, 20.0), + (Odontotyrannos, _) => (0.0, 9.0), }, chest_back: match (body.species, body.body_type) { (Archaeos, _) => (-5.5, -1.0), @@ -139,19 +139,19 @@ impl<'a> From<&'a Body> for SkeletonAttr { (Odontotyrannos, _) => (-8.0, -1.0), }, tail_back: match (body.species, body.body_type) { - (Archaeos, _) => (-20.0, -0.5), - (Odontotyrannos, _) => (-19.0, -1.5), + (Archaeos, _) => (-8.0, -0.5), + (Odontotyrannos, _) => (-12.0, -1.5), }, hand: match (body.species, body.body_type) { - (Archaeos, _) => (2.5, -2.5, -4.0), + (Archaeos, _) => (3.0, 0.0, -4.0), (Odontotyrannos, _) => (3.5, 3.0, -4.0), }, leg: match (body.species, body.body_type) { - (Archaeos, _) => (4.5, -9.0, -4.0), - (Odontotyrannos, _) => (5.5, -6.5, -2.0), + (Archaeos, _) => (4.5, -3.0, -4.0), + (Odontotyrannos, _) => (5.5, -2.5, -2.0), }, foot: match (body.species, body.body_type) { - (Archaeos, _) => (1.0, -0.5, -8.0), + (Archaeos, _) => (1.0, -0.5, -7.0), (Odontotyrannos, _) => (-1.0, -6.5, -3.0), }, } diff --git a/voxygen/src/anim/src/theropod/run.rs b/voxygen/src/anim/src/theropod/run.rs index c607a53f8f..95e55f6050 100644 --- a/voxygen/src/anim/src/theropod/run.rs +++ b/voxygen/src/anim/src/theropod/run.rs @@ -26,39 +26,74 @@ impl Animation for RunAnimation { //let wavealt = (anim_time as f32 * 8.0 + PI / 2.0).sin(); //let wave_slow = (anim_time as f32 * 6.5 + PI).sin(); - next.head.position = Vec3::new(0.0, skeleton_attr.head.0, skeleton_attr.head.1); - next.head.orientation = Quaternion::rotation_z(0.0); - next.head.scale = Vec3::one(); + let breathe = (anim_time as f32 * 0.8).sin(); + + let lab = 0.55; //.65 + let foothoril = (((1.0) + / (0.4 + + (0.6) + * ((anim_time as f32 * 16.0 * lab as f32 + PI * 1.4).sin()).powf(2.0 as f32))) + .sqrt()) + * ((anim_time as f32 * 16.0 * lab as f32 + PI * 1.4).sin()); + let foothorir = (((1.0) + / (0.4 + + (0.6) + * ((anim_time as f32 * 16.0 * lab as f32 + PI * 0.4).sin()).powf(2.0 as f32))) + .sqrt()) + * ((anim_time as f32 * 16.0 * lab as f32 + PI * 0.4).sin()); + + + let footrotl = (((5.0) + / (2.5 + + (2.5) + * ((anim_time as f32 * 16.0 * lab as f32 + PI * 1.4).sin()).powf(2.0 as f32))) + .sqrt()) + * ((anim_time as f32 * 16.0 * lab as f32 + PI * 1.4).sin()); + + let footrotr = (((5.0) + / (1.0 + + (4.0) + * ((anim_time as f32 * 16.0 * lab as f32 + PI * 0.4).sin()).powf(2.0 as f32))) + .sqrt()) + * ((anim_time as f32 * 16.0 * lab as f32 + PI * 0.4).sin()); + + let short = (anim_time as f32 * lab as f32 * 16.0).sin(); + + + + next.head.position = Vec3::new(0.0, skeleton_attr.head.0, skeleton_attr.head.1+breathe * 0.3); + next.head.orientation = Quaternion::rotation_x(breathe * 0.1-0.1); + next.head.scale = Vec3::one()*1.02; next.jaw.position = Vec3::new(0.0, skeleton_attr.jaw.0, skeleton_attr.jaw.1); - next.jaw.orientation = Quaternion::rotation_z(0.0); - next.jaw.scale = Vec3::one(); + next.jaw.orientation = Quaternion::rotation_x(breathe * 0.05); + next.jaw.scale = Vec3::one()*0.98; - next.neck.position = Vec3::new(0.0, skeleton_attr.neck.0, skeleton_attr.neck.1); - next.neck.orientation = Quaternion::rotation_z(0.0); - next.neck.scale = Vec3::one(); + next.neck.position = Vec3::new(0.0, skeleton_attr.neck.0, skeleton_attr.neck.1+breathe * 0.2); + next.neck.orientation = Quaternion::rotation_x(-0.1); + next.neck.scale = Vec3::one()*0.98; next.chest_front.position = Vec3::new( 0.0, skeleton_attr.chest_front.0, - skeleton_attr.chest_front.1, - ); - next.chest_front.orientation = Quaternion::rotation_z(0.0); - next.chest_front.scale = Vec3::one(); + skeleton_attr.chest_front.1+breathe * 0.3, + )/3.0; + next.chest_front.orientation = Quaternion::rotation_x(breathe * 0.04); + next.chest_front.scale = Vec3::one()/3.0; next.chest_back.position = Vec3::new(0.0, skeleton_attr.chest_back.0, skeleton_attr.chest_back.1); - next.chest_back.orientation = Quaternion::rotation_z(0.0); + next.chest_back.orientation = Quaternion::rotation_x(breathe * -0.04); next.chest_back.scale = Vec3::one(); next.tail_front.position = Vec3::new(0.0, skeleton_attr.tail_front.0, skeleton_attr.tail_front.1); - next.tail_front.orientation = Quaternion::rotation_z(0.0); + next.tail_front.orientation = Quaternion::rotation_x(0.1); next.tail_front.scale = Vec3::one(); next.tail_back.position = Vec3::new(0.0, skeleton_attr.tail_back.0, skeleton_attr.tail_back.1); - next.tail_back.orientation = Quaternion::rotation_z(0.0); + next.tail_back.orientation = Quaternion::rotation_x(0.1); next.tail_back.scale = Vec3::one(); next.hand_l.position = Vec3::new( @@ -66,7 +101,7 @@ impl Animation for RunAnimation { skeleton_attr.hand.1, skeleton_attr.hand.2, ); - next.hand_l.orientation = Quaternion::rotation_z(0.0); + next.hand_l.orientation = Quaternion::rotation_x(breathe * 0.2); next.hand_l.scale = Vec3::one(); next.hand_r.position = Vec3::new( @@ -74,40 +109,43 @@ impl Animation for RunAnimation { skeleton_attr.hand.1, skeleton_attr.hand.2, ); - next.hand_r.orientation = Quaternion::rotation_z(0.0); - next.hand_l.scale = Vec3::one(); + next.hand_r.orientation = Quaternion::rotation_x(breathe * 0.2); + next.hand_r.scale = Vec3::one(); next.leg_l.position = Vec3::new( -skeleton_attr.leg.0, skeleton_attr.leg.1, - skeleton_attr.leg.2, + skeleton_attr.leg.2+breathe * 0.05, ); - next.leg_l.orientation = Quaternion::rotation_z(0.0); - next.leg_l.scale = Vec3::one(); + next.leg_l.orientation = + Quaternion::rotation_z(short * 0.18) * Quaternion::rotation_x(foothoril * 0.3); next.leg_l.scale = Vec3::one(); next.leg_r.position = Vec3::new( skeleton_attr.leg.0, skeleton_attr.leg.1, - skeleton_attr.leg.2, + skeleton_attr.leg.2+breathe * 0.05, ); - next.leg_r.orientation = Quaternion::rotation_z(0.0); + next.leg_r.orientation = + Quaternion::rotation_z(short * 0.18) * Quaternion::rotation_x(foothorir * 0.3); next.leg_r.scale = Vec3::one(); next.foot_l.position = Vec3::new( -skeleton_attr.foot.0, skeleton_attr.foot.1, - skeleton_attr.foot.2, + skeleton_attr.foot.2+breathe * -0.35, ); - next.foot_l.orientation = Quaternion::rotation_z(0.0); - next.foot_l.scale = Vec3::one(); + next.foot_l.orientation = + Quaternion::rotation_x(-0.1 + footrotl * 0.25); + next.foot_l.scale = Vec3::one()*1.02; next.foot_r.position = Vec3::new( skeleton_attr.foot.0, skeleton_attr.foot.1, - skeleton_attr.foot.2, + skeleton_attr.foot.2+breathe * -0.45, ); - next.foot_r.orientation = Quaternion::rotation_z(0.0); - next.foot_r.scale = Vec3::one(); + next.foot_r.orientation = + Quaternion::rotation_x(-0.1 + footrotr * 0.25); + next.foot_r.scale = Vec3::one()*1.02; next } diff --git a/voxygen/src/scene/figure/mod.rs b/voxygen/src/scene/figure/mod.rs index eda6fa8fb5..99cd5b040b 100644 --- a/voxygen/src/scene/figure/mod.rs +++ b/voxygen/src/scene/figure/mod.rs @@ -1122,6 +1122,16 @@ impl FigureMgr { skeleton_attr, ) }, + // Running + (false, _, true) => { + anim::quadruped_small::RunAnimation::update_skeleton( + &QuadrupedSmallSkeleton::default(), + (vel.0.magnitude(), ori, state.last_ori, time, state.avg_vel), + state.state_time, + &mut state_animation_rate, + skeleton_attr, + ) + }, // In air (false, _, false) => anim::quadruped_small::JumpAnimation::update_skeleton( &QuadrupedSmallSkeleton::default(), @@ -1215,7 +1225,15 @@ impl FigureMgr { ) }, // Running - (true, true, _) => anim::quadruped_medium::RunAnimation::update_skeleton( + (true, true, false) => anim::quadruped_medium::RunAnimation::update_skeleton( + &QuadrupedMediumSkeleton::default(), + (vel.0.magnitude(), ori, state.last_ori, time, state.avg_vel), + state.state_time, + &mut state_animation_rate, + skeleton_attr, + ), + //Swimming + (false, _, true) => anim::quadruped_medium::RunAnimation::update_skeleton( &QuadrupedMediumSkeleton::default(), (vel.0.magnitude(), ori, state.last_ori, time, state.avg_vel), state.state_time, @@ -1317,7 +1335,15 @@ impl FigureMgr { ) }, // Running - (true, true, _) => anim::quadruped_low::RunAnimation::update_skeleton( + (true, true, false) => anim::quadruped_low::RunAnimation::update_skeleton( + &QuadrupedLowSkeleton::default(), + (vel.0.magnitude(), ori, state.last_ori, time, state.avg_vel), + state.state_time, + &mut state_animation_rate, + skeleton_attr, + ), + // Swimming + (false, _, true) => anim::quadruped_low::RunAnimation::update_skeleton( &QuadrupedLowSkeleton::default(), (vel.0.magnitude(), ori, state.last_ori, time, state.avg_vel), state.state_time, @@ -1414,7 +1440,15 @@ impl FigureMgr { skeleton_attr, ), // Running - (true, true, _) => anim::bird_medium::RunAnimation::update_skeleton( + (true, true, false) => anim::bird_medium::RunAnimation::update_skeleton( + &BirdMediumSkeleton::default(), + (vel.0.magnitude(), time), + state.state_time, + &mut state_animation_rate, + skeleton_attr, + ), + // Running + (false, _, true) => anim::bird_medium::RunAnimation::update_skeleton( &BirdMediumSkeleton::default(), (vel.0.magnitude(), time), state.state_time, From 5cf680bca59050fb34ccdfd8eedd64fd29d55b9c Mon Sep 17 00:00:00 2001 From: Snowram Date: Sun, 30 Aug 2020 02:14:36 +0200 Subject: [PATCH 13/28] add deer, beaver and porcupine npcs --- assets/common/npc_names.json | 16 +++ .../voxygen/voxel/npc/beaver/male/chest.vox | Bin 0 -> 3080 bytes .../voxygen/voxel/npc/beaver/male/foot_bl.vox | Bin 0 -> 1356 bytes .../voxygen/voxel/npc/beaver/male/foot_br.vox | Bin 0 -> 1356 bytes .../voxygen/voxel/npc/beaver/male/foot_fl.vox | Bin 0 -> 1216 bytes .../voxygen/voxel/npc/beaver/male/foot_fr.vox | Bin 0 -> 1216 bytes assets/voxygen/voxel/npc/beaver/male/head.vox | Bin 0 -> 1920 bytes assets/voxygen/voxel/npc/beaver/male/tail.vox | Bin 0 -> 1336 bytes .../voxygen/voxel/npc/deer/female/foot_bl.vox | Bin 0 -> 1284 bytes .../voxygen/voxel/npc/deer/female/foot_br.vox | Bin 0 -> 1284 bytes .../voxygen/voxel/npc/deer/female/foot_fl.vox | Bin 0 -> 1224 bytes .../voxygen/voxel/npc/deer/female/foot_fr.vox | Bin 0 -> 1224 bytes .../voxel/npc/deer/female/head_lower.vox | Bin 0 -> 1832 bytes .../voxel/npc/deer/female/head_upper.vox | Bin 0 -> 2084 bytes assets/voxygen/voxel/npc/deer/female/jaw.vox | Bin 0 -> 1120 bytes .../voxygen/voxel/npc/deer/female/leg_bl.vox | Bin 0 -> 1528 bytes .../voxygen/voxel/npc/deer/female/leg_br.vox | Bin 0 -> 1528 bytes .../voxygen/voxel/npc/deer/female/leg_fl.vox | Bin 0 -> 1444 bytes .../voxygen/voxel/npc/deer/female/leg_fr.vox | Bin 0 -> 1444 bytes assets/voxygen/voxel/npc/deer/female/tail.vox | Bin 0 -> 1232 bytes .../voxel/npc/deer/female/torso_back.vox | Bin 0 -> 2832 bytes .../voxel/npc/deer/female/torso_front.vox | Bin 0 -> 2840 bytes .../voxygen/voxel/npc/deer/male/foot_bl.vox | Bin 0 -> 1284 bytes .../voxygen/voxel/npc/deer/male/foot_br.vox | Bin 0 -> 1284 bytes .../voxygen/voxel/npc/deer/male/foot_fl.vox | Bin 0 -> 1224 bytes .../voxygen/voxel/npc/deer/male/foot_fr.vox | Bin 0 -> 1224 bytes .../voxel/npc/deer/male/head_lower.vox | Bin 0 -> 1832 bytes .../voxel/npc/deer/male/head_upper.vox | Bin 0 -> 2324 bytes assets/voxygen/voxel/npc/deer/male/jaw.vox | Bin 0 -> 1120 bytes assets/voxygen/voxel/npc/deer/male/leg_bl.vox | Bin 0 -> 1528 bytes assets/voxygen/voxel/npc/deer/male/leg_br.vox | Bin 0 -> 1528 bytes assets/voxygen/voxel/npc/deer/male/leg_fl.vox | Bin 0 -> 1444 bytes assets/voxygen/voxel/npc/deer/male/leg_fr.vox | Bin 0 -> 1444 bytes assets/voxygen/voxel/npc/deer/male/tail.vox | Bin 0 -> 1232 bytes .../voxel/npc/deer/male/torso_back.vox | Bin 0 -> 2832 bytes .../voxel/npc/deer/male/torso_front.vox | Bin 0 -> 2840 bytes .../voxel/npc/hirdrassil/male/foot_bl.vox | Bin 0 -> 1304 bytes .../voxel/npc/hirdrassil/male/foot_br.vox | Bin 0 -> 1304 bytes .../voxel/npc/hirdrassil/male/foot_fl.vox | Bin 0 -> 1428 bytes .../voxel/npc/hirdrassil/male/foot_fr.vox | Bin 0 -> 1428 bytes .../voxel/npc/hirdrassil/male/head_lower.vox | Bin 0 -> 2784 bytes .../voxel/npc/hirdrassil/male/head_upper.vox | Bin 0 -> 3780 bytes .../voxygen/voxel/npc/hirdrassil/male/jaw.vox | Bin 0 -> 1216 bytes .../voxel/npc/hirdrassil/male/leg_bl.vox | Bin 0 -> 1580 bytes .../voxel/npc/hirdrassil/male/leg_br.vox | Bin 0 -> 1580 bytes .../voxel/npc/hirdrassil/male/leg_fl.vox | Bin 0 -> 1564 bytes .../voxel/npc/hirdrassil/male/leg_fr.vox | Bin 0 -> 1548 bytes .../voxel/npc/hirdrassil/male/tail.vox | Bin 0 -> 1256 bytes .../voxel/npc/hirdrassil/male/torso_back.vox | Bin 0 -> 3256 bytes .../voxel/npc/hirdrassil/male/torso_front.vox | Bin 0 -> 3520 bytes .../voxel/npc/porcupine/male/chest.vox | Bin 0 -> 4572 bytes .../voxel/npc/porcupine/male/foot_bl.vox | Bin 0 -> 1384 bytes .../voxel/npc/porcupine/male/foot_br.vox | Bin 0 -> 1384 bytes .../voxel/npc/porcupine/male/foot_fl.vox | Bin 0 -> 1308 bytes .../voxel/npc/porcupine/male/foot_fr.vox | Bin 0 -> 1308 bytes .../voxygen/voxel/npc/porcupine/male/head.vox | Bin 0 -> 1552 bytes .../quadruped_medium_central_manifest.ron | 120 ++++++++++++++++ .../quadruped_medium_lateral_manifest.ron | 136 ++++++++++++++++++ .../quadruped_small_central_manifest.ron | 56 ++++++++ .../quadruped_small_lateral_manifest.ron | 72 ++++++++++ common/src/comp/body/quadruped_medium.rs | 43 +++--- common/src/comp/body/quadruped_small.rs | 10 +- voxygen/src/anim/src/quadruped_medium/mod.rs | 34 ++++- voxygen/src/anim/src/quadruped_small/mod.rs | 22 +++ 64 files changed, 488 insertions(+), 21 deletions(-) create mode 100644 assets/voxygen/voxel/npc/beaver/male/chest.vox create mode 100644 assets/voxygen/voxel/npc/beaver/male/foot_bl.vox create mode 100644 assets/voxygen/voxel/npc/beaver/male/foot_br.vox create mode 100644 assets/voxygen/voxel/npc/beaver/male/foot_fl.vox create mode 100644 assets/voxygen/voxel/npc/beaver/male/foot_fr.vox create mode 100644 assets/voxygen/voxel/npc/beaver/male/head.vox create mode 100644 assets/voxygen/voxel/npc/beaver/male/tail.vox create mode 100644 assets/voxygen/voxel/npc/deer/female/foot_bl.vox create mode 100644 assets/voxygen/voxel/npc/deer/female/foot_br.vox create mode 100644 assets/voxygen/voxel/npc/deer/female/foot_fl.vox create mode 100644 assets/voxygen/voxel/npc/deer/female/foot_fr.vox create mode 100644 assets/voxygen/voxel/npc/deer/female/head_lower.vox create mode 100644 assets/voxygen/voxel/npc/deer/female/head_upper.vox create mode 100644 assets/voxygen/voxel/npc/deer/female/jaw.vox create mode 100644 assets/voxygen/voxel/npc/deer/female/leg_bl.vox create mode 100644 assets/voxygen/voxel/npc/deer/female/leg_br.vox create mode 100644 assets/voxygen/voxel/npc/deer/female/leg_fl.vox create mode 100644 assets/voxygen/voxel/npc/deer/female/leg_fr.vox create mode 100644 assets/voxygen/voxel/npc/deer/female/tail.vox create mode 100644 assets/voxygen/voxel/npc/deer/female/torso_back.vox create mode 100644 assets/voxygen/voxel/npc/deer/female/torso_front.vox create mode 100644 assets/voxygen/voxel/npc/deer/male/foot_bl.vox create mode 100644 assets/voxygen/voxel/npc/deer/male/foot_br.vox create mode 100644 assets/voxygen/voxel/npc/deer/male/foot_fl.vox create mode 100644 assets/voxygen/voxel/npc/deer/male/foot_fr.vox create mode 100644 assets/voxygen/voxel/npc/deer/male/head_lower.vox create mode 100644 assets/voxygen/voxel/npc/deer/male/head_upper.vox create mode 100644 assets/voxygen/voxel/npc/deer/male/jaw.vox create mode 100644 assets/voxygen/voxel/npc/deer/male/leg_bl.vox create mode 100644 assets/voxygen/voxel/npc/deer/male/leg_br.vox create mode 100644 assets/voxygen/voxel/npc/deer/male/leg_fl.vox create mode 100644 assets/voxygen/voxel/npc/deer/male/leg_fr.vox create mode 100644 assets/voxygen/voxel/npc/deer/male/tail.vox create mode 100644 assets/voxygen/voxel/npc/deer/male/torso_back.vox create mode 100644 assets/voxygen/voxel/npc/deer/male/torso_front.vox create mode 100644 assets/voxygen/voxel/npc/hirdrassil/male/foot_bl.vox create mode 100644 assets/voxygen/voxel/npc/hirdrassil/male/foot_br.vox create mode 100644 assets/voxygen/voxel/npc/hirdrassil/male/foot_fl.vox create mode 100644 assets/voxygen/voxel/npc/hirdrassil/male/foot_fr.vox create mode 100644 assets/voxygen/voxel/npc/hirdrassil/male/head_lower.vox create mode 100644 assets/voxygen/voxel/npc/hirdrassil/male/head_upper.vox create mode 100644 assets/voxygen/voxel/npc/hirdrassil/male/jaw.vox create mode 100644 assets/voxygen/voxel/npc/hirdrassil/male/leg_bl.vox create mode 100644 assets/voxygen/voxel/npc/hirdrassil/male/leg_br.vox create mode 100644 assets/voxygen/voxel/npc/hirdrassil/male/leg_fl.vox create mode 100644 assets/voxygen/voxel/npc/hirdrassil/male/leg_fr.vox create mode 100644 assets/voxygen/voxel/npc/hirdrassil/male/tail.vox create mode 100644 assets/voxygen/voxel/npc/hirdrassil/male/torso_back.vox create mode 100644 assets/voxygen/voxel/npc/hirdrassil/male/torso_front.vox create mode 100644 assets/voxygen/voxel/npc/porcupine/male/chest.vox create mode 100644 assets/voxygen/voxel/npc/porcupine/male/foot_bl.vox create mode 100644 assets/voxygen/voxel/npc/porcupine/male/foot_br.vox create mode 100644 assets/voxygen/voxel/npc/porcupine/male/foot_fl.vox create mode 100644 assets/voxygen/voxel/npc/porcupine/male/foot_fr.vox create mode 100644 assets/voxygen/voxel/npc/porcupine/male/head.vox diff --git a/assets/common/npc_names.json b/assets/common/npc_names.json index d8d7b341f8..2484cb4486 100644 --- a/assets/common/npc_names.json +++ b/assets/common/npc_names.json @@ -286,6 +286,14 @@ "bonerattler": { "keyword": "bonerattler", "generic": "Bonerattler" + }, + "deer": { + "keyword": "deer", + "generic": "Deer" + }, + "hirdrassil": { + "keyword": "hirdrassil", + "generic": "Hirdrassil" } } }, @@ -485,6 +493,14 @@ "fungome": { "keyword": "fungome", "generic": "Fungome" + }, + "porcupine": { + "keyword": "porcupine", + "generic": "Porcupine" + }, + "beaver": { + "keyword": "beaver", + "generic": "Beaver" } } }, diff --git a/assets/voxygen/voxel/npc/beaver/male/chest.vox b/assets/voxygen/voxel/npc/beaver/male/chest.vox new file mode 100644 index 0000000000000000000000000000000000000000..66da082be17753987eddad4a482482e2bb2d4db4 GIT binary patch literal 3080 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 W`~CFy_cJ#)r%yt6@E`xmKaf9GDAG*; literal 0 HcmV?d00001 diff --git a/assets/voxygen/voxel/npc/beaver/male/foot_fr.vox b/assets/voxygen/voxel/npc/beaver/male/foot_fr.vox new file mode 100644 index 0000000000000000000000000000000000000000..2594d92c0f252ad8ee9a470a529f817583ae0558 GIT binary patch literal 1216 zcmeH_-Ahzq5XR>{=jcrlVdTf6Ws7N25NIly>layx)Jh+s>sM6krnT!P1}EBtFj>N^ zkT6#QlMt~ji0G!Ti-;}+=}IE-B8s|+=qd<;_%)~hB52@Y=ACC|&hwsm+k)+dQzCM( zq4|(HdEkf~X%025^$u#bLQ|5dXzvI$C)9hkNntE;jV-R_L1Rm-LCaWi%QA7xn79!u zW-Jpk#)CB|CPUA*a(3JpJ0?~}Of(kDj#*;IjM&=mDCcOMqxFt*>P2hB88lwM`osGh z8~%z?4Q~nriiL&UyP5F&>B-9CcU2YdD8n;thWo-?w2)xoX6O)>#D>-*pj=LmOY*CR zA0d1fDtFDZt>h$5ri)~@P_JWpz0&8fuNVA#((KidGIfw0++cd3oKSW)x7vl_7NMtH zX!8rz+t<*j+LE0<7}AD2=SU9+7#YdqOlub7-MK`%D`}nzP@E`1aF8WI<}D;yfE?d| zRA$f>6)r6IarCv$UlERJW%7xTSS+RLLkm1T$>YaCe$uD6Eru_`@lA-e)qlb zg9>;(0H0dnm0sw3H_X<-l`<}!7-jsxO`h$1$((#6l|r$sNGbYAl|^_{I}PVwFjlAe z^(owNifgBpZ@Nr08bxK{twDalM%Bl%;+U6kC@L!A^I2GLW{{ClYGaRZGR96Ryp%{tbIR1icDoXP3ZCFQVr%N#CQdj3vTI!PL)4kX|L?RI;Cnrg# z)6CA!GBGiM>$-%)VSIVH`1LL1=jRhD?_;dy1L5B%F5r~nwlCy Wp%DH3{VXgj=#$VL{KvoY59AMB2hvUe literal 0 HcmV?d00001 diff --git a/assets/voxygen/voxel/npc/beaver/male/head.vox b/assets/voxygen/voxel/npc/beaver/male/head.vox new file mode 100644 index 0000000000000000000000000000000000000000..7d77f512814390f402a01afd1161227ca47a12f8 GIT binary patch literal 1920 zcmeHG?@Qff6hF^%&hx!N5yO$2qGcD;q*$O$+0waDfAz|JT*cc*9f*5<#uNN`)Vjz1Z5%?mCdK1yBAPC~q=kdP?`of2E?s?8R&*yy3 zb59HmH7$wA(L;SN(#W}j$g#fCkq6=re)ka!NkR+_m-@Pu4!?VZN+_EM5y}jgE%6KH zB~#kOEO&$^`j!#urL2kN=4hQ{MqkyJ6VXh)%S4#(T{$6wXxWR)R9(41--+jWw3<1! zg}{2{xozj@p5Rpd*3F}OCkB`37tgsDZ&yXiR&{~$z7iYYm zaoU7jg}uc^p5)>jYdEHGwD9z^gi^^tC0t5jGPMIrv>JiV}I6q<|yIFUmWidjL1oIxEec@vI13FPP4-^H1o z@+_oAU3|=ome6g^+}So)Uk-7OSgRpbBOmqbuZ+{@&b)FCYUIgJV-9t&z!|8IM2*z( zzQ~Vnjd35fjrws8jj+foY8EmhXCtS;x}eN4PklL4@Tmp*fjbQB8K_^NUV*&=_2do$ zcj0(PLJmUR3WSTgk*5W63w(DboFVRAs0l6KgEz;!_**4S7PpW7bZAu z3-GI8<8#6F>w+scc<&E_Kd~3MeHQq65crM*{V@ux^aAg-wVQtYChA9(kT)e0&`Bb-PjITWDx# zK&fK_mqy;k@|gvEabXo(AK$~)))qE5H@9oMySq^;l`u6mg|)RcJ_+vNfBaW8kbeOu C03~Mt literal 0 HcmV?d00001 diff --git a/assets/voxygen/voxel/npc/beaver/male/tail.vox b/assets/voxygen/voxel/npc/beaver/male/tail.vox new file mode 100644 index 0000000000000000000000000000000000000000..78f17bb4e76bad09b47cd07a2de6c09df641f4d4 GIT binary patch literal 1336 zcmeH_-%FHf6vxl|W5#TkC6p{hTX%4Er6AB!YBeirH<5OvGIUIfYMiX5X~W=+Tp`+e zUCMTmaGhAN2$32VmguJ1E+V=Jq$`QQizw0;fwB`RQr3`XtW5o*vq-aPR?7v%Q?lad{@4k z^CP>+4PD_ca%7!RPdL&}k)3yoY}6Beq~jKP!imcl+BCEx3uCe|S&PXECuZk;;Yxc# zO@)qcqpqyyD<>V3HcxR+^Mohudx}RfS20)nx{5{GQQpz|A}91jOmP#Aqk3kcD|~4; zuDsas8{)t(oS#x&!#}0E>69QDyc%w8#_Zq5 z_3OsP8`}4o@t(Et@G!jWgalh9wNtgIx}IKa8y(@Y+^#6PE|ng8<% i^Yin}&CM;WZE0yCl}a%l!)Sz}9(&*F@n$VOH>ypeQ>#D9}d{IZh6yc5VR%bEUggPOY-~o=k zYkC25EpH9r7GU7oaGSH17rM}eE_9)rnwhD^cPlir)1$+FJs1rYMG<}zm;2k{>GmoN zwpPRX%2K#K*qQ3*V$X;2?Io1MO z-{AVCn{=ubMDW6&|J?ul=iYN5_xxnI@hWN1D~}<4gwk0#?k_eQmIFvi!EiJ#-{EHM zHXn;}YoH*Lxm>WpW&yFw45*3C&0dq-i0dNa2aBa9vF3E*1bfF7f=w@+YmT+$jlH&B}us0cuCaS9PzlqEJZU1z8 z<@;N!etl)hUmxsD^>eY8`}*z0*MntG%aeTleBeD6`@i>QyPIoY{t@1iJ^|=p?_>Y~ literal 0 HcmV?d00001 diff --git a/assets/voxygen/voxel/npc/deer/female/foot_fl.vox b/assets/voxygen/voxel/npc/deer/female/foot_fl.vox new file mode 100644 index 0000000000000000000000000000000000000000..fee0c3e1509e26df78bcc21831bf855bde080bcd GIT binary patch literal 1224 zcmeH`&k8|N5XNWjUv+J;AS>>*AUg{SWkICd4MhnHD{PdFk_WJ}Lp;HK1MfG!V<#(r zO3Ku)(>LdvX{OE@bcdM}5w&Z62M1jYqP{p9F6@gP8Auzta${OG#5^n zSoin_BhScl11_Mutk7tMhAU>mJs=Z#6Llu)OlS+*g0`R)27Ctk80Zh!M$U%ME;8t~ z>NUc=DuN)8Z!#_CWxt$BGnbTfA|~@n;bERh$&>JWl&~EajC{Kf4+{x*qX+LhyKFb> fkM?_KmS<}n$NAaWpWXHEf9=m!v#Gl`qW=FCMZN4K literal 0 HcmV?d00001 diff --git a/assets/voxygen/voxel/npc/deer/female/foot_fr.vox b/assets/voxygen/voxel/npc/deer/female/foot_fr.vox new file mode 100644 index 0000000000000000000000000000000000000000..b701aef274ba081b05db2c503fcee804c6eb7f1c GIT binary patch literal 1224 zcmWIZk5HJ#z`)?^=;;Tf7`Cu5Fa&!>x$=NGK)?jV%s|Wm#1WBEo-IHc1QdXnk&#K6 z0f-qHn3RAjftXo|5ri2Tf#N{Szyjp6C^0ZHD>H&H6GJi3z+y&52B16;Gq3{XS%LDb zKzUXmpAE=o1M=B`d=O>gDF<9aH~H)k@=4f~_X1Dvk-iorzN2Lk zvq$v63Nm6Uuqt$d8Umd_C#J+Nu;Pv+FJm1bNT?(?ho;cf9H3B7sL)hHbDT?)OZ28L ziTXIl7P>iVN>QuO)+9*$8a`)HS_{gF^_+zbtb2BYD0+>gkDLSn&e}k&t<|`93;u{z zqp!w{8}&5$ZL_ggQD_u>udtj4=fUi;$(}e1@ThK(PK*=d#NcNe^BenUv|1Ow98DE> zk&EwM+=o9P#z#&PZ}e&CS4J4-o3Sadi!eGyLn}~cIm?M`rhpm^}M)qW7&NBvTPn*T&Q|`zWMxS u*?c@Y5qp+iKD>YTNA=E9%V~3Wc6R>R+E3f-|M=hg&ED@h#NvhQv{XSu|{KrlGrkmEQ71-ZMxNKFJo@d3=tRP+h< zy?hIkh4ELL$wlW0A~^7)s;g_NtNz=w&z~IM`kGQY+B>Orr zd~$m5U2u4QfQWR})J@aqYNLU>b&nXfx^{)CX;5;_Y*dgUgPRRitv9u$SM3H(^5CAg z44T+rS-Lk_8&u1zy?bR1wdB#Ij8*bzQ4ea7v4ua=9Rp?0YgrlywZ(K-BS$mnZdIjM z&Q={Y{F!Wf$=wQP;mal`lS5yEZMyd8BfvM}3ZlG|Bc8S#M9XNVqa~wu87$t#R^koB z3OYni=}Il-%xav^x(1G}rh_FkAp3*`TE^zcvGp8g$%q4f<=jQ~VTK;E!F$0b>L_~|E94dG3pG-% z%Mxp9XDHMuoFS0Ia#o_A5YOa!W>&OSYHH{ZvzYA)m@zjzee`fI>E=^UhlhvL-{j@J z+ta7FucrN->(k9^SEkqZ@0{u9#og^`_3g{FI=VX1^=5zd`OUQYcycE9BC~vW|L%|0 gyGSqReRr`~{Ik8Ech>*;zxT~P=r?}3Bk>RL6BLRsi~s-t literal 0 HcmV?d00001 diff --git a/assets/voxygen/voxel/npc/deer/female/jaw.vox b/assets/voxygen/voxel/npc/deer/female/jaw.vox new file mode 100644 index 0000000000000000000000000000000000000000..651de8ffff6e32a74a28be51637bc7d56e9c6f4e GIT binary patch literal 1120 zcmWIZk5HJ#z`)?^=;;Tf7<^b57=k^cTzNnoAYcMwW*}w+;)uv7PZ=N$0&GCc$i$!x zRG`hs2&6%n0mug8Aa^H62B0}0;O*`Ge;{#+na2M~d8z+hRmA^G2@C#Dv(m(HPn?nR z|E1HX{9o!T^dIPCu>8`=+5eYzM`Ea@#4jxsWmGkf61R}5mz$e=$hw_WzmBRWFVEU4 LN}!|>Q2qx1l`-aG literal 0 HcmV?d00001 diff --git a/assets/voxygen/voxel/npc/deer/female/leg_bl.vox b/assets/voxygen/voxel/npc/deer/female/leg_bl.vox new file mode 100644 index 0000000000000000000000000000000000000000..a95ad02c420d31fdaa7515c85e1080dd38fe6129 GIT binary patch literal 1528 zcmeH`ziJji6vgkoXJ%ITY}7)ra; zstsRO&@+0*yJNB81y7!Gwc$+}?-`!lY~*P1U@bDdTEa6LSaW7ZEj$}NJaM9U7CM4G zu@eI+!JV1`DdCA)sTxsZ9uFSWk?=6ij~W>Mg7Y>LB0`YMB?=0Xq_9eC6idki*x4l^d4l@} zK9cV-`As@W6(fk?z_;hm%sKOYGrRl#&Hj@M5!u^WyvE4SB=T-?xVzQ^MgUTB59}Wt zE`BHu<8yy#-cZ+3VkqJuauv^$gyW}4%&G#3C>l1Zc{Sib)r%=U5E~{HV)02-tLOky zWoIxHH60Czyw@Zy&dx-{A9Mb8M^2^S0VsZ&1FTU!8qw ttM3Ol*4{#nH`rrFzUzA6`yd(YBeFX?x`XvAW literal 0 HcmV?d00001 diff --git a/assets/voxygen/voxel/npc/deer/female/leg_fl.vox b/assets/voxygen/voxel/npc/deer/female/leg_fl.vox new file mode 100644 index 0000000000000000000000000000000000000000..0097c220ea68deceabc1bab5c9e2762149472879 GIT binary patch literal 1444 zcmeH{KT88a5XIlj?wv(!)IzcHhzELh78Zg<#2_K4prFx0EYwD@6hDBSji~4+$md*t zn@+4^1Q9%V%$s@hZ)DDOjW~H`_?~A`FXjVI$o_E4yTBa|1U&Zz9vth; zaq4`>%-7_^;BLg=Tt;J_b=xr@H~LuHfedc8<{1*Y(1k8^p~Fq+AQ*RG&Ef8LM{#u3 z>i7HUH*vYKlAdp`Qg?YiEzZrP>&?|K`<$=0)A0Q@4fkdfTaWbN%S{?So_@)lqPAExWY_lY2mBn*h?S#xjE!Y(C4SZeJm(j+fCqHop{NvMEtT-HmXojCJ60Bo z#uOU`@)en1R31WQ= z$Eow4nRnfZ!MOx#(6HuNx1IraqmL~LxWUc3%8<~7E_9&_9d1Gg!MFo!4tBOS74uC? zgTWyECeGKE)8q9;+FqJX^D|TFa(!iNpVQUF)V@Bac6U0l^1I$XU8VMZG?x3Fv)tX@ h{Aj=L?DE;#PN(x{cmM2J|MS20W;d$25C2Gh|8G~u_0s?V literal 0 HcmV?d00001 diff --git a/assets/voxygen/voxel/npc/deer/female/tail.vox b/assets/voxygen/voxel/npc/deer/female/tail.vox new file mode 100644 index 0000000000000000000000000000000000000000..9084e326dcf37fba25164547ed9a972dd56934fe GIT binary patch literal 1232 zcmeH`v1$TA6h+^CGqKq;Ns5S7vT-3{yA&w|3k8v7F#!cpi&ROPKuYlg>`bMiU$B3X ze|x#Romg!QNFW1;JCC_Db05qMpGH?35$Uy(M~ZxTkwG%)oaO}wOL3$^M&n8HNzF${ zR9pk%+0iDSV3>FMlSma|_1qIpNz(`F5L-7L4%vAIWz8mm5 zyd>fH^vPtSbp;VT@KW8?RW()BZ`b+k<414&A|em(-F$?QKVA^|^ybO^7w3lG0#HeV zM~|P}{9Y{h{iY(d$dQX|vB>GbSSz{+9T~dY62q4`D)f*=cTL^P_3+dq5*wtIj#y&P zX$KVK>PM|UV)b1Y9X@SJkE|IJe_{nPCtQa$HXxcad<=h`()lJx&brA9+g$nfs=I^6 z-;l*wHgz<009|KH*=j|PiW38)Dn{488l=01wv(`AA?{vwiLcb*SB)&y$NxnG@ zonCdZ$FyH#7}Bs&YV)soVk$gXS9*W#{bzC~Ya$YSJ69HcKsEk@66B&Zn^U4@LE zd+ZhT;%6<6zhmpv?f5%)@28@ZlHHa3kVfy+WSG&@Ydz#aPlbG({EQwb(v3Rdic+r{ zJ+s)<<8+PF9KHk`GkRn>ToYXmRX;-POtH<)b_#6PhCmT&@H z1vw|VX>3N$DY}{ZNW4zhWeWN#* zE$LNQo~qA=t_Xzsd#GZ6FMkxrkS`wiYo!Haax;Dv*r z|H+w9XThDcI0F>=4jV!blb#1$68a{SCq=Cws3VaDw5b(%Q){C~77%hadgsYI0|^Q) zwa$4n`QpqTxCp$tN1#C1cQNBY7IO|bYb$sLI^kd94<{1D+ivX2bX^nU%dDB<;QQnyxf25)ywOzyma~M?mJKA^ZC1PUT%N=`EvX4 zSvNg_YU}mf{82*{SFioICJR zyr0i!ZEPe}j35Cwyv*9)%$hax&d=wM9^d&@L>}C`eu$8`5c%x->HSytAATqB%3t#F zlc(2z)cz{+yNa~us>s=(Ql~~O18%nJ@y>eijt#WwfH0j|W93T^z_H+>O$}y3)KVc<G;|JP>y>N9w=uDUg5S-hHlit+8Utky5fka=Ru@UuEPQHm<;xDmFeDU4X z;TK;ZIk)+g!mjXF*cJXjYQm#j3VJoCc0xW*ozQ~{`i5@`H$r_4J2z)O0B^f9s}Ao# zIQNdneW>%cp(kGh%31aqo*d+^DR9LnP|gBMf*xQGARTEy_y4m$c(le}4=wtS+6A>s zc#J()t)oCUJc9($I~TYG%9+J9lHN=>4Y-PeCtyGeeZg1L-@t+GGd1*G$AlvwpqV2@ zC%l);K*D_#cY=Ku_yPi&x`-(AugidQ4pH_4ymD^73G<}v15kQ_P+SM8RUG@}vvAI|DNN)~H z*m=I1J}Gi3c6#Bj*?+~mMIJ?dO%4q&*>Y*XPxJ`*^plV8F^}ip&CSj6U*gLT-#dQ# z_N(LmyKf$Ezwz4f^+)eN6VDePymQ?C_RDem;Pr!`&-&Y+zd3GyeDaL#i{$dd_uu`i h{$3=O=e>Jzaq-f|{=B*VZ~xC`_U?G=Z#}XXz@O*QH!uJI literal 0 HcmV?d00001 diff --git a/assets/voxygen/voxel/npc/deer/male/foot_bl.vox b/assets/voxygen/voxel/npc/deer/male/foot_bl.vox new file mode 100644 index 0000000000000000000000000000000000000000..e29921e7d93ea462781abc90e7c9113bdd66a351 GIT binary patch literal 1284 zcmeH`PfEjJ5XEP{{H<{#x)4FC$x5WUa9yF2QbI5V3#IJ=1TUaHfGfeBC?24DkKmEK z!T3uSZn~-!MDT;ho4k4NV+Qh#hm(V65xMLY6(k?N$f%h0H|r0M14xp9$#hn{!}U1@ zszD|-#7k9Orm(=G9<@tJqf@J*DVpZQIwW&d>1b02`219XsE^mjTlWI8A$3SD!~--U z7v-Wc9OvRTG6mwnKpcJ-p+#^E$Mj$zUJGua!{BOg(Q6iCpt3COH!(g*?QT?Bx4mO~ z+gny0x0mLrj`nTw@?_WNXU51)|Lyh077x=U?>f8O&u@S9zIA3KpPhZxUH|>x Sd$ZlcU3;7lzy1^6l6(T-Fz)LB literal 0 HcmV?d00001 diff --git a/assets/voxygen/voxel/npc/deer/male/foot_br.vox b/assets/voxygen/voxel/npc/deer/male/foot_br.vox new file mode 100644 index 0000000000000000000000000000000000000000..4273ee824b7177df7ab0bfcc039c749c58b6e355 GIT binary patch literal 1284 zcmeH`O-chn5Jszde&e_iU5FsjnUzR%;W|PjAq;~PFc6X)K=1;Z1Gp00iQ)mW_Xr-z z8umtDLL(`NJ~*sX>kH^gfGnb3bi5L5U<~hsEvtZ>S8>g z33W+VHATT~6bcfc9*5s0g@C#gP06F6K?7}&N8ze}(OC>e6IE5&Z!$W`?QU3EySZa~ z+gny2H<$XUkM?c;@?_WNXGY75{kPW}n?FpJyz9(zKfC?W^VaEQ)!Hn}{%r57&ie2F S-koh9?%LyQ@b#Z?m*f-VgzoGB literal 0 HcmV?d00001 diff --git a/assets/voxygen/voxel/npc/deer/male/foot_fl.vox b/assets/voxygen/voxel/npc/deer/male/foot_fl.vox new file mode 100644 index 0000000000000000000000000000000000000000..7bcec569b10d8877e8e3007730b5b04724f0e417 GIT binary patch literal 1224 zcmeH`&k6xi6voe)ziMp6LP{7bDI4oiM4Bd}DB%H=wZa3;O4*4#fW3wHJHBgSGpj*K zIrZ!Io%@~BId$)3I4vKEXwddU9CR~?#{RsQRsx{`9i+f?Huoc(D$0Oas}f++TsU1~ zy~+<5c}AYQZ~@(Ag+?nhTrm^w0h!2~s54P#LR-)lv<0m&;4{$2K!3nCayEQ+ox!Nz zX%psE5d?vJlS#vs%{UORl#@a>BVoN1n#P6( literal 0 HcmV?d00001 diff --git a/assets/voxygen/voxel/npc/deer/male/foot_fr.vox b/assets/voxygen/voxel/npc/deer/male/foot_fr.vox new file mode 100644 index 0000000000000000000000000000000000000000..513cc46181896ac47d4c27beb011c431eaaeab69 GIT binary patch literal 1224 zcmeH`!3qIU6o${4xih22Ml7U+nU$1{HASRpGKvx&Kv^q1fR(Znc>sG0?|1yy!p4eG zQciu{{`;SM=D#&})E^fQMAT~r5f-{CqG2%YB(*>pzyt{}o=k%cR$WEFZ1@D23=f^a z^jO1;eLxCYdBmpA8iN)XxL_vufGqeHd<(t>ZA078Hnc{ePhmc{@ipL7Si=tX9e>bm zH3@ljg<&Y)WK{KJH4LR*$Ve`olBiO6$`h6Iaz5^5)~E?0-~G#JF6Zs!sW;ADHtXd_ h=f%nL>RH!ye>VH8cm4Oj_h##*tnAkP$A6;V{|yrP>#P6( literal 0 HcmV?d00001 diff --git a/assets/voxygen/voxel/npc/deer/male/head_lower.vox b/assets/voxygen/voxel/npc/deer/male/head_lower.vox new file mode 100644 index 0000000000000000000000000000000000000000..4417cd02cd4ca68d57a41595cb850c1ca69ac991 GIT binary patch literal 1832 zcmeH{L24C25Qe+zuj&z=8!-zJB=*289Knt22oZuj9wuNQBsqZK1vCe6CAbsC17z>g z19^|}>$h-|Rg55l10Pl0UG;ZW(eIrcoj&|rN_n}zKE#xrp_JqG`N8eJ;H$t^xdo?Z z=j$Ji!}lE&(M+Ye$}DVPEo1hqlclBrPj7;Vm^?}oBz}?21}>X~4OvUDu;yW-An*;X z;y#;ubF3iTr-YJ;j#Go96fN#6sObLZTdJvP`AXAb7s3WO13#27L7QTzP*J{mR0#FwF| z+c6F2kIV1@8CyYg9{wr2i_R_!7RXIK$}^mlgoQC_P~e>NM=|d>AS$I z7ti-gY@d7CY&Of^N$M$V7dJAX?gwZ=|a`p^KW0@ yESDe7uEgG?m-iQM|ES(gYPoLiYPI@jYrk%<|Koq}H@nyFEgvtAe!Y|a5AYN3<_I(Z literal 0 HcmV?d00001 diff --git a/assets/voxygen/voxel/npc/deer/male/head_upper.vox b/assets/voxygen/voxel/npc/deer/male/head_upper.vox new file mode 100644 index 0000000000000000000000000000000000000000..5056973f7974928719a426e81b236e4c200c05cd GIT binary patch literal 2324 zcmeH}&59jG6vwOTd{uYfiHa^nkl3TWurFg@$T~s2k-u+eo^2rr8gYhkN`s4O0~gxlQR_CDxr z(5)`s>$yQUTTEp3QEm((Dtn)OU=N{nb!%%_T`luLsH{ELlYV5NocYl9210HLz0i#D z3VIQ)^h#~lRdYSbhpu%tr50;B#Z+SG%dn%~c=nO7Hv9_WJR|8Z=MLg+wb0d?k-IIH z&te0A2Z@Fb8PjGZmr^r=`s^d==o-3MLlfd$Dmu2=@k{EJXQzF}r_OnX*60~ov&*7j zUDqD6Mx@@tjE#4|8Eb)#9^E;2bjBJe2sqk@WbZaB2)NKQKE;aCyK)ZQbP1z>V`kP0 z0JF4WnBL!?Fj5avev300&wvA9_cNn4Av`vYOhXRvg6Wih6ZH-z3 zbZW?{7Blc3o7~z4XmUm$XNR#&hk9bSjb*nDoihl4;h`hc&#`0QT! z^SABl>gxD!^6-=M<983Pj(2arbA0dZw~p8Q+b{KV{qg(9=RZF?e*Nj4BfrR}^Iw1Y z=J@=F$1lac&Mea)`{{bzfB)mi_K|9ju;-TB?)k5BLabx-o&&F{9# BNr(Ud literal 0 HcmV?d00001 diff --git a/assets/voxygen/voxel/npc/deer/male/jaw.vox b/assets/voxygen/voxel/npc/deer/male/jaw.vox new file mode 100644 index 0000000000000000000000000000000000000000..973db280c9c3dde7d858a6fe600bb0b21cb4f4bb GIT binary patch literal 1120 zcmWIZk5HJ#z`)?^=;;Tf7<^b57=k^cTzNnoAYcMwW*}w+;)uv7PZ=N$0&GCc$i$!x zRG`hs2&6%n0mug8Aa^H62B0}0;O*`Ge;{#~p3?vFVDJC7@*@AGga!ZmY0G1{$4^uC z|I+DG{-@a){|7o5EWcr9=KrN#kr-+z@k>iZ8CA`r#4V)i<>uxdvTi5UucPY8%d@tM O690QE{Nd>Yl>Y&9&E@I< literal 0 HcmV?d00001 diff --git a/assets/voxygen/voxel/npc/deer/male/leg_bl.vox b/assets/voxygen/voxel/npc/deer/male/leg_bl.vox new file mode 100644 index 0000000000000000000000000000000000000000..5dcc8af3570f234d689cd0555a817383ca978493 GIT binary patch literal 1528 zcmeH`!D>`N5Jju%cE1-GH=+v>BNogd`sj5L|0Mz?I-m6h9z) z7k-le(K(%ko2+645p1}0Rdv^W_jbQN+CSd;VrH-RRvRY!navJYr!VjHgpmLx+XBZY zr>h@Mz<3MfnumO$G!_Y@p-RJ~B;q_Nq6Sb(B~mORR2>)yS8*o>ig5}fH%)S{@)6`J z>ljOfFB~X_A{*!>2Z~%HjWskb9Rxfc5RKM^ESN{o%UpZr^VY@7-;iC)?NbY#u*q7hgZOv**tmlCRdke|ys| vKAv3LdmAqw&fon}zT0TIY42<{`)9S^)a(EKzxQT$%Y*jmeE-*f!dtRS!%6wq literal 0 HcmV?d00001 diff --git a/assets/voxygen/voxel/npc/deer/male/leg_br.vox b/assets/voxygen/voxel/npc/deer/male/leg_br.vox new file mode 100644 index 0000000000000000000000000000000000000000..e1496046e52cda1a4df03a81d5cc4f3b71d1f09c GIT binary patch literal 1528 zcmeH{&1w`u6ov0!RR_k6=t2ZZYKC4|4sKjWh!DasIDrI0k_QL~t~C$fN^mEJJV5qY zD(t;LE#ekYOr#qsu&o^S=ABx~UC z=y-9Z1YDo{O?|4aGl`*ygUD4pj}lItMlq`jB%)~8OwFqS2dZ97iGkQKs*sD1qFO}< zkSb3GLs8S20kK>}GQH$LELDx6staohOP|jA}Ad^jYMh&WKKTV$1Yo zG!ZLx&BZm(RWf>dO?bAA-o4<-A{Fo6Jk8Y;JgIt*(PGA&C3t;QO=w_F>FK%SS*YR3 zyDxKe7;9{*9T9Lxbs!#iBKIiHD7_yKX5 zb#Ldx*3E%(bj#(kJthv`PTSZ0W!qeT-d;X?+E#DYZ|PaRe$_6{ezueM?;4VC<}c4b xwTtgZx7Oar%eT`n56X8REqCpmOeX)V_Pcuhzy9yO+0F8z{W#tI^Pcoy_ciaz`Lh53 literal 0 HcmV?d00001 diff --git a/assets/voxygen/voxel/npc/deer/male/leg_fl.vox b/assets/voxygen/voxel/npc/deer/male/leg_fl.vox new file mode 100644 index 0000000000000000000000000000000000000000..3c6e78dac0e7a24f95584a8bdf2e06e12a2075aa GIT binary patch literal 1444 zcmeH{y-EX75QWdoy}K5%5iLZJxXKo8z{XlZiAV@WP>4U3mEa3#9>7WvEJX1E())(j z@20S^iV;L`;V@_B%-_B2?(q10?M2ejUT=WWQz4!9E)V9j!xI1@&4Kfa%ifhic+P-% zS`Z@eo-le%FyMJy0S8lwP8J5v7-?u&kW!5Eb7I4zzNwOZh05D!-0V3zQBWH zojFdOcg?&bCkA&T2In#w^Q>FffZXU~8xCY}vyNv-=t38|(1i{+p@U%Dfi)+G`+JI$ zt5(0?Prr%b)_S@-?WdjgQd(JDNP|xM%RYn6)ii#6PS?BJiLEF4``b+#KU{pto#ia| mquU?tH_I;5*0x%$KfC+1XZ_Fr-Z#5bEvLuP@#lMz{{SCr`t@f3 literal 0 HcmV?d00001 diff --git a/assets/voxygen/voxel/npc/deer/male/leg_fr.vox b/assets/voxygen/voxel/npc/deer/male/leg_fr.vox new file mode 100644 index 0000000000000000000000000000000000000000..20346f8f185e5766028785778ccfbacdd2b154c3 GIT binary patch literal 1444 zcmeH`y-EW?6ot>dGrJbC5iLZJxXKo8z{Wa4M3E3oz(6#qtOQ>`eE=&#un@%uu=fqe zZ!B!A`~eYMINWpZxqmb4OhzYb50Vah{UJtog*5KZ_UE(17XTs6fs^U1e`*lEV_;s^ z?qwqbv8XK;4cWE5`2j!2Gh*dv9%EyfTZy0b0MGeFE#Lticql4`SW6|mtmWh@_l}i? zqA|rrfqX^g7nO%l8M=F4HE3A#tlOReccYJO2)Mz`I?9mHg)VfV3mtAk2f?@lYmN?fdy4s{ zrNLm3eiM_e^>jHNq;7jDtt>92VW<6JpW)_edVai5XFJ=8mEZK2r}OlDGyRbJowHnD mUHoXj@9gr~+E%OeXLtYXS^x9D_GY`)a=N`5z5gfq{l5Y>V)a`9 literal 0 HcmV?d00001 diff --git a/assets/voxygen/voxel/npc/deer/male/tail.vox b/assets/voxygen/voxel/npc/deer/male/tail.vox new file mode 100644 index 0000000000000000000000000000000000000000..c976305e6d194df978cc402323fbbc578045d5c1 GIT binary patch literal 1232 zcmeH`y=nqM6ov1(GqG8lkQ6}>bzqCIkjC18f`nzs3JRh=Kp-!W_yDPbc9M_>u+Ibd zZr8J0q_Oe`g5bc%naiA+ITvQegGuvCM4r28PLYil8Ktv+wJ11PiX#;=naVhhLL~%tQ5uQ%~;eEn8 z2zB_>>y|;8Da$hZPsR_y-ba~r8n;%vxwbrM?BvPs>$d)0*~??w7`a^k{du+Z=XA$= oOfMhvx09ZCOqPB3Mp1OO+4t@B;y>)qc3O9~oDcrq3ICF80q||>#{d8T literal 0 HcmV?d00001 diff --git a/assets/voxygen/voxel/npc/deer/male/torso_back.vox b/assets/voxygen/voxel/npc/deer/male/torso_back.vox new file mode 100644 index 0000000000000000000000000000000000000000..0935852b8d005d0921e4bcb1c2c0827b4a4aa9fc GIT binary patch literal 2832 zcmeH|PpVx-5XS3&o#S&NIuJo(A2I(A%e)`;R_fDNfscu0nGv&3C=`u0hx>I za7n`T*LUC~qZmO1FML#Ybyc0J>aXiQe)!~rpG4$~2RC;J`Qr_dM>o$tdvk91EdZ4? zc=Ghw&F{s6-)|~XiyXPg7K@x57;8lrp(8_gTVnVUM};1;=&q@IxgMT+L}G)q(h*DS zIqiUgT>YrkN36c5(;K;!mtV=7j68#s)-lhL7Q|Q##)S$yqmfVVf)8UUhfS z_#3h~%chQ|4xsCdDO;`RSM)1-V61f&YLiV|jxxR(a;h~B=Q~|8s?aY@n@v7=|=#l-hhP^hMtIs&1v|L{Cn9TZvWVQRD&AbQfwhbe*zSl2dY?oC95r z*hWmFhqf0r*X$#)gIJ;TgmtYsI%L;1=xcFTGvA`GHDodJB@WUTqZXs*HWJi~iLOFM z&pq}EdhzR89Dm2wsoU{)?%uBzos{gZaWaQ50mqCUSq|4kmqXQ$5Id#V=4QJENcv%ZSdddXKCuZswjjpkEKi|E z@2L&6+M!O()8FA?I6TSg?1X3BY3FW8MOVe06@3Lh!MC++Xv`S!5S>r!`sCbi@Ky?5q;m!@ z90dJO&V)J(?xe*jK%wujA@nfmdB7#1Z!&pO)Cz(+5?Mf-T7fsUHhN?MA!nm^p1d=V zpx{#LoHvs%&g_AUz?*vn3WR+ZGY(`i=YX@ef@h!;{w4l!B0)^P0-*=OHw4ah@YdjR z!pjKaBdsQXa}zkz@UEP5WB_L^&RfLKnavHS3cEyxabEBSB)l!+7;%bsl!`yn#ZO&! zElod>21f&(kf)G)H-3#j2;l4usn|C&zxhun-f_?W0Ool!%j+_iS@Zri=6q&;fp%t^ z3-$89ft}zh%x=Lh;jfZ^8ME1#dA$8#rWi9>nS(a}Ym!*Z7Zc|#`R2mCgL2-=d=m!G zCzSgHUw;1S1Ln@}HOgcdT literal 0 HcmV?d00001 diff --git a/assets/voxygen/voxel/npc/deer/male/torso_front.vox b/assets/voxygen/voxel/npc/deer/male/torso_front.vox new file mode 100644 index 0000000000000000000000000000000000000000..dffa7c4d23fab795b2989946ed839bdff4d19c00 GIT binary patch literal 2840 zcmeH{&5E5x5Qgi&j*J`8g$NRRpcnQ8H?AW@5E%w1U?3#90Kps3T!1UVohV*F_Aa~> z@8|RBgSg2mi4X)2yi}jBs;jHs`g!!=@khUi$XEBTZxIp~A`h>he)0DH!|w#%`ddDJ z^7Q)8+FwQfP?7dr6*(JJ>eQ%Zz|B^jeB{Yz00##25xm$V|26QGBamwqvXj$WY!wr(So> zYd8pCYD0mbYq1f^9j$3d1tm69xGyywnAA}Ii}Q}#Z0?roO6&so_K`V*cudIEWLCsd z&Vs(-tRvttMq9!q`2z)dG(MWR_FIO3%cV#`8afBD^-7(TZ%94I z4QJ?5;6cy<6Ye6L_=B3dH}CbT-uzKF>rvQ51@Xo*pcUj1tFiHHa;5%oozW8qH z@QW{yoZEa#VORJo>J(37tLoeSIo<;-FlNpB{c23$qK6EL8KzTm6rZ{Wc8nHu`8W5N*-(9Dsd z6W&W^AmKiWJHb8+d;tMXT||`m*JZ#thba32UO6}4gn3f-fvLg=dXW70LNen`uZZEp zhzB_5Fzid|cVfV<_s-aFG3QE88q$%mCHvR*4o;<4;3(OB)K!56Z-M|#zXh|N)UeoX zNe@P_FQecLp6QSDnn``r_YA_-&XHIW|3U7_t_t=~;;)D^9c;;bB{j=pXD8?V4l|L7 z&x)D!WG3H|x7fw$%{TnPb8a3K+r3-a@5LT!c2qOxbq4cC?dpvEE_;f-*xW06q&J5p z>^xshpA@+iJH7DN?7!mOB99`!CWnTXY`HYxCwc^Y{pIKPnaA_*=H}*jlX&#WUXS21G_ zVzAPP4J^#i@H9NcQJtm*j$qNJ0$3pju(H7DS2oxNJ77ncpaH^M!W=>kA+Mn|w1(D3 zTQ0HXZd5B}b1-i6eP1StR&`aneoczYIhmWCkzl0|+b8fUGC1wa=KY;uWs~prc4T*O z9IGAYmV=}HKb<$uE~EA)lgWR(`>3~0s-7P9gnF%Ce`h&=llP~OAN%v&ycD(zl5J)s y<7HxXrG81mK`4#GhSdA@SpHF7zj-Iu7ZMJyB)l0KznEJRFIY42?ek^yFVPqHE)x#` literal 0 HcmV?d00001 diff --git a/assets/voxygen/voxel/npc/hirdrassil/male/foot_br.vox b/assets/voxygen/voxel/npc/hirdrassil/male/foot_br.vox new file mode 100644 index 0000000000000000000000000000000000000000..53f2b47fa0585c1e5ef297d4766464baee6081b2 GIT binary patch literal 1304 zcmdT@ze~el5WVldBo*o+ZcfrJg$!CL4lSj&7)pta#Y(9yWO8yTBG^qA2SKo#yORzM zE)F^fjvW*PH#h$Q!ClUmZUXS21G_ zVzAPP4J^#i@H9NcQJtm*j$qNJ0$3pju(H7DS2oxNJ77ncpaH^M!W=>kA+Mn|w1(D3 zTQ0HXZd5B}b1-i6eP1StR&`aneoczYIhmWCkzl0|+b8fUGC1wa=KY;uWs~prc4T*O z9IGAYmV=}HKb<$uE~EA)lgWR(`>3~0s-7P9gnF%Ce`h&=llP~OAN%v&ycD(zl5J)s y<7HxXrG81mK`4#GhSdA@SpHF7zj-Iu7ZMJyB)l0KznEJRFIY42?ek^yFVPqHE)x#` literal 0 HcmV?d00001 diff --git a/assets/voxygen/voxel/npc/hirdrassil/male/foot_fl.vox b/assets/voxygen/voxel/npc/hirdrassil/male/foot_fl.vox new file mode 100644 index 0000000000000000000000000000000000000000..97a27654a175d79e305e35951ab09e2590369176 GIT binary patch literal 1428 zcmdUut4qUC6vxlw{vI-m*i6ET@C!Z=gG1Ee7-Mb@Cqo@9nJglLYickEf@^k@27|?* zK`*Xhb|3;BEkIkYykmLKmV= zh}h%cJLF*1K^GwxK^GwhT$~l4f;lusE>1|}ENPG^`f`BYfc-gOQCQ3{2c;EfW(hOkj05}9H*l!DsW zA8D9fEaqp^Wn-`9a@qcpMsd!X<&sTJjN3qepH*jaUGr26dFvdtZRzIPFmig{+*r5G z&Ow*5XNU`_8t-&v9l7=2v_((EDRwg7(zG`gOQ*Kq_VOJBA8AsECj)H_EuV0 z*jQ*GSXwAp+xZU&_A-8ZodgSwARhdf$9_9AJ8+HVweb@os^rU67~1!U>g8r}*ai43 z2*40nTW^+Y1`fVDV9RO%3rEIbMLEGBZg=;-^@|*K{Yx69MQz1p&Cbp0*yxB>7czbGREq`e9d~v0_C_&sa^C7} z>Q?WtPdmt4b`N%bwca4JeD`iDmHM}{fA_6_rKh`XrB36=d)CtzeSLiU^8S2lUNajR zovu&oL~)`|m+R)V-D_)Yucno5rSJSfpFib}F3+@mf1&NG`y`*8ozY@-De#o7b60@+Cl}!-A?X1eyN&yH6WgEMkPjm!=RNo1-8p*o-V2|UQVwqH9U{sP z^HT2a-QRttEBuDP==!}k?(cn?-CD{+DMch!38J}5(9~^!gpUg8z6$rzN~|2LBr->p zSQ>c_A%UJNlN?=g8H`0^sbCtTgO)m~D!Q&5LKPczG_jF~4CW7FQ+q$YQZRLVJ_aOu z^g80q?Zg-{MvPI@$hT#x(F5`LgZfVYYGrHS5Pgg-4Zl$vX`tpy0W*392Qg`Cf?v>u zcv&X4F!s!Xc-H9Tbu5Y3rJ542#OoN06V%un%cVmwPGZxHdWMbukqTn;9!|~PBmF{v zCOsy5mDU0*wK)XmV?i7wV{!U*`gI{!$fe(I3)vbt1Sqv6qlxQUoqnBuAs8n%NpBKL zo~{iX0uoyWz4u(CxRGy519#SgOl(Ph^f|()Vbm~c7&Y)=b9|QAz>>adf^BUg&pl<6 zp7g_AbM6NyW5H&9ep=a1`UCZ`b$p;cu{oS8`xe#CEeF2cf%*gYha89?7A(+_LXX0{5|wjK zVrSeZh#5VBfzDVrpgX#wCu0ZNX6L-hQZGsnC+1mlbu`!VCYSm0kUFW7?q z0O?>|q8m6d)?=}0w+lK1K80Yc-Nw7;U}ZpZ7YgSBIqfU^KCPSe*UcKhay;(z{6?eFimr^(Un zTkUv%uU&iTN_+mfXWQY+I~V#n+`ZY(K0a-)fA?*p>&buo;H~!d*@qWmpJXlXeemvo zTJK4EdEDH^V)4K2{c+d&wBpP6@3ivZ=wI)1`|Q{D+fTp$WB%3St8M4aop$-|<#uWJ z(uKI|r`Oxb*-5+e{+)JkdT_!2WBcWAwvWF0yq!GyvYmYWXtH0s@?zUPd}SJc^Ya(| HTPlA5>obH# literal 0 HcmV?d00001 diff --git a/assets/voxygen/voxel/npc/hirdrassil/male/head_upper.vox b/assets/voxygen/voxel/npc/hirdrassil/male/head_upper.vox new file mode 100644 index 0000000000000000000000000000000000000000..ccd797ae2a4a7ed5d6c1f308a0bf81936d7aa8ce GIT binary patch literal 3780 zcmdUxKd9ta6~}+S`@4V7xxYX2UR1Dh)PXRsn27|7EFmVigk{||7+GQ#wz9GbBDkGe zSO|jK*@~4G7HKTB5G(^mu=Y(Ok2lTyX25ES_xSm_V8tgoR=6Vs&n=d8M>=sd) zd73ph5rS}!czjudXuV9?EG5^=SmJ?bv(#dr*_#NVoJBKF;EC;}S%%_+dhV5$yCJrA z8H#q0b*~dlfAC=o7!8$8*qlL?0b5uZL^e?KBEx=cu4eKq~z{+J4gR`*HfKl5m2w> zuAGBryO2!(GBsld@Q}2;4>cDQAH@fa5R}{?32U)SDZc9FiY8^2Akjac4ZU~7VNWXj zE8dVV1=Jy+z*K1i~$GX(Bz#a>v5oC#|ce*Gm&N^av`~o?6Vkom0h|{p&h`SK{I#ih}<&8b(TKYtM&tBqp z6qu7h?8x21-J$fLfWMS^6Th&a#iyqy)Dj_cpM%6+=>0_)xUW#`&NGjw_*;RHPzV}s z1%jXuB%<+F!Ji1&0Xw1T)+=Y=b6hF-76sp-g;`qr!kHWu{E*fPl86nGB1#PKCnaVg zc0@q~3K|5JTlFZYLqVOcJg7xMZAJ?%cDwQo3cl&k4((AeXKR0Az#dlK%+?By7#Z3o zuPh8%H+9Ub&a|rryyaW)u3u}x4{Hw^W=CHz=fpWDcDVz;n)7-FXKTe)Y{m99e&Edu zM=dm;IeKv9;z}MRH}21@GwaM+Svzvi;HV{oqsCn7G}H%<+A}!bDubhUjy^hinz1u> z#&-11(Z`JDQ%~u!Pq#LvRSOMtP^JDj0~2M{gNcgjYL>cn1-|Evq2a89Dz@txkRZDu>S16#Bsug+_g#{G7j-v~hY33NF&)&jkVkFw zkej^EjgqtMeNLm-w08o0=acN(ra!dJFt+57saflOpX*`YV&@u6w|7wvHp*y{?rOfN zqwbp^qoNr!pxmGF$zI2{DDm4M2Td||#aCqCv+e@<#eA8YvrA{rFDqtg2Hv%oF6kzl zeCZqAxVqcqYS{GrdtsnA-P*ta^+|iQXFZ^W*>Qm0oE;5#``M$yOnUCuwCZldpIu)EeH1UNv=# zokxQjv`0JWP2LZt-PfiaRnsVv#u;&|C|6ZX*HtXP1&-V_uk647FM9v}{ppkB(VJhN9^bz=z53Ocr_Z0yriWj<^ISd;@4hiT`^D4g z+kg7wMAoPC$M1b_`u?+@J?HyzYWdMmfB1im_i=LhsNbsUr#APGTI(m}U;X(9Q}y1X z|GCf8um3R}{`$}V`u!`9UzzTF_s;av+b>No-hJ^ozt^6=Ha&UvWP0nzZ%q%LK6vi@ q!|Ct;vG?=$e=|M#;CIuL-+yr0fA!_BOm`oC<7EHgZ@(?SrRra^xtfCj literal 0 HcmV?d00001 diff --git a/assets/voxygen/voxel/npc/hirdrassil/male/jaw.vox b/assets/voxygen/voxel/npc/hirdrassil/male/jaw.vox new file mode 100644 index 0000000000000000000000000000000000000000..85ce97c79a255ad6aa1427eab3d2829a42b44263 GIT binary patch literal 1216 zcmWIZk5HJ#z`)?^=;;Tf7}l^bFa&!>x$=NGK)?jVY(UHo#1WBEo;5%k1mu92k(o`K z0f-ryfHVj*0@)zU0AzzO3y=-O49u+Bj3CUy{GS1gS%7R7pghxmMj&QjVFc1Z%*yzm z0gQp-tRQg)pg6;S24)})!c0JUAP#bOasZinwk8U5*GaL z=U|QD9zR#7|NVXC|3mie`VVw8SUx&G>wjT?2ZmZo{8HCaMpg4DaSN$>xw*NAtlLTT z>p-bzI9U9jAwP`laQ?sW(f{}7KH=1F6>at3I>q|GVX)zU4Oa~eb@t`<|Ks}O{s+_t u{P!*Q#gISy|2B$P_lD*F<4&&mAGh@+Slrgc=)bF<51764;tEh+VgLXfvje99 literal 0 HcmV?d00001 diff --git a/assets/voxygen/voxel/npc/hirdrassil/male/leg_bl.vox b/assets/voxygen/voxel/npc/hirdrassil/male/leg_bl.vox new file mode 100644 index 0000000000000000000000000000000000000000..8e72463e7539cd44e676da6a6e8fa69b988a8416 GIT binary patch literal 1580 zcmdT@J!n%=6h1%q-FKgH5f^dtI zchbSZ#X$$bv4euMo0FU1R+r;{R0$uP# z+uhyH*+lR-AOp?-JGXbc-xvv=hk$Ze6xB*yQK|wiMAcBM%aG@_ii-lM^QAafiDZ!h z0)(@Y89AU*)I#8t)k;1p7eF4B5{gnpD+W|TsT9x)4yfc&ToFZ!$XYB4=CFWsf!XMz zG{=`JzE;kf0)6a4DT)Z4q{t!ln6Uu)Bxg^CNQIy zFkh;hn;Yx19|691uh+BF#BlSPje1>My|Qc<&!4lw)%Kj8L1)9J2NS#X{+&Vc?0mF$ z*X~W9&fPtUmq$+?{L^_S(Q@40Mx*iHYCo>m)4ER|?i=k5|9a2%{HuNc^y82HE29-_ z-)Y;@_L41h7Uu4)P1bBY9oyF9E$dJEbLSuJ%Wt*)*Dq{*_{zp_4rle%<;&I?T%YA{ KKfg@>CHe(e1RuTD{I0r&al#mxJS_(iC3!;c#!~jXC+2u8BUW?|7j5#8RImc}D zQJUim5?>K#O$I-4v0#M-PgVF5(G$T5J|oYu(4>nZ_~3c$nj)^!qy?J9g+h}y4bUDi zC)BFph`~h!XA&?stC#~g;Ed6eVufZxj>1n(x+DV+hZ@)91m`i^*9wq&XhN*MP*_U+ z&>(_XJT#>JAqJHF5o6!V;77<|e+o;ih_xk({lgLqth899WCoJYRN^gS2aFs*+`>ym zEu)t(U&@=C8|$-=0EN9?&rTD=&1*L5b#3*^vRyoX&IVW8b9@G!4VxZJ?AH5t2FkPZ z(cWFVH+?!+dlD^=o;>)c^G?F$xV?==HyV+tT)uEp!&<>eeP}HlB`c>+zQLC;hqekM`xa-2UqqHa>i1<2Q%1{Oa;$>kO{X M{I{Q9rhkck0sL+WU;qFB literal 0 HcmV?d00001 diff --git a/assets/voxygen/voxel/npc/hirdrassil/male/leg_fl.vox b/assets/voxygen/voxel/npc/hirdrassil/male/leg_fl.vox new file mode 100644 index 0000000000000000000000000000000000000000..730a672dacc4a9168d57700324511c6c9aa66a4b GIT binary patch literal 1564 zcmdUuJ!=$E6o$_^_s&dUZN$#XAq<4ORU}ws2{B=pu&lcVBTLM}R#rAaM7Pt%LJ-`} z-b#xUX)Lr5EK?}h33mPg!9Q?(W;$6cVuawp!=5=G?|JVXc6@XH%1aR$ZuLj}$Wkt{ z*FWf8s9$&jkdh_XzjM(4ssua_L1UH#G|NiKvScx@jM!pUnUaq=HHbwiF)z)E(loD7 zOlozRU>84zP#)$uj$B6%!tp1Gw|Df7d5LNc*vVxeRpN{5Wn~kB;C0$q2tuy2 zx6;DG#zG6hE-4~d+xZU&R(8+NZYPIDj1XM-FmLAjetc(+8{OW!_CiDk8@(Zm{7fRd zz5VW`dczkWg9X^Tx8FNf0=`4gm?{HJsj!qPiCHPc5>qM4dCbrt=7q(q5X%eEtTf@w zvQm{iNrei1B(X=ctgt{WSfD1P(n4Np$SMi+uXU|!a$;)0jF}-X6mUzQyb>_WnUj~M z%%`_9S7IzRMtn!SMSRCf>NN&@heDgxSdB9yCy*1k7lgVj&jJYZMO}(IanzFEAq(`U`V}eV}(>256uM7-&@P0wzleW`aMt zu3$lU1L;VODY~L7x}qz(qAR*~?rd#tNNj#m>G%77k&L!FKJNE??dFPKy>i)yx7u@l zhTTn{9Zmi2#}AI{MjszM@Wa`&x!m*I-p_j1i^`Wz4_yvM zfBnw>@|%DE{Ns=HtK(H~-*5Z!?y@g-7w7WUr|UkMO?>Ccjt{1TIsMeX{&x2K?JJ+0 ayz$AqljeMF<%V~M+fDrb%j^2TB)2Y7F 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 literal 0 HcmV?d00001 diff --git a/assets/voxygen/voxel/npc/porcupine/male/foot_bl.vox b/assets/voxygen/voxel/npc/porcupine/male/foot_bl.vox new file mode 100644 index 0000000000000000000000000000000000000000..bcc79d927536bf6b31b0af8d015df9cb7185b2d5 GIT binary patch literal 1384 zcmeH_-)q}d6u{5D-*3LD=)>r+voU2QmexAQu$isZcG)^N7s5=jTWQm^6Kk4v8g-+> zcUUVjN6@V*MQSsII!CE92xIKUUk@_&FepA15&9rXeP|~_6G14*$MY?$i25gZ;ln-m zoO^!W+nesIpB9nB`;t%VCPzXdJ;}_0dxC>5SMij)l)nByTosw`OgqVy#^> zPH0VxyKKc>wbos;CR{N#tTx5C6=TAxGb`2!SHybD#=0xkgv!?S6pi7iZ0xGB&Wd&2 zRk5M6v1Z+fR}rImLIJ7^d?a++I&Rsj-C9S_p2k;SSL3S91ir>AiwS8?uWTH5#aOGk zHJ8?G9F65_JyzC@)?|#Mc~y2~-73box2@`|t79!s9#crb}xp3`F3xI(&4B(pV=G6Sch1UCsHy`^XKp zlAP|Oal8q^MQ#Z)XOTi3^6XZmHN>&JaAskIBR4euqHt7i7Oo59SDI=2F$G@?bM0E1 zKN!(&8{rpW;d9~gW#PgV&HID!JCDMRlkjsle5(!pHVCr`c&mlipF7L>L+|tDu5Y*` zzfvrsEGR`~gknpMn|o&9)vr01Q2mx7ezwSk6KX&3Ci#3GEsNk8WF79+`dCno1`3yk zh6a{jge~SGGI5qY7u!fBl&%i;x3^Fz6xjRrb)G-g&-m$=7$19uSX~VdJrE^Qvz37X zpLE(Mk??75_Nk5NyEsGSayh1^rYMz4%+Ag-IXQ{%`((3OlF20Tc$`QiLMA@Kxq;W1 zIq@!6&&;v(;dd-8EwQ+`xZ&H;(LpAYVRUqq`T2SM68Z-JvpIuz^1YnuJIEWu=}q0= z=M&8G&iU%6pKQu^bls2KPw(zJQafw^Wee_f?ufE~*LEIj`fqzr=gy745RFEOZma%h G4EYO&X&C7M literal 0 HcmV?d00001 diff --git a/assets/voxygen/voxel/npc/porcupine/male/foot_br.vox b/assets/voxygen/voxel/npc/porcupine/male/foot_br.vox new file mode 100644 index 0000000000000000000000000000000000000000..8fdd54ad541be238e78f348408d2a18d259d1a22 GIT binary patch literal 1384 zcmeH_|4ZC;9LHbp_vgzQ^}}%F@;aGZqS+cFZ)uj!&9$}TSSPuOp3_Bk-dtU^VelE5 z5o;W^Ss`KG2y6|pbp&JVm%jZFV?PX}pCkf*h{Ar*MW7c1LOgnXgh^C?LT`BTetmtu zzP#T(>E7BY5jngs`Lteg#1rXGW)9pFDtcUnueeLm+m}h!85Q&#QdsM+8tavfwX4?g zRvqIm8F5#Pbytmvl&y`ZPhs4$H4(L$W#dH3j`f$Ub(f9t){N^bl*3Wk*cEG?W#hUl zj`h~8HS1RVvST#H(^{U|!W{8#8^>KU>NnO=-B*6ib(L3rHq6x=$9P)PU$c(8Y^~MW z%A-A7N4eaH%Cc^?CuE(mHgS#!uK>0o|i@ap9z=pwWMpe zL!WR<9O&u>^=%srD6FXX6J$Sz=H0VA*f50a2Z*0yuhJY3L%)K9$07bii6@m(rVjHk z?=gKcL8hvT4|;{slrWeOdg8+4JMN}adn@!u;j|`vbc)hwJLBWkywFw2`GNb$4K$OS zYNvjz0l`IX2{LPuLJjilR;1bESY9|YKg^LE%D*5S)yTqiVeCpHEkCB!1T;1VR7dq)oI!HA9Fvoilu9LLW@ea}m>>uOve_)jWRgT8K{OgAlNjb)|7%R2 zc$ceZW?B63I~ErgSy))u$ZczDBa_K6GBU#4+?;+1eS`n8xr2A|J)G)2$QwiHP21o1 z6Ylbke)ZE&Hsw3Eu1D^tXLk*$oz?&Hg)!|rV(j0woyQvf+uz;3bK@_>VliUdD*wqL Fe*qm&7|#Fz literal 0 HcmV?d00001 diff --git a/assets/voxygen/voxel/npc/porcupine/male/foot_fl.vox b/assets/voxygen/voxel/npc/porcupine/male/foot_fl.vox new file mode 100644 index 0000000000000000000000000000000000000000..4c6da457e0868cacfae9bbd3d5f3b21f18a1733d GIT binary patch literal 1308 zcmeH_-D^~55XR>{=jh z7$ah3X*ITl60;(tDk173h@+LnkuQSaF*g|VExv3vz%`3uHY z@AwN!cx!A^Fk#rJ?vGbPdShl0^>DsSe zq4k!f(Ag|K&zA2R*XhjD_MlXtLKv&7V;~fwv#5x7wY5B^8qa5_S&%YPyHH`J^g<*Ujr9KVbBW2{w~?Oy3^*t8u&t8;8nNg3MA*Zjfo zo-m2xV*Y9sdSgOoSZE0e-!7d)qt2FT55NH>oZC;Xw}Jlt681I~ak66}sg4?=Lk(2) zRU$aZLqSF@BvXp)n2*%>*p?O!jd%0oebt{3wrXYOhR}DpirRl-aI=f+*W{7hf(K0>9%Ecr4>pm;v*?Jn`SOC;h_ zRpn9=(08#rNu^Q@4i1vb*{II`v y>B7wVL#%1VB3f3K5?faCNzSWjSQ=#g^2K~p`T2Zv!?NkW5DW$hE-3o1hP(&=dIs76 literal 0 HcmV?d00001 diff --git a/assets/voxygen/voxel/npc/porcupine/male/foot_fr.vox b/assets/voxygen/voxel/npc/porcupine/male/foot_fr.vox new file mode 100644 index 0000000000000000000000000000000000000000..b692d32b80f23fc03fb77fc0376fa658aa33f23f GIT binary patch literal 1308 zcmeH_-)oa+6vxl=ylVozwA(17YeeW&O4T5Uc(bV&B3=k(S7ivj7!$o2Lr60i2;<{<3l^FC6ZXKD^PF?O z=X=icqa)c_H6|iEw!}YHBZ~tf?eWyMrM{!fQD{gOD>}PU@keU?wLxL5TQoLMGB#K; zj#@WZvW`4Ajwu;&iq^Vw)>Yq{Icsgv7`JGRTI*C!idkyGXSb%^4HW zoYomrvdXu{nKO=CGQJh%8&~7nQ*;I=sI`6%wI-mts_AR_v-tg0LyS`tt8iRJK=(nl z3gwGc=xn0r+4*7X7IEi~C=V(HYJ{n#CPpF=ddtfAr?HV=smEVmh~}>e7qe9)t5!jm z@K79RYX{A(==I3`q1)df{UbE2pXBY@KHQ*(1QTplnLR%BHf-Mmk&OjDP)Qlv!8?4* z_<<;?@^ZfK6b2JQZ&c`r2=A|1LaWY}>kh#YEx2%)!e9%-!xbECE8}d>n`C+#h>x{U zGgOPHq)$ literal 0 HcmV?d00001 diff --git a/assets/voxygen/voxel/npc/porcupine/male/head.vox b/assets/voxygen/voxel/npc/porcupine/male/head.vox new file mode 100644 index 0000000000000000000000000000000000000000..33a36c080ba549d2ef3d2f57e5007c506bbef8dc GIT binary patch literal 1552 zcmeHF-D}%r6h80A@0V1)7#(&trmV!$TIU!xv$fhTTj!=B%oOWNo35Q$)2!2|D-|-V z6`3Q`ttv%oGX`~zQfCmx*o|KoGIlWtUKJ60A(eU~A|w$cL3we?~%v8H26hWU(_ z$1!EgUJdgahdugr#WKeD6s4(X_NUmZ@_O~=Ag?%s@q0ej^KoWxh8j=lTF%Bh%%gpb z@q4-_*;Ac4qX|=!`i$~XC&V!oOK694Ti=G(zOpv{bzP@8KlfUzLFxDE62?>&p$TJj zQ4zWZOOE?8oP*Ft2&b$Sb7}6_xK-`acBt#R4J~yWPd?VSPi*a39#GAJR!-AV)fc^o1zHMU}WPhT%4kSMSI(IMQ-nMaA zHv@5F*vm9Wz0l8rgGYhTBY8Z^l(KLL_v0Nb9uFhY(17=b1k*9WSXeL^5_`BZ;)M$*ke}|w>}(^R>#xVz(Yufu?L>5;7p*gG5Ln1ffh=oCwh8j|R!FCVBWc0O z!UUeW&it!_!;H*c6Uk8$CxT0t1m`ZZ?ze(p@gQ*h zIPgP1@D&I8WfWM70B>~Q)n`uO?Bnm^vt3`}qWp|p4n%>-5fjLDq;O-;BJlDTI2|Fs zC5KEhhjYj1Kkz!z=``3Dyl0Rqa3}jifjI0D7A-9;*mxe;qRvBRPhrpbF2o{4Uk~@(LD@y^Sj;m$CN#*H~Ly!|Lj4 z?QTy`4-$z4CMPGcva-T2!8iCHn>%wn;G q4DN11Y-i)Yd|piNjv)5$+Kz|X{@Xv$yR-Heg25ny+v@+BL;eH-JVK`c literal 0 HcmV?d00001 diff --git a/assets/voxygen/voxel/quadruped_medium_central_manifest.ron b/assets/voxygen/voxel/quadruped_medium_central_manifest.ron index 0a88edcb1c..b0f12840b0 100644 --- a/assets/voxygen/voxel/quadruped_medium_central_manifest.ron +++ b/assets/voxygen/voxel/quadruped_medium_central_manifest.ron @@ -659,4 +659,124 @@ central: ("npc.bonerattler.male.tail"), ), ), + (Deer, Male): ( + upper: ( + offset: (-6.0, 0.0, -8.0), + central: ("npc.deer.male.head_upper"), + ), + lower: ( + offset: (-3.0, -3.5, -4.0), + central: ("npc.deer.male.head_lower"), + ), + jaw: ( + offset: (-1.0, 0.0, -0.5), + central: ("npc.deer.male.jaw"), + ), + torso_front: ( + offset: (-4.0, -9.0, -4.0), + central: ("npc.deer.male.torso_front"), + ), + torso_back: ( + offset: (-4.0, -10.0, -3.5), + central: ("npc.deer.male.torso_back"), + ), + ears: ( + offset: (0.0, 0.0, 0.0), + central: ("armor.empty"), + ), + tail: ( + offset: (-2.0, -3.0, -6.0), + central: ("npc.deer.male.tail"), + ), + ), + (Deer, Female): ( + upper: ( + offset: (-6.0, 0.0, -4.5), + central: ("npc.deer.female.head_upper"), + ), + lower: ( + offset: (-3.0, -3.5, -4.0), + central: ("npc.deer.female.head_lower"), + ), + jaw: ( + offset: (-1.0, 0.0, -0.5), + central: ("npc.deer.female.jaw"), + ), + torso_front: ( + offset: (-4.0, -9.0, -4.0), + central: ("npc.deer.female.torso_front"), + ), + torso_back: ( + offset: (-4.0, -10.0, -3.5), + central: ("npc.deer.female.torso_back"), + ), + ears: ( + offset: (0.0, 0.0, 0.0), + central: ("armor.empty"), + ), + tail: ( + offset: (-2.0, -3.0, -6.0), + central: ("npc.deer.female.tail"), + ), + ), + (Hirdrassil, Male): ( + upper: ( + offset: (-9.0, 0.0, -11.5), + central: ("npc.hirdrassil.male.head_upper"), + ), + lower: ( + offset: (-4.0, -4.0, -6.0), + central: ("npc.hirdrassil.male.head_lower"), + ), + jaw: ( + offset: (-1.0, 0.0, -1.0), + central: ("npc.hirdrassil.male.jaw"), + ), + torso_front: ( + offset: (-4.0, -10.0, -5.5), + central: ("npc.hirdrassil.male.torso_front"), + ), + torso_back: ( + offset: (-4.0, -11.0, -4.0), + central: ("npc.hirdrassil.male.torso_back"), + ), + ears: ( + offset: (0.0, 0.0, 0.0), + central: ("armor.empty"), + ), + tail: ( + offset: (-2.0, -4.0, -3.0), + central: ("npc.hirdrassil.male.tail"), + ), + ), + (Hirdrassil, Female): ( + upper: ( + offset: (-9.0, 0.0, -11.5), + central: ("npc.hirdrassil.male.head_upper"), + ), + lower: ( + offset: (-4.0, -4.0, -6.0), + central: ("npc.hirdrassil.male.head_lower"), + ), + jaw: ( + offset: (-1.0, 0.0, -1.0), + central: ("npc.hirdrassil.male.jaw"), + ), + torso_front: ( + offset: (-4.0, -10.0, -5.5), + central: ("npc.hirdrassil.male.torso_front"), + ), + torso_back: ( + offset: (-4.0, -11.0, -4.0), + central: ("npc.hirdrassil.male.torso_back"), + ), + ears: ( + offset: (0.0, 0.0, 0.0), + central: ("armor.empty"), + ), + tail: ( + offset: (-2.0, -4.0, -3.0), + central: ("npc.hirdrassil.male.tail"), + ), + ), }) diff --git a/assets/voxygen/voxel/quadruped_medium_lateral_manifest.ron b/assets/voxygen/voxel/quadruped_medium_lateral_manifest.ron index 77d283c7a6..6bf06e42cc 100644 --- a/assets/voxygen/voxel/quadruped_medium_lateral_manifest.ron +++ b/assets/voxygen/voxel/quadruped_medium_lateral_manifest.ron @@ -747,4 +747,140 @@ lateral: ("npc.bonerattler.male.foot_br"), ), ), + (Deer, Male): ( + leg_fl: ( + offset: (-1.5, -2.5, -2.5), + lateral: ("npc.deer.male.leg_fl"), + ), + leg_fr: ( + offset: (-1.5, -2.5, -2.5), + lateral: ("npc.deer.male.leg_fr"), + ), + leg_bl: ( + offset: (-2.0, -1.0, -2.5), + lateral: ("npc.deer.male.leg_bl"), + ), + leg_br: ( + offset: (-2.0, -1.0, -2.5), + lateral: ("npc.deer.male.leg_br"), + ), + foot_fl: ( + offset: (-1.0, -1.0, -8.0), + lateral: ("npc.deer.male.foot_fl"), + ), + foot_fr: ( + offset: (-1.0, -1.0, -8.0), + lateral: ("npc.deer.male.foot_fr"), + ), + foot_bl: ( + offset: (-1.0, -2.0, -9.0), + lateral: ("npc.deer.male.foot_bl"), + ), + foot_br: ( + offset: (-1.0, -2.0, -9.0), + lateral: ("npc.deer.male.foot_br"), + ), + ), + (Deer, Female): ( + leg_fl: ( + offset: (-1.5, -2.5, -2.5), + lateral: ("npc.deer.female.leg_fl"), + ), + leg_fr: ( + offset: (-1.5, -2.5, -2.5), + lateral: ("npc.deer.female.leg_fr"), + ), + leg_bl: ( + offset: (-2.0, -1.0, -2.5), + lateral: ("npc.deer.female.leg_bl"), + ), + leg_br: ( + offset: (-2.0, -1.0, -2.5), + lateral: ("npc.deer.female.leg_br"), + ), + foot_fl: ( + offset: (-1.0, -1.0, -8.0), + lateral: ("npc.deer.female.foot_fl"), + ), + foot_fr: ( + offset: (-1.0, -1.0, -8.0), + lateral: ("npc.deer.female.foot_fr"), + ), + foot_bl: ( + offset: (-1.0, -2.0, -9.0), + lateral: ("npc.deer.female.foot_bl"), + ), + foot_br: ( + offset: (-1.0, -2.0, -9.0), + lateral: ("npc.deer.female.foot_br"), + ), + ), + (Hirdrassil, Male): ( + leg_fl: ( + offset: (-1.5, -3.0, -2.5), + lateral: ("npc.hirdrassil.male.leg_fl"), + ), + leg_fr: ( + offset: (-1.5, -3.0, -2.5), + lateral: ("npc.hirdrassil.male.leg_fr"), + ), + leg_bl: ( + offset: (-2.0, -1.0, -2.5), + lateral: ("npc.hirdrassil.male.leg_bl"), + ), + leg_br: ( + offset: (-2.0, -1.0, -2.5), + lateral: ("npc.hirdrassil.male.leg_br"), + ), + foot_fl: ( + offset: (-2.0, -1.0, -9.0), + lateral: ("npc.hirdrassil.male.foot_fl"), + ), + foot_fr: ( + offset: (-2.0, -1.0, -9.0), + lateral: ("npc.hirdrassil.male.foot_fr"), + ), + foot_bl: ( + offset: (-2.0, -2.5, -7.0), + lateral: ("npc.hirdrassil.male.foot_bl"), + ), + foot_br: ( + offset: (-2.0, -2.5, -7.0), + lateral: ("npc.hirdrassil.male.foot_br"), + ), + ), + (Hirdrassil, Female): ( + leg_fl: ( + offset: (-1.5, -3.0, -2.5), + lateral: ("npc.hirdrassil.male.leg_fl"), + ), + leg_fr: ( + offset: (-1.5, -3.0, -2.5), + lateral: ("npc.hirdrassil.male.leg_fr"), + ), + leg_bl: ( + offset: (-2.0, -1.0, -2.5), + lateral: ("npc.hirdrassil.male.leg_bl"), + ), + leg_br: ( + offset: (-2.0, -1.0, -2.5), + lateral: ("npc.hirdrassil.male.leg_br"), + ), + foot_fl: ( + offset: (-2.0, -1.0, -9.0), + lateral: ("npc.hirdrassil.male.foot_fl"), + ), + foot_fr: ( + offset: (-2.0, -1.0, -9.0), + lateral: ("npc.hirdrassil.male.foot_fr"), + ), + foot_bl: ( + offset: (-2.0, -2.5, -7.0), + lateral: ("npc.hirdrassil.male.foot_bl"), + ), + foot_br: ( + offset: (-2.0, -2.5, -7.0), + lateral: ("npc.hirdrassil.male.foot_br"), + ), + ), }) diff --git a/assets/voxygen/voxel/quadruped_small_central_manifest.ron b/assets/voxygen/voxel/quadruped_small_central_manifest.ron index d8fdc201fe..bd4954de7a 100644 --- a/assets/voxygen/voxel/quadruped_small_central_manifest.ron +++ b/assets/voxygen/voxel/quadruped_small_central_manifest.ron @@ -630,4 +630,60 @@ central: ("armor.empty"), ), ), + (Porcupine, Male):( + head: ( + offset: (-2.5, 0.0, -7.0), + central: ("npc.porcupine.male.head"), + ), + chest: ( + offset: (-7.5, -10.0, -8.0), + central: ("npc.porcupine.male.chest"), + ), + tail: ( + offset: (0.0, 0.0, 0.0), + central: ("armor.empty"), + ), + ), + (Porcupine, Female):( + head: ( + offset: (-2.5, 0.0, -7.0), + central: ("npc.porcupine.male.head"), + ), + chest: ( + offset: (-7.5, -10.0, -8.0), + central: ("npc.porcupine.male.chest"), + ), + tail: ( + offset: (0.0, 0.0, 0.0), + central: ("armor.empty"), + ), + ), + (Beaver, Male):( + head: ( + offset: (-4.0, 0.0, -3.0), + central: ("npc.beaver.male.head"), + ), + chest: ( + offset: (-4.0, -6.0, -4.0), + central: ("npc.beaver.male.chest"), + ), + tail: ( + offset: (-3.0, -9.0, -2.0), + central: ("npc.beaver.male.tail"), + ), + ), + (Beaver, Female):( + head: ( + offset: (-4.0, 0.0, -3.0), + central: ("npc.beaver.male.head"), + ), + chest: ( + offset: (-4.0, -6.0, -4.0), + central: ("npc.beaver.male.chest"), + ), + tail: ( + offset: (-3.0, -9.0, -2.0), + central: ("npc.beaver.male.tail"), + ), + ), }) \ No newline at end of file diff --git a/assets/voxygen/voxel/quadruped_small_lateral_manifest.ron b/assets/voxygen/voxel/quadruped_small_lateral_manifest.ron index 2d2399e6c0..b7dea48055 100644 --- a/assets/voxygen/voxel/quadruped_small_lateral_manifest.ron +++ b/assets/voxygen/voxel/quadruped_small_lateral_manifest.ron @@ -809,4 +809,76 @@ lateral: ("npc.fungome.male.foot_br"), ), ), + (Porcupine, Male): ( + left_front: ( + offset: (-1.5, -2.5, -2.0), + lateral: ("npc.porcupine.male.foot_fl"), + ), + right_front: ( + offset: (-1.5, -2.5, -2.0), + lateral: ("npc.porcupine.male.foot_fr"), + ), + left_back: ( + offset: (-2.0, -3.0, -3.0), + lateral: ("npc.porcupine.male.foot_bl"), + ), + right_back: ( + offset: (-2.0, -3.0, -3.0), + lateral: ("npc.porcupine.male.foot_br"), + ), + ), + (Porcupine, Female): ( + left_front: ( + offset: (-1.5, -2.5, -2.0), + lateral: ("npc.porcupine.male.foot_fl"), + ), + right_front: ( + offset: (-1.5, -2.5, -2.0), + lateral: ("npc.porcupine.male.foot_fr"), + ), + left_back: ( + offset: (-2.0, -3.0, -3.0), + lateral: ("npc.porcupine.male.foot_bl"), + ), + right_back: ( + offset: (-2.0, -3.0, -3.0), + lateral: ("npc.porcupine.male.foot_br"), + ), + ), + (Beaver, Male): ( + left_front: ( + offset: (-1.5, -2.0, -2.0), + lateral: ("npc.beaver.male.foot_fl"), + ), + right_front: ( + offset: (-1.5, -2.5, -2.0), + lateral: ("npc.beaver.male.foot_fr"), + ), + left_back: ( + offset: (-2.0, -2.5, -3.0), + lateral: ("npc.beaver.male.foot_bl"), + ), + right_back: ( + offset: (-2.0, -2.5, -3.0), + lateral: ("npc.beaver.male.foot_br"), + ), + ), + (Beaver, Female): ( + left_front: ( + offset: (-1.5, -2.0, -2.0), + lateral: ("npc.beaver.male.foot_fl"), + ), + right_front: ( + offset: (-1.5, -2.5, -2.0), + lateral: ("npc.beaver.male.foot_fr"), + ), + left_back: ( + offset: (-2.0, -2.5, -3.0), + lateral: ("npc.beaver.male.foot_bl"), + ), + right_back: ( + offset: (-2.0, -2.5, -3.0), + lateral: ("npc.beaver.male.foot_br"), + ), + ), }) \ No newline at end of file diff --git a/common/src/comp/body/quadruped_medium.rs b/common/src/comp/body/quadruped_medium.rs index 191c36fb02..25f144292b 100644 --- a/common/src/comp/body/quadruped_medium.rs +++ b/common/src/comp/body/quadruped_medium.rs @@ -29,24 +29,23 @@ impl From for super::Body { fn from(body: Body) -> Self { super::Body::QuadrupedMedium(body) } } -make_case_elim!( - species, - #[derive(Copy, Clone, Debug, PartialEq, Eq, Hash, Serialize, Deserialize)] - #[repr(u32)] - pub enum Species { - Grolgar = 0, - Saber = 1, - Tiger = 2, - Tuskram = 3, - Lion = 6, - Tarasque = 7, - Wolf = 8, - Frostfang = 9, - Mouflon = 10, - Catoblepas = 11, - Bonerattler = 12, - } -); +#[derive(Copy, Clone, Debug, PartialEq, Eq, Hash, Serialize, Deserialize)] +#[repr(u32)] +pub enum Species { + Grolgar = 0, + Saber = 1, + Tiger = 2, + Tuskram = 3, + Lion = 6, + Tarasque = 7, + Wolf = 8, + Frostfang = 9, + Mouflon = 10, + Catoblepas = 11, + Bonerattler = 12, + Deer = 13, + Hirdrassil = 14, +} /// Data representing per-species generic data. /// @@ -64,6 +63,8 @@ pub struct AllSpecies { pub mouflon: SpeciesMeta, pub catoblepas: SpeciesMeta, pub bonerattler: SpeciesMeta, + pub deer: SpeciesMeta, + pub hirdrassil: SpeciesMeta, } impl<'a, SpeciesMeta> core::ops::Index<&'a Species> for AllSpecies { @@ -83,11 +84,13 @@ impl<'a, SpeciesMeta> core::ops::Index<&'a Species> for AllSpecies Species::Mouflon => &self.mouflon, Species::Catoblepas => &self.catoblepas, Species::Bonerattler => &self.bonerattler, + Species::Deer => &self.deer, + Species::Hirdrassil => &self.hirdrassil, } } } -pub const ALL_SPECIES: [Species; 11] = [ +pub const ALL_SPECIES: [Species; 13] = [ Species::Grolgar, Species::Saber, Species::Tiger, @@ -99,6 +102,8 @@ pub const ALL_SPECIES: [Species; 11] = [ Species::Mouflon, Species::Catoblepas, Species::Bonerattler, + Species::Deer, + Species::Hirdrassil, ]; impl<'a, SpeciesMeta: 'a> IntoIterator for &'a AllSpecies { diff --git a/common/src/comp/body/quadruped_small.rs b/common/src/comp/body/quadruped_small.rs index 7844997cf3..50cb6ae531 100644 --- a/common/src/comp/body/quadruped_small.rs +++ b/common/src/comp/body/quadruped_small.rs @@ -54,6 +54,8 @@ pub enum Species { Turtle = 19, Squirrel = 20, Fungome = 21, + Porcupine = 22, + Beaver = 23, } /// Data representing per-species generic data. @@ -83,6 +85,8 @@ pub struct AllSpecies { pub turtle: SpeciesMeta, pub squirrel: SpeciesMeta, pub fungome: SpeciesMeta, + pub porcupine: SpeciesMeta, + pub beaver: SpeciesMeta, } impl<'a, SpeciesMeta> core::ops::Index<&'a Species> for AllSpecies { @@ -113,11 +117,13 @@ impl<'a, SpeciesMeta> core::ops::Index<&'a Species> for AllSpecies Species::Turtle => &self.turtle, Species::Squirrel => &self.squirrel, Species::Fungome => &self.fungome, + Species::Porcupine => &self.porcupine, + Species::Beaver => &self.beaver, } } } -pub const ALL_SPECIES: [Species; 22] = [ +pub const ALL_SPECIES: [Species; 24] = [ Species::Pig, Species::Fox, Species::Sheep, @@ -140,6 +146,8 @@ pub const ALL_SPECIES: [Species; 22] = [ Species::Turtle, Species::Squirrel, Species::Fungome, + Species::Porcupine, + Species::Beaver, ]; impl<'a, SpeciesMeta: 'a> IntoIterator for &'a AllSpecies { diff --git a/voxygen/src/anim/src/quadruped_medium/mod.rs b/voxygen/src/anim/src/quadruped_medium/mod.rs index abc6a4b275..a8746a3178 100644 --- a/voxygen/src/anim/src/quadruped_medium/mod.rs +++ b/voxygen/src/anim/src/quadruped_medium/mod.rs @@ -129,7 +129,7 @@ impl Default for SkeletonAttr { impl<'a> From<&'a Body> for SkeletonAttr { fn from(body: &'a Body) -> Self { - use comp::quadruped_medium::Species::*; + use comp::quadruped_medium::{BodyType::*, Species::*}; Self { head_upper: match (body.species, body.body_type) { (Grolgar, _) => (0.0, -1.0), @@ -143,6 +143,9 @@ impl<'a> From<&'a Body> for SkeletonAttr { (Mouflon, _) => (-2.5, 6.0), (Catoblepas, _) => (-1.0, -6.5), (Bonerattler, _) => (-1.0, 2.5), + (Deer, Male) => (-4.5, 11.0), + (Deer, Female) => (-2.5, 8.0), + (Hirdrassil, _) => (-12.0, 16.0), }, head_lower: match (body.species, body.body_type) { (Grolgar, _) => (1.0, -1.0), @@ -156,6 +159,8 @@ impl<'a> From<&'a Body> for SkeletonAttr { (Mouflon, _) => (-1.0, 0.5), (Catoblepas, _) => (19.5, -2.0), (Bonerattler, _) => (7.0, -1.5), + (Deer, _) => (-0.5, 1.0), + (Hirdrassil, _) => (-1.0, 0.5), }, jaw: match (body.species, body.body_type) { (Grolgar, _) => (7.0, 1.5), @@ -169,6 +174,9 @@ impl<'a> From<&'a Body> for SkeletonAttr { (Mouflon, _) => (10.5, -4.0), (Catoblepas, _) => (1.0, -4.0), (Bonerattler, _) => (3.0, -3.0), + (Deer, Male) => (9.0, -5.5), + (Deer, Female) => (7.0, -2.0), + (Hirdrassil, _) => (14.5, -15.0), }, tail: match (body.species, body.body_type) { (Grolgar, _) => (-11.5, -0.5), @@ -182,6 +190,8 @@ impl<'a> From<&'a Body> for SkeletonAttr { (Mouflon, _) => (-10.5, 3.0), (Catoblepas, _) => (-8.5, -2.0), (Bonerattler, _) => (-10.0, 1.5), + (Deer, _) => (-8.5, 6.5), + (Hirdrassil, _) => (-9.0, 5.0), }, torso_front: match (body.species, body.body_type) { (Grolgar, _) => (10.0, 13.0), @@ -195,6 +205,8 @@ impl<'a> From<&'a Body> for SkeletonAttr { (Mouflon, _) => (11.0, 13.5), (Catoblepas, _) => (7.5, 19.5), (Bonerattler, _) => (6.0, 12.5), + (Deer, _) => (11.0, 13.5), + (Hirdrassil, _) => (11.0, 14.5), }, torso_back: match (body.species, body.body_type) { (Grolgar, _) => (-10.0, 1.5), @@ -208,6 +220,8 @@ impl<'a> From<&'a Body> for SkeletonAttr { (Mouflon, _) => (-8.5, -0.5), (Catoblepas, _) => (-8.5, -4.5), (Bonerattler, _) => (-5.0, 0.0), + (Deer, _) => (-9.0, 0.5), + (Hirdrassil, _) => (-9.0, -0.5), }, ears: match (body.species, body.body_type) { (Grolgar, _) => (5.0, 8.0), @@ -221,6 +235,8 @@ impl<'a> From<&'a Body> for SkeletonAttr { (Mouflon, _) => (2.5, 5.0), (Catoblepas, _) => (11.0, -3.0), (Bonerattler, _) => (2.0, 3.5), + (Deer, _) => (2.5, 5.0), + (Hirdrassil, _) => (2.5, 5.0), }, leg_f: match (body.species, body.body_type) { (Grolgar, _) => (-7.0, 4.0, 0.0), @@ -234,6 +250,8 @@ impl<'a> From<&'a Body> for SkeletonAttr { (Mouflon, _) => (4.0, -5.0, -5.0), (Catoblepas, _) => (7.0, 2.0, -6.0), (Bonerattler, _) => (5.5, 5.0, -4.0), + (Deer, _) => (3.5, -4.5, -3.5), + (Hirdrassil, _) => (4.5, -6.0, -3.5), }, leg_b: match (body.species, body.body_type) { (Grolgar, _) => (6.0, -6.5, -5.5), @@ -247,6 +265,8 @@ impl<'a> From<&'a Body> for SkeletonAttr { (Mouflon, _) => (3.5, -8.0, -4.5), (Catoblepas, _) => (6.0, -2.5, -2.5), (Bonerattler, _) => (6.0, -8.0, -4.0), + (Deer, _) => (3.0, -8.0, -5.0), + (Hirdrassil, _) => (4.0, -8.0, -6.0), }, feet_f: match (body.species, body.body_type) { (Grolgar, _) => (0.0, -9.0, -7.0), @@ -260,6 +280,8 @@ impl<'a> From<&'a Body> for SkeletonAttr { (Mouflon, _) => (-0.5, -0.5, -1.5), (Catoblepas, _) => (1.0, 4.0, -3.0), (Bonerattler, _) => (-0.5, -3.0, -2.5), + (Deer, _) => (-0.5, -0.5, -2.5), + (Hirdrassil, _) => (-0.5, -3.0, -2.5), }, feet_b: match (body.species, body.body_type) { (Grolgar, _) => (0.0, 0.0, -5.0), @@ -273,6 +295,8 @@ impl<'a> From<&'a Body> for SkeletonAttr { (Mouflon, _) => (-1.0, 0.0, -2.5), (Catoblepas, _) => (0.5, 0.5, -3.0), (Bonerattler, _) => (0.0, 3.0, -2.5), + (Deer, _) => (-1.0, 0.0, -0.5), + (Hirdrassil, _) => (-1.0, 0.0, -1.5), }, scaler: match (body.species, body.body_type) { (Grolgar, _) => (1.3), @@ -286,6 +310,8 @@ impl<'a> From<&'a Body> for SkeletonAttr { (Mouflon, _) => (1.0), (Catoblepas, _) => (1.3), (Bonerattler, _) => (1.0), + (Deer, _) => (1.0), + (Hirdrassil, _) => (1.0), }, dampen: match (body.species, body.body_type) { (Grolgar, _) => (0.5), @@ -299,6 +325,8 @@ impl<'a> From<&'a Body> for SkeletonAttr { (Mouflon, _) => (1.0), (Catoblepas, _) => (0.6), (Bonerattler, _) => (0.6), + (Deer, _) => (1.0), + (Hirdrassil, _) => (1.0), }, maximize: match (body.species, body.body_type) { (Grolgar, _) => (2.0), @@ -312,6 +340,8 @@ impl<'a> From<&'a Body> for SkeletonAttr { (Mouflon, _) => (1.1), (Catoblepas, _) => (0.0), (Bonerattler, _) => (0.8), + (Deer, _) => (1.1), + (Hirdrassil, _) => (1.1), }, tempo: match (body.species, body.body_type) { (Grolgar, _) => (0.95), @@ -325,6 +355,8 @@ impl<'a> From<&'a Body> for SkeletonAttr { (Mouflon, _) => (0.85), (Catoblepas, _) => (0.8), (Bonerattler, _) => (1.0), + (Deer, _) => (0.85), + (Hirdrassil, _) => (0.85), }, } } diff --git a/voxygen/src/anim/src/quadruped_small/mod.rs b/voxygen/src/anim/src/quadruped_small/mod.rs index 0c49563099..49e90ccbee 100644 --- a/voxygen/src/anim/src/quadruped_small/mod.rs +++ b/voxygen/src/anim/src/quadruped_small/mod.rs @@ -120,6 +120,8 @@ impl<'a> From<&'a Body> for SkeletonAttr { (Turtle, _) => (4.0, 3.0), (Squirrel, _) => (7.5, -9.0), (Fungome, _) => (4.0, 2.0), + (Porcupine, _) => (6.0, 1.0), + (Beaver, _) => (5.5, 0.0), }, chest: match (body.species, body.body_type) { (Pig, _) => (0.0, 6.0), @@ -144,6 +146,8 @@ impl<'a> From<&'a Body> for SkeletonAttr { (Turtle, _) => (4.0, 3.0), (Squirrel, _) => (7.5, -9.0), (Fungome, _) => (4.0, 2.0), + (Porcupine, _) => (2.0, 11.0), + (Beaver, _) => (2.0, 6.0), }, feet_f: match (body.species, body.body_type) { (Pig, _) => (4.5, 3.5, -1.0), @@ -168,6 +172,8 @@ impl<'a> From<&'a Body> for SkeletonAttr { (Turtle, _) => (4.0, 3.0, 0.0), (Squirrel, _) => (7.5, -9.0, 0.0), (Fungome, _) => (4.0, 2.0, 0.0), + (Porcupine, _) => (4.0, 6.5, -9.0), + (Beaver, _) => (4.5, 4.5, -4.0), }, feet_b: match (body.species, body.body_type) { (Pig, _) => (3.5, -2.0, 0.0), @@ -192,6 +198,8 @@ impl<'a> From<&'a Body> for SkeletonAttr { (Turtle, _) => (4.0, 3.0, 0.0), (Squirrel, _) => (7.5, -9.0, 0.0), (Fungome, _) => (4.0, 2.0, 0.0), + (Porcupine, _) => (4.5, -1.0, -8.0), + (Beaver, _) => (4.0, -2.5, -3.0), }, tail: match (body.species, body.body_type) { (Pig, _) => (-4.5, 2.5), @@ -216,6 +224,8 @@ impl<'a> From<&'a Body> for SkeletonAttr { (Turtle, _) => (4.0, 3.0), (Squirrel, _) => (7.5, -9.0), (Fungome, _) => (4.0, 2.0), + (Porcupine, _) => (-6.0, 1.0), + (Beaver, _) => (-6.5, -1.0), }, scaler: match (body.species, body.body_type) { (Pig, _) => (0.9), @@ -240,6 +250,8 @@ impl<'a> From<&'a Body> for SkeletonAttr { (Turtle, _) => (4.0), (Squirrel, _) => (7.5), (Fungome, _) => (4.0), + (Porcupine, _) => (1.0), + (Beaver, _) => (1.0), }, tempo: match (body.species, body.body_type) { (Pig, _) => (1.0), @@ -264,6 +276,8 @@ impl<'a> From<&'a Body> for SkeletonAttr { (Turtle, _) => (4.0), (Squirrel, _) => (7.5), (Fungome, _) => (4.0), + (Porcupine, _) => (1.2), + (Beaver, _) => (1.2), }, maximize: match (body.species, body.body_type) { (Pig, _) => (1.0), @@ -288,6 +302,8 @@ impl<'a> From<&'a Body> for SkeletonAttr { (Turtle, _) => (0.1), (Squirrel, _) => (0.1), (Fungome, _) => (0.1), + (Porcupine, _) => (1.0), + (Beaver, _) => (1.0), }, minimize: match (body.species, body.body_type) { (Pig, _) => (0.6), @@ -312,6 +328,8 @@ impl<'a> From<&'a Body> for SkeletonAttr { (Turtle, _) => (0.1), (Squirrel, _) => (0.1), (Fungome, _) => (0.1), + (Porcupine, _) => (0.9), + (Beaver, _) => (0.9), }, spring: match (body.species, body.body_type) { (Pig, _) => (1.0), @@ -336,6 +354,8 @@ impl<'a> From<&'a Body> for SkeletonAttr { (Turtle, _) => (0.1), (Squirrel, _) => (0.1), (Fungome, _) => (0.1), + (Porcupine, _) => (1.3), + (Beaver, _) => (1.3), }, feed: match (body.species, body.body_type) { (Pig, _) => (1.0), @@ -360,6 +380,8 @@ impl<'a> From<&'a Body> for SkeletonAttr { (Turtle, _) => (0.1), (Squirrel, _) => (0.1), (Fungome, _) => (0.1), + (Porcupine, _) => (1.0), + (Beaver, _) => (1.0), }, } } From 6be95b30510dd500fda0a5cdffe98dc28174c386 Mon Sep 17 00:00:00 2001 From: jshipsey Date: Sun, 30 Aug 2020 01:14:12 -0400 Subject: [PATCH 14/28] thropod manifest changes --- assets/voxygen/voxel/theropod_central_manifest.ron | 14 +++++++------- assets/voxygen/voxel/theropod_lateral_manifest.ron | 4 ++-- 2 files changed, 9 insertions(+), 9 deletions(-) diff --git a/assets/voxygen/voxel/theropod_central_manifest.ron b/assets/voxygen/voxel/theropod_central_manifest.ron index d859b44337..f0bc769355 100644 --- a/assets/voxygen/voxel/theropod_central_manifest.ron +++ b/assets/voxygen/voxel/theropod_central_manifest.ron @@ -5,7 +5,7 @@ central: ("npc.archaeos.male.head"), ), jaw: ( - offset: (-5.5, -9.0, -3.0), + offset: (-5.5, 0.0, -3.0), central: ("npc.archaeos.male.jaw"), ), neck: ( @@ -25,7 +25,7 @@ central: ("npc.archaeos.male.tail_front"), ), tail_back: ( - offset: (-7.5, -11.0, -3.0), + offset: (-7.5, -23.0, -3.0), central: ("npc.archaeos.male.tail_back"), ), ), @@ -35,7 +35,7 @@ central: ("npc.archaeos.male.head"), ), jaw: ( - offset: (-5.5, -9.0, -3.0), + offset: (-5.5, 0.0, -3.0), central: ("npc.archaeos.male.jaw"), ), neck: ( @@ -55,7 +55,7 @@ central: ("npc.archaeos.male.tail_front"), ), tail_back: ( - offset: (-7.5, -11.0, -3.0), + offset: (-7.5, -23.0, -3.0), central: ("npc.archaeos.male.tail_back"), ), ), @@ -65,7 +65,7 @@ central: ("npc.odontotyrannos.male.head"), ), jaw: ( - offset: (-6.5, -7.0, -3.0), + offset: (-6.5, 0.0, -3.0), central: ("npc.odontotyrannos.male.jaw"), ), neck: ( @@ -85,7 +85,7 @@ central: ("npc.odontotyrannos.male.tail_front"), ), tail_back: ( - offset: (-2.5, -8.0, -3.0), + offset: (-2.5, -23.0, -3.0), central: ("npc.odontotyrannos.male.tail_back"), ), ), @@ -95,7 +95,7 @@ central: ("npc.odontotyrannos.male.head"), ), jaw: ( - offset: (-6.5, -7.0, -3.0), + offset: (-6.5, 0.0, -3.0), central: ("npc.odontotyrannos.male.jaw"), ), neck: ( diff --git a/assets/voxygen/voxel/theropod_lateral_manifest.ron b/assets/voxygen/voxel/theropod_lateral_manifest.ron index 9c4db7376e..ca4cc8cd0f 100644 --- a/assets/voxygen/voxel/theropod_lateral_manifest.ron +++ b/assets/voxygen/voxel/theropod_lateral_manifest.ron @@ -1,7 +1,7 @@ ({ (Archaeos, Male): ( hand_l: ( - offset: (-4.0, 2.0, -9.0), + offset: (-4.0, -2.0, -9.0), lateral: ("npc.archaeos.male.hand_l"), ), hand_r: ( @@ -27,7 +27,7 @@ ), (Archaeos, Female): ( hand_l: ( - offset: (-4.0, 2.0, -9.0), + offset: (-4.0, -2.0, -9.0), lateral: ("npc.archaeos.male.hand_l"), ), hand_r: ( From 31a04b938480c4960be08aee093f7211d0bfc194 Mon Sep 17 00:00:00 2001 From: jshipsey Date: Sun, 30 Aug 2020 03:40:40 -0400 Subject: [PATCH 15/28] theropod run --- common/src/states/utils.rs | 2 +- voxygen/src/anim/src/quadruped_medium/run.rs | 2 +- voxygen/src/anim/src/theropod/run.rs | 134 ++++++++++--------- 3 files changed, 76 insertions(+), 62 deletions(-) diff --git a/common/src/states/utils.rs b/common/src/states/utils.rs index 02cd6ebfd4..1b50424c2e 100644 --- a/common/src/states/utils.rs +++ b/common/src/states/utils.rs @@ -41,7 +41,7 @@ impl Body { Body::BipedLarge(_) => 75.0, Body::Object(_) => 40.0, Body::Golem(_) => 60.0, - Body::Theropod(_) => 85.0, + Body::Theropod(_) => 135.0, Body::QuadrupedLow(_) => 120.0, } } diff --git a/voxygen/src/anim/src/quadruped_medium/run.rs b/voxygen/src/anim/src/quadruped_medium/run.rs index 8fa866c4d3..5a99759441 100644 --- a/voxygen/src/anim/src/quadruped_medium/run.rs +++ b/voxygen/src/anim/src/quadruped_medium/run.rs @@ -169,7 +169,7 @@ impl Animation for RunAnimation { next.leg_fr.position = Vec3::new( skeleton_attr.leg_f.0, - skeleton_attr.leg_f.1 + amplitude3 * foot2b * -2.2, + skeleton_attr.leg_f.1 + amplitude3 * foot2b * -2.2,////////////fix skeleton_attr.leg_f.2 + amplitude3 * foot2a * 2.8, ); next.leg_fr.orientation = diff --git a/voxygen/src/anim/src/theropod/run.rs b/voxygen/src/anim/src/theropod/run.rs index 95e55f6050..edf9745990 100644 --- a/voxygen/src/anim/src/theropod/run.rs +++ b/voxygen/src/anim/src/theropod/run.rs @@ -15,85 +15,92 @@ impl Animation for RunAnimation { #[cfg_attr(feature = "be-dyn-lib", export_name = "theropod_run")] fn update_skeleton_inner( skeleton: &Self::Skeleton, - (_velocity, _global_time): Self::Dependency, + (velocity, _global_time): Self::Dependency, anim_time: f64, - _rate: &mut f32, + rate: &mut f32, skeleton_attr: &SkeletonAttr, ) -> Self::Skeleton { let mut next = (*skeleton).clone(); - + let speed = Vec2::::from(velocity).magnitude(); + *rate = 1.0; //let wave = (anim_time as f32 * 8.0).sin(); //let wavealt = (anim_time as f32 * 8.0 + PI / 2.0).sin(); //let wave_slow = (anim_time as f32 * 6.5 + PI).sin(); let breathe = (anim_time as f32 * 0.8).sin(); + let topspeed = 18.0; - let lab = 0.55; //.65 - let foothoril = (((1.0) - / (0.4 - + (0.6) - * ((anim_time as f32 * 16.0 * lab as f32 + PI * 1.4).sin()).powf(2.0 as f32))) + let canceler = speed / topspeed; + let lab = 0.5; //6 + let amplitude = (speed / topspeed).max(0.25); + let amplitude2 = (speed * 1.4 / topspeed).max(0.6); + let amplitude3 = (speed / topspeed).max(0.35); + let speedmult = if speed > 0.0 { + 1.2 * (1.0 * 1.0) + } else { + 0.9 * (1.0 * 1.0) + }; + + let speedadjust = if speed < 5.0 { 0.0 } else { speed / 25.0 }; + let short = (((1.0) + / (0.72 + + 0.28 + * ((anim_time as f32 * (16.0) * lab as f32 * speedmult + PI * -0.15 - 0.5) + .sin()) + .powf(2.0 as f32))) .sqrt()) - * ((anim_time as f32 * 16.0 * lab as f32 + PI * 1.4).sin()); - let foothorir = (((1.0) - / (0.4 - + (0.6) - * ((anim_time as f32 * 16.0 * lab as f32 + PI * 0.4).sin()).powf(2.0 as f32))) - .sqrt()) - * ((anim_time as f32 * 16.0 * lab as f32 + PI * 0.4).sin()); - - - let footrotl = (((5.0) - / (2.5 - + (2.5) - * ((anim_time as f32 * 16.0 * lab as f32 + PI * 1.4).sin()).powf(2.0 as f32))) - .sqrt()) - * ((anim_time as f32 * 16.0 * lab as f32 + PI * 1.4).sin()); - - let footrotr = (((5.0) - / (1.0 - + (4.0) - * ((anim_time as f32 * 16.0 * lab as f32 + PI * 0.4).sin()).powf(2.0 as f32))) - .sqrt()) - * ((anim_time as f32 * 16.0 * lab as f32 + PI * 0.4).sin()); - - let short = (anim_time as f32 * lab as f32 * 16.0).sin(); + * ((anim_time as f32 * (16.0) * lab as f32 * speedmult + PI * -0.15 - 0.5).sin()); + // + let shortalt = + (anim_time as f32 * (16.0) * lab as f32 * speedmult + PI * 3.0 / 8.0 - 0.5).sin(); + //FL + let foot1a = + (anim_time as f32 * (16.0) * lab as f32 * speedmult + 0.0+PI ) + .sin(); //1.5 + let foot1b = + (anim_time as f32 * (16.0) * lab as f32 * speedmult + 1.57+PI ) + .sin(); //1.9 + //FR + let foot2a = (anim_time as f32 * (16.0) * lab as f32 * speedmult ).sin(); //1.2 + let foot2b = (anim_time as f32 * (16.0) * lab as f32 * speedmult + 1.57 ).sin(); //1.6 + //BL + //BR next.head.position = Vec3::new(0.0, skeleton_attr.head.0, skeleton_attr.head.1+breathe * 0.3); - next.head.orientation = Quaternion::rotation_x(breathe * 0.1-0.1); + next.head.orientation = Quaternion::rotation_x(-0.1+short*-0.05)*Quaternion::rotation_z(shortalt*-0.2); next.head.scale = Vec3::one()*1.02; next.jaw.position = Vec3::new(0.0, skeleton_attr.jaw.0, skeleton_attr.jaw.1); - next.jaw.orientation = Quaternion::rotation_x(breathe * 0.05); + next.jaw.orientation = Quaternion::rotation_x(short*-0.03); next.jaw.scale = Vec3::one()*0.98; - next.neck.position = Vec3::new(0.0, skeleton_attr.neck.0, skeleton_attr.neck.1+breathe * 0.2); - next.neck.orientation = Quaternion::rotation_x(-0.1); + next.neck.position = Vec3::new(0.0, skeleton_attr.neck.0, skeleton_attr.neck.1); + next.neck.orientation = Quaternion::rotation_x(-0.1+short*-0.04)*Quaternion::rotation_z(shortalt*-0.1); next.neck.scale = Vec3::one()*0.98; next.chest_front.position = Vec3::new( 0.0, skeleton_attr.chest_front.0, - skeleton_attr.chest_front.1+breathe * 0.3, + skeleton_attr.chest_front.1+short * 0.5, )/3.0; - next.chest_front.orientation = Quaternion::rotation_x(breathe * 0.04); + next.chest_front.orientation = Quaternion::rotation_x(short * 0.07)*Quaternion::rotation_z(shortalt * 0.15); next.chest_front.scale = Vec3::one()/3.0; next.chest_back.position = Vec3::new(0.0, skeleton_attr.chest_back.0, skeleton_attr.chest_back.1); - next.chest_back.orientation = Quaternion::rotation_x(breathe * -0.04); + next.chest_back.orientation = Quaternion::rotation_x(short * -0.04)*Quaternion::rotation_z(shortalt * -0.15);; next.chest_back.scale = Vec3::one(); next.tail_front.position = Vec3::new(0.0, skeleton_attr.tail_front.0, skeleton_attr.tail_front.1); - next.tail_front.orientation = Quaternion::rotation_x(0.1); + next.tail_front.orientation = Quaternion::rotation_x(0.1+short * -0.02)*Quaternion::rotation_z(shortalt*-0.1); next.tail_front.scale = Vec3::one(); next.tail_back.position = Vec3::new(0.0, skeleton_attr.tail_back.0, skeleton_attr.tail_back.1); - next.tail_back.orientation = Quaternion::rotation_x(0.1); + next.tail_back.orientation = Quaternion::rotation_x(0.2+short * -0.2)*Quaternion::rotation_z(shortalt*-0.2); next.tail_back.scale = Vec3::one(); next.hand_l.position = Vec3::new( @@ -101,7 +108,7 @@ impl Animation for RunAnimation { skeleton_attr.hand.1, skeleton_attr.hand.2, ); - next.hand_l.orientation = Quaternion::rotation_x(breathe * 0.2); + next.hand_l.orientation = Quaternion::rotation_x( -0.2+amplitude3 * foot2a * 0.3); next.hand_l.scale = Vec3::one(); next.hand_r.position = Vec3::new( @@ -109,43 +116,50 @@ impl Animation for RunAnimation { skeleton_attr.hand.1, skeleton_attr.hand.2, ); - next.hand_r.orientation = Quaternion::rotation_x(breathe * 0.2); + next.hand_r.orientation = Quaternion::rotation_x( -0.2+amplitude3 * foot1a * 0.3); next.hand_r.scale = Vec3::one(); next.leg_l.position = Vec3::new( -skeleton_attr.leg.0, - skeleton_attr.leg.1, - skeleton_attr.leg.2+breathe * 0.05, + skeleton_attr.leg.1 + amplitude3 * foot1b * -1.3, + skeleton_attr.leg.2 + amplitude3 * foot1a * 1.4, ); next.leg_l.orientation = - Quaternion::rotation_z(short * 0.18) * Quaternion::rotation_x(foothoril * 0.3); next.leg_l.scale = Vec3::one(); + Quaternion::rotation_x( -0.2+amplitude3 * foot1a * 0.2) + * Quaternion::rotation_z(foot1a*-0.3) + * Quaternion::rotation_y(0.0); + next.leg_l.scale = Vec3::one() * 1.0; next.leg_r.position = Vec3::new( skeleton_attr.leg.0, - skeleton_attr.leg.1, - skeleton_attr.leg.2+breathe * 0.05, + skeleton_attr.leg.1 + amplitude3 * foot2b * -1.3, + skeleton_attr.leg.2 + amplitude3 * foot2a * 1.4, ); next.leg_r.orientation = - Quaternion::rotation_z(short * 0.18) * Quaternion::rotation_x(foothorir * 0.3); - next.leg_r.scale = Vec3::one(); + Quaternion::rotation_x( -0.2+amplitude3 * foot2a * 0.2) + * Quaternion::rotation_z(foot2a*0.3) + * Quaternion::rotation_y(0.0); + next.leg_r.scale = Vec3::one() * 1.0; next.foot_l.position = Vec3::new( -skeleton_attr.foot.0, - skeleton_attr.foot.1, - skeleton_attr.foot.2+breathe * -0.35, + skeleton_attr.foot.1+canceler*-2.0+ amplitude3 * foot1b * -2.0, + skeleton_attr.foot.2 +canceler*2.0+ (foot1a * 2.0).max(0.0) * amplitude2 , ); - next.foot_l.orientation = - Quaternion::rotation_x(-0.1 + footrotl * 0.25); - next.foot_l.scale = Vec3::one()*1.02; + next.foot_l.orientation = Quaternion::rotation_x(-0.3+ + amplitude2 * foot1b * -0.35, + ) * Quaternion::rotation_y(0.0); + next.foot_l.scale = Vec3::one() * 0.96; next.foot_r.position = Vec3::new( skeleton_attr.foot.0, - skeleton_attr.foot.1, - skeleton_attr.foot.2+breathe * -0.45, + skeleton_attr.foot.1+canceler*-2.0+ amplitude3 * foot2b * -2.0, + skeleton_attr.foot.2 +canceler*2.0+ (foot2a * 2.0).max(0.0) * amplitude2 , ); - next.foot_r.orientation = - Quaternion::rotation_x(-0.1 + footrotr * 0.25); - next.foot_r.scale = Vec3::one()*1.02; + next.foot_r.orientation = Quaternion::rotation_x(-0.3+ + amplitude2 * foot2b * -0.35, + ) * Quaternion::rotation_y(0.0); + next.foot_r.scale = Vec3::one() * 0.96; next } From 57d05c7818a0a30d8e5c4d6fa64e7cdc34ed1ada Mon Sep 17 00:00:00 2001 From: Snowram Date: Tue, 1 Sep 2020 01:28:09 +0200 Subject: [PATCH 16/28] Quadmed run anim tweaks and deers offsets tweaks --- .../quadruped_medium_central_manifest.ron | 22 +++++----- .../quadruped_medium_lateral_manifest.ron | 44 +++++++++---------- voxygen/src/anim/src/quadruped_medium/idle.rs | 4 +- voxygen/src/anim/src/quadruped_medium/mod.rs | 27 ++++++------ voxygen/src/anim/src/quadruped_medium/run.rs | 16 +++---- 5 files changed, 56 insertions(+), 57 deletions(-) diff --git a/assets/voxygen/voxel/quadruped_medium_central_manifest.ron b/assets/voxygen/voxel/quadruped_medium_central_manifest.ron index b0f12840b0..b02b199395 100644 --- a/assets/voxygen/voxel/quadruped_medium_central_manifest.ron +++ b/assets/voxygen/voxel/quadruped_medium_central_manifest.ron @@ -661,7 +661,7 @@ ), (Deer, Male): ( upper: ( - offset: (-6.0, 0.0, -8.0), + offset: (-6.0, -5.0, 0.0), central: ("npc.deer.male.head_upper"), ), lower: ( @@ -685,13 +685,13 @@ central: ("armor.empty"), ), tail: ( - offset: (-2.0, -3.0, -6.0), + offset: (-2.0, -2.0, 0.0), central: ("npc.deer.male.tail"), ), ), (Deer, Female): ( upper: ( - offset: (-6.0, 0.0, -4.5), + offset: (-6.0, -3.0, 0.0), central: ("npc.deer.female.head_upper"), ), lower: ( @@ -715,13 +715,13 @@ central: ("armor.empty"), ), tail: ( - offset: (-2.0, -3.0, -6.0), - central: ("npc.deer.female.tail"), + offset: (-2.0, -2.0, 0.0), + central: ("npc.deer.male.tail"), ), ), (Hirdrassil, Male): ( upper: ( - offset: (-9.0, 0.0, -11.5), + offset: (-9.0, -12.0, 0.0), central: ("npc.hirdrassil.male.head_upper"), ), lower: ( @@ -729,7 +729,7 @@ central: ("npc.hirdrassil.male.head_lower"), ), jaw: ( - offset: (-1.0, 0.0, -1.0), + offset: (-1.0, 0.0, -7.0), central: ("npc.hirdrassil.male.jaw"), ), torso_front: ( @@ -745,13 +745,13 @@ central: ("armor.empty"), ), tail: ( - offset: (-2.0, -4.0, -3.0), + offset: (-2.0, -2.0, 0.0), central: ("npc.hirdrassil.male.tail"), ), ), (Hirdrassil, Female): ( upper: ( - offset: (-9.0, 0.0, -11.5), + offset: (-9.0, -12.0, 0.0), central: ("npc.hirdrassil.male.head_upper"), ), lower: ( @@ -759,7 +759,7 @@ central: ("npc.hirdrassil.male.head_lower"), ), jaw: ( - offset: (-1.0, 0.0, -1.0), + offset: (-1.0, 0.0, -7.0), central: ("npc.hirdrassil.male.jaw"), ), torso_front: ( @@ -775,7 +775,7 @@ central: ("armor.empty"), ), tail: ( - offset: (-2.0, -4.0, -3.0), + offset: (-2.0, -2.0, 0.0), central: ("npc.hirdrassil.male.tail"), ), ), diff --git a/assets/voxygen/voxel/quadruped_medium_lateral_manifest.ron b/assets/voxygen/voxel/quadruped_medium_lateral_manifest.ron index 6bf06e42cc..19f77b2e19 100644 --- a/assets/voxygen/voxel/quadruped_medium_lateral_manifest.ron +++ b/assets/voxygen/voxel/quadruped_medium_lateral_manifest.ron @@ -545,11 +545,11 @@ ), (Mouflon, Male): ( leg_fl: ( - offset: (-1.5, -2.5, -2.5), + offset: (-1.5, -2.5, -4.0), lateral: ("npc.mouflon.male.leg_fl"), ), leg_fr: ( - offset: (-1.5, -2.5, -2.5), + offset: (-1.5, -2.5, -4.0), lateral: ("npc.mouflon.male.leg_fr"), ), leg_bl: ( @@ -579,19 +579,19 @@ ), (Mouflon, Female): ( leg_fl: ( - offset: (-1.5, -2.5, -2.5), + offset: (-1.5, -2.5, -4.0), lateral: ("npc.mouflon.male.leg_fl"), ), leg_fr: ( - offset: (-1.5, -2.5, -2.5), + offset: (-1.5, -2.5, -4.0), lateral: ("npc.mouflon.male.leg_fr"), ), leg_bl: ( - offset: (-2.0, -1.0, -2.5), + offset: (-2.0, -2.5, -4.0), lateral: ("npc.mouflon.male.leg_bl"), ), leg_br: ( - offset: (-2.0, -1.0, -2.5), + offset: (-2.0, -2.5, -4.0), lateral: ("npc.mouflon.male.leg_br"), ), foot_fl: ( @@ -749,19 +749,19 @@ ), (Deer, Male): ( leg_fl: ( - offset: (-1.5, -2.5, -2.5), + offset: (-1.5, -2.5, -3.5), lateral: ("npc.deer.male.leg_fl"), ), leg_fr: ( - offset: (-1.5, -2.5, -2.5), + offset: (-1.5, -2.5, -3.5), lateral: ("npc.deer.male.leg_fr"), ), leg_bl: ( - offset: (-2.0, -1.0, -2.5), + offset: (-2.0, -2.5, -4.0), lateral: ("npc.deer.male.leg_bl"), ), leg_br: ( - offset: (-2.0, -1.0, -2.5), + offset: (-2.0, -2.5, -4.0), lateral: ("npc.deer.male.leg_br"), ), foot_fl: ( @@ -783,19 +783,19 @@ ), (Deer, Female): ( leg_fl: ( - offset: (-1.5, -2.5, -2.5), + offset: (-1.5, -2.5, -3.5), lateral: ("npc.deer.female.leg_fl"), ), leg_fr: ( - offset: (-1.5, -2.5, -2.5), + offset: (-1.5, -2.5, -3.5), lateral: ("npc.deer.female.leg_fr"), ), leg_bl: ( - offset: (-2.0, -1.0, -2.5), + offset: (-2.0, -2.5, -4.0), lateral: ("npc.deer.female.leg_bl"), ), leg_br: ( - offset: (-2.0, -1.0, -2.5), + offset: (-2.0, -2.5, -4.0), lateral: ("npc.deer.female.leg_br"), ), foot_fl: ( @@ -817,19 +817,19 @@ ), (Hirdrassil, Male): ( leg_fl: ( - offset: (-1.5, -3.0, -2.5), + offset: (-1.5, -3.0, -4.0), lateral: ("npc.hirdrassil.male.leg_fl"), ), leg_fr: ( - offset: (-1.5, -3.0, -2.5), + offset: (-1.5, -3.0, -4.0), lateral: ("npc.hirdrassil.male.leg_fr"), ), leg_bl: ( - offset: (-2.0, -1.0, -2.5), + offset: (-2.0, -2.5, -5.0), lateral: ("npc.hirdrassil.male.leg_bl"), ), leg_br: ( - offset: (-2.0, -1.0, -2.5), + offset: (-2.0, -2.5, -5.0), lateral: ("npc.hirdrassil.male.leg_br"), ), foot_fl: ( @@ -851,19 +851,19 @@ ), (Hirdrassil, Female): ( leg_fl: ( - offset: (-1.5, -3.0, -2.5), + offset: (-1.5, -3.0, -4.0), lateral: ("npc.hirdrassil.male.leg_fl"), ), leg_fr: ( - offset: (-1.5, -3.0, -2.5), + offset: (-1.5, -3.0, -4.0), lateral: ("npc.hirdrassil.male.leg_fr"), ), leg_bl: ( - offset: (-2.0, -1.0, -2.5), + offset: (-2.0, -2.5, -5.0), lateral: ("npc.hirdrassil.male.leg_bl"), ), leg_br: ( - offset: (-2.0, -1.0, -2.5), + offset: (-2.0, -2.5, -5.0), lateral: ("npc.hirdrassil.male.leg_br"), ), foot_fl: ( diff --git a/voxygen/src/anim/src/quadruped_medium/idle.rs b/voxygen/src/anim/src/quadruped_medium/idle.rs index 193bb3aa6e..226f42951f 100644 --- a/voxygen/src/anim/src/quadruped_medium/idle.rs +++ b/voxygen/src/anim/src/quadruped_medium/idle.rs @@ -71,9 +71,9 @@ impl Animation for IdleAnimation { next.jaw.position = Vec3::new( 0.0, skeleton_attr.jaw.0 - slower * 0.12, - skeleton_attr.jaw.1 + slow * 0.2, + skeleton_attr.jaw.1 + slow * 0.2 + 0.5, ); - next.jaw.orientation = Quaternion::rotation_x(slow * 0.05); + next.jaw.orientation = Quaternion::rotation_x(slow * 0.05 - 0.08); next.jaw.scale = Vec3::one() * 1.02; next.tail.position = Vec3::new(0.0, skeleton_attr.tail.0, skeleton_attr.tail.1); diff --git a/voxygen/src/anim/src/quadruped_medium/mod.rs b/voxygen/src/anim/src/quadruped_medium/mod.rs index a8746a3178..5de8fd9920 100644 --- a/voxygen/src/anim/src/quadruped_medium/mod.rs +++ b/voxygen/src/anim/src/quadruped_medium/mod.rs @@ -143,9 +143,9 @@ impl<'a> From<&'a Body> for SkeletonAttr { (Mouflon, _) => (-2.5, 6.0), (Catoblepas, _) => (-1.0, -6.5), (Bonerattler, _) => (-1.0, 2.5), - (Deer, Male) => (-4.5, 11.0), - (Deer, Female) => (-2.5, 8.0), - (Hirdrassil, _) => (-12.0, 16.0), + (Deer, Male) => (0.5, 3.5), + (Deer, Female) => (0.5, 3.5), + (Hirdrassil, _) => (0.0, 5.0), }, head_lower: match (body.species, body.body_type) { (Grolgar, _) => (1.0, -1.0), @@ -174,9 +174,8 @@ impl<'a> From<&'a Body> for SkeletonAttr { (Mouflon, _) => (10.5, -4.0), (Catoblepas, _) => (1.0, -4.0), (Bonerattler, _) => (3.0, -3.0), - (Deer, Male) => (9.0, -5.5), - (Deer, Female) => (7.0, -2.0), - (Hirdrassil, _) => (14.5, -15.0), + (Deer, _) => (3.5, 2.0), + (Hirdrassil, _) => (2.5, 2.5), }, tail: match (body.species, body.body_type) { (Grolgar, _) => (-11.5, -0.5), @@ -190,8 +189,8 @@ impl<'a> From<&'a Body> for SkeletonAttr { (Mouflon, _) => (-10.5, 3.0), (Catoblepas, _) => (-8.5, -2.0), (Bonerattler, _) => (-10.0, 1.5), - (Deer, _) => (-8.5, 6.5), - (Hirdrassil, _) => (-9.0, 5.0), + (Deer, _) => (-8.5, 0.5), + (Hirdrassil, _) => (-11.0, 2.0), }, torso_front: match (body.species, body.body_type) { (Grolgar, _) => (10.0, 13.0), @@ -251,7 +250,7 @@ impl<'a> From<&'a Body> for SkeletonAttr { (Catoblepas, _) => (7.0, 2.0, -6.0), (Bonerattler, _) => (5.5, 5.0, -4.0), (Deer, _) => (3.5, -4.5, -3.5), - (Hirdrassil, _) => (4.5, -6.0, -3.5), + (Hirdrassil, _) => (4.5, -5.0, -2.5), }, leg_b: match (body.species, body.body_type) { (Grolgar, _) => (6.0, -6.5, -5.5), @@ -265,8 +264,8 @@ impl<'a> From<&'a Body> for SkeletonAttr { (Mouflon, _) => (3.5, -8.0, -4.5), (Catoblepas, _) => (6.0, -2.5, -2.5), (Bonerattler, _) => (6.0, -8.0, -4.0), - (Deer, _) => (3.0, -8.0, -5.0), - (Hirdrassil, _) => (4.0, -8.0, -6.0), + (Deer, _) => (3.0, -6.5, -3.5), + (Hirdrassil, _) => (4.0, -6.5, -3.0), }, feet_f: match (body.species, body.body_type) { (Grolgar, _) => (0.0, -9.0, -7.0), @@ -281,7 +280,7 @@ impl<'a> From<&'a Body> for SkeletonAttr { (Catoblepas, _) => (1.0, 4.0, -3.0), (Bonerattler, _) => (-0.5, -3.0, -2.5), (Deer, _) => (-0.5, -0.5, -2.5), - (Hirdrassil, _) => (-0.5, -3.0, -2.5), + (Hirdrassil, _) => (-0.5, -3.0, -3.5), }, feet_b: match (body.species, body.body_type) { (Grolgar, _) => (0.0, 0.0, -5.0), @@ -295,8 +294,8 @@ impl<'a> From<&'a Body> for SkeletonAttr { (Mouflon, _) => (-1.0, 0.0, -2.5), (Catoblepas, _) => (0.5, 0.5, -3.0), (Bonerattler, _) => (0.0, 3.0, -2.5), - (Deer, _) => (-1.0, 0.0, -0.5), - (Hirdrassil, _) => (-1.0, 0.0, -1.5), + (Deer, _) => (-1.0, -0.5, -2.0), + (Hirdrassil, _) => (-1.0, -2.0, -4.5), }, scaler: match (body.species, body.body_type) { (Grolgar, _) => (1.3), diff --git a/voxygen/src/anim/src/quadruped_medium/run.rs b/voxygen/src/anim/src/quadruped_medium/run.rs index 5a99759441..962498f883 100644 --- a/voxygen/src/anim/src/quadruped_medium/run.rs +++ b/voxygen/src/anim/src/quadruped_medium/run.rs @@ -162,7 +162,7 @@ impl Animation for RunAnimation { skeleton_attr.leg_f.2 + amplitude3 * foot1a * 2.3, ); next.leg_fl.orientation = - Quaternion::rotation_x(0.2 * canceler + amplitude3 * foot1a * 0.35) + Quaternion::rotation_x(0.2 * canceler + amplitude3 * foot1a * 0.85) * Quaternion::rotation_z(tilt * -0.5) * Quaternion::rotation_y(tilt * 1.5); next.leg_fl.scale = Vec3::one() * 1.02; @@ -173,7 +173,7 @@ impl Animation for RunAnimation { skeleton_attr.leg_f.2 + amplitude3 * foot2a * 2.8, ); next.leg_fr.orientation = - Quaternion::rotation_x(0.2 * canceler + amplitude3 * foot2a * 0.35) + Quaternion::rotation_x(0.2 * canceler + amplitude3 * foot2a * 0.85) * Quaternion::rotation_z(tilt * -0.5) * Quaternion::rotation_y(tilt * 1.5); next.leg_fr.scale = Vec3::one() * 1.02; @@ -183,7 +183,7 @@ impl Animation for RunAnimation { skeleton_attr.leg_b.1 + amplitude3 * foot3b * -1.1, skeleton_attr.leg_b.2 + canceler + amplitude3 * foot3a * 1.6, ); - next.leg_bl.orientation = Quaternion::rotation_x(amplitude3 * foot3a * 0.12) + next.leg_bl.orientation = Quaternion::rotation_x(amplitude3 * foot1b * 0.85) * Quaternion::rotation_y(tilt * 1.5) * Quaternion::rotation_z(tilt * -1.5); next.leg_bl.scale = Vec3::one() * 1.02; @@ -193,7 +193,7 @@ impl Animation for RunAnimation { skeleton_attr.leg_b.1 + amplitude3 * foot4b * -1.1, skeleton_attr.leg_b.2 + canceler + amplitude3 * foot4a * 1.6, ); - next.leg_br.orientation = Quaternion::rotation_x(amplitude3 * foot4b * 0.12) + next.leg_br.orientation = Quaternion::rotation_x(amplitude3 * foot2b * 0.85) * Quaternion::rotation_y(tilt * 1.5) * Quaternion::rotation_z(tilt * -1.5); next.leg_br.scale = Vec3::one() * 1.02; @@ -204,7 +204,7 @@ impl Animation for RunAnimation { skeleton_attr.feet_f.2 + (foot1a * 2.0).max(-1.0) * amplitude2 + 1.0 * canceler, ); next.foot_fl.orientation = Quaternion::rotation_x( - ((1.0 - skeleton_attr.dampen) * -1.0) * canceler + amplitude2 * foot1b * -0.8, + ((1.0 - skeleton_attr.dampen) * -1.0) * canceler + amplitude2 * foot1b * -0.7, ) * Quaternion::rotation_y(tilt * -1.0); next.foot_fl.scale = Vec3::one() * 0.96; @@ -214,7 +214,7 @@ impl Animation for RunAnimation { skeleton_attr.feet_f.2 + (foot2a * 2.0).max(-1.0) * amplitude2 + 1.0 * canceler, ); next.foot_fr.orientation = Quaternion::rotation_x( - ((1.0 - skeleton_attr.dampen) * -1.0) * canceler + amplitude2 * foot2b * -0.8, + ((1.0 - skeleton_attr.dampen) * -1.0) * canceler + amplitude2 * foot2b * -0.7, ) * Quaternion::rotation_y(tilt * -1.0); next.foot_fr.scale = Vec3::one() * 0.96; @@ -224,7 +224,7 @@ impl Animation for RunAnimation { skeleton_attr.feet_b.2 + (foot3a * 0.5).max(0.0) * amplitude2 + 2.0 * canceler, ); next.foot_bl.orientation = - Quaternion::rotation_x(amplitude2 * foot3b * -0.9 - 0.5 * canceler) + Quaternion::rotation_x(amplitude2 * foot3b * -0.5 - 0.5 * canceler) * Quaternion::rotation_y(tilt * -1.0); next.foot_bl.scale = Vec3::one() * 0.96; @@ -234,7 +234,7 @@ impl Animation for RunAnimation { skeleton_attr.feet_b.2 + (foot4a * 0.5).max(0.0) * amplitude2 + 2.0 * canceler, ); next.foot_br.orientation = - Quaternion::rotation_x(amplitude2 * foot4b * -0.9 - 0.5 * canceler) + Quaternion::rotation_x(amplitude2 * foot4b * -0.5 - 0.5 * canceler) * Quaternion::rotation_y(tilt * -1.0); next.foot_br.scale = Vec3::one() * 0.96; next From 98fae000174ac5cf0c94abc6bb1d6d10ba6821cf Mon Sep 17 00:00:00 2001 From: jshipsey Date: Wed, 2 Sep 2020 01:14:50 -0400 Subject: [PATCH 17/28] species specific improvement --- .../quadruped_medium_central_manifest.ron | 4 +- .../quadruped_medium_lateral_manifest.ron | 40 ++++----- common/src/states/utils.rs | 2 +- voxygen/src/anim/src/quadruped_medium/mod.rs | 78 +++++++++------- voxygen/src/anim/src/quadruped_medium/run.rs | 74 ++++++++-------- voxygen/src/anim/src/theropod/idle.rs | 40 +++++---- voxygen/src/anim/src/theropod/jump.rs | 39 ++++---- voxygen/src/anim/src/theropod/run.rs | 88 ++++++++++--------- voxygen/src/scene/figure/mod.rs | 32 +++---- 9 files changed, 215 insertions(+), 182 deletions(-) diff --git a/assets/voxygen/voxel/quadruped_medium_central_manifest.ron b/assets/voxygen/voxel/quadruped_medium_central_manifest.ron index b02b199395..e3baa21581 100644 --- a/assets/voxygen/voxel/quadruped_medium_central_manifest.ron +++ b/assets/voxygen/voxel/quadruped_medium_central_manifest.ron @@ -325,7 +325,7 @@ central: ("npc.tiger.male.ears"), ), tail: ( - offset: (-1.5, -12.0, -1.0), + offset: (-1.5, -12.0, -10.0), central: ("npc.tiger.male.tail"), ), ), @@ -355,7 +355,7 @@ central: ("npc.tiger.male.ears"), ), tail: ( - offset: (-1.5, -12.0, -1.0), + offset: (-1.5, -12.0, -10.0), central: ("npc.tiger.male.tail"), ), ), diff --git a/assets/voxygen/voxel/quadruped_medium_lateral_manifest.ron b/assets/voxygen/voxel/quadruped_medium_lateral_manifest.ron index 19f77b2e19..3eefeef7c1 100644 --- a/assets/voxygen/voxel/quadruped_medium_lateral_manifest.ron +++ b/assets/voxygen/voxel/quadruped_medium_lateral_manifest.ron @@ -1,11 +1,11 @@ ({ (Grolgar, Male): ( leg_fl: ( - offset: (-2.5, -12.0, -7.5),//these are done very case by case + offset: (-2.5, -5.0, -10.0),//these are done very case by case lateral: ("npc.grolgar.male.leg_fl"), ), leg_fr: ( - offset: (-2.5, -12.0, -7.5), + offset: (-2.5, -5.0, -10.0), lateral: ("npc.grolgar.male.leg_fr"), ), leg_bl: ( @@ -17,11 +17,11 @@ lateral: ("npc.grolgar.male.leg_br"), ), foot_fl: ( - offset: (-2.5, -3.0, -6.0),//y pivot should be -1/4 of the y dimension of the model + offset: (-2.5, -2.0, -6.0),//y pivot should be -1/4 of the y dimension of the model lateral: ("npc.grolgar.male.foot_fl"), ), foot_fr: ( - offset: (-2.5, -3.0, -6.0),//y pivot should be -1/4 of the y dimension of the model + offset: (-2.5, -2.0, -6.0),//y pivot should be -1/4 of the y dimension of the model lateral: ("npc.grolgar.male.foot_fr"), ), foot_bl: ( @@ -35,11 +35,11 @@ ), (Grolgar, Female): ( leg_fl: ( - offset: (-2.5, -12.0, -7.5), + offset: (-2.5, -5.0, -10.0), lateral: ("npc.grolgar.male.leg_fl"), ), leg_fr: ( - offset: (-2.5, -12.0, -7.5), + offset: (-2.5, -5.0, -10.0), lateral: ("npc.grolgar.male.leg_fr"), ), leg_bl: ( @@ -51,11 +51,11 @@ lateral: ("npc.grolgar.male.leg_br"), ), foot_fl: ( - offset: (-2.5, -3.0, -6.0), + offset: (-2.5, -2.0, -6.0), lateral: ("npc.grolgar.male.foot_fl"), ), foot_fr: ( - offset: (-2.5, -3.0, -6.0), + offset: (-2.5, -2.0, -6.0), lateral: ("npc.grolgar.male.foot_fr"), ), foot_bl: ( @@ -341,19 +341,19 @@ ), (Tiger, Male): ( leg_fl: ( - offset: (-2.0, -3.0, -5.0), + offset: (-2.0, -3.0, -10.0), lateral: ("npc.tiger.male.leg_fl"), ), leg_fr: ( - offset: (-2.0, -3.0, -5.0), + offset: (-2.0, -3.0, -10.0), lateral: ("npc.tiger.male.leg_fr"), ), leg_bl: ( - offset: (-2.0, -3.0, -5.0), + offset: (-2.0, -3.0, -10.0), lateral: ("npc.tiger.male.leg_bl"), ), leg_br: ( - offset: (-2.0, -3.0, -5.0), + offset: (-2.0, -3.0, -10.0), lateral: ("npc.tiger.male.leg_br"), ), foot_fl: ( @@ -375,19 +375,19 @@ ), (Tiger, Female): ( leg_fl: ( - offset: (-2.0, -3.0, -5.0), + offset: (-2.0, -3.0, -10.0), lateral: ("npc.tiger.male.leg_fl"), ), leg_fr: ( - offset: (-2.0, -3.0, -5.0), + offset: (-2.0, -3.0, -10.0), lateral: ("npc.tiger.male.leg_fr"), ), leg_bl: ( - offset: (-2.0, -3.0, -5.0), + offset: (-2.0, -3.0, -10.0), lateral: ("npc.tiger.male.leg_bl"), ), leg_br: ( - offset: (-2.0, -3.0, -5.0), + offset: (-2.0, -3.0, -10.0), lateral: ("npc.tiger.male.leg_br"), ), foot_fl: ( @@ -569,11 +569,11 @@ lateral: ("npc.mouflon.male.foot_fr"), ), foot_bl: ( - offset: (-1.0, -2.0, -6.0), + offset: (-1.0, -2.0, -10.0), lateral: ("npc.mouflon.male.foot_bl"), ), foot_br: ( - offset: (-1.0, -2.0, -6.0), + offset: (-1.0, -2.0, -10.0), lateral: ("npc.mouflon.male.foot_br"), ), ), @@ -603,11 +603,11 @@ lateral: ("npc.mouflon.male.foot_fr"), ), foot_bl: ( - offset: (-1.0, -2.0, -6.0), + offset: (-1.0, -2.0, -10.0), lateral: ("npc.mouflon.male.foot_bl"), ), foot_br: ( - offset: (-1.0, -2.0, -6.0), + offset: (-1.0, -2.0, -10.0), lateral: ("npc.mouflon.male.foot_br"), ), ), diff --git a/common/src/states/utils.rs b/common/src/states/utils.rs index 1b50424c2e..dfbd747cce 100644 --- a/common/src/states/utils.rs +++ b/common/src/states/utils.rs @@ -32,7 +32,7 @@ impl Body { match self { Body::Humanoid(_) => 100.0, Body::QuadrupedSmall(_) => 125.0, - Body::QuadrupedMedium(_) => 180.0, + Body::QuadrupedMedium(_) => 30.0, Body::BirdMedium(_) => 80.0, Body::FishMedium(_) => 50.0, Body::Dragon(_) => 250.0, diff --git a/voxygen/src/anim/src/quadruped_medium/mod.rs b/voxygen/src/anim/src/quadruped_medium/mod.rs index 5de8fd9920..2fb77232a1 100644 --- a/voxygen/src/anim/src/quadruped_medium/mod.rs +++ b/voxygen/src/anim/src/quadruped_medium/mod.rs @@ -89,9 +89,10 @@ pub struct SkeletonAttr { feet_f: (f32, f32, f32), feet_b: (f32, f32, f32), scaler: f32, - dampen: f32, + startangle: f32, maximize: f32, tempo: f32, + spring: f32, } impl<'a> std::convert::TryFrom<&'a comp::Body> for SkeletonAttr { @@ -120,9 +121,10 @@ impl Default for SkeletonAttr { feet_f: (0.0, 0.0, 0.0), feet_b: (0.0, 0.0, 0.0), scaler: 0.0, - dampen: 0.0, + startangle: 0.0, maximize: 0.0, tempo: 0.0, + spring: 0.0, } } } @@ -183,7 +185,7 @@ impl<'a> From<&'a Body> for SkeletonAttr { (Tuskram, _) => (-9.0, 2.0), (Lion, _) => (-11.0, 1.0), (Tarasque, _) => (-11.0, 0.0), - (Tiger, _) => (-13.5, -7.0), + (Tiger, _) => (-13.5, 3.0), (Wolf, _) => (-11.0, 0.0), (Frostfang, _) => (-7.0, -3.5), (Mouflon, _) => (-10.5, 3.0), @@ -238,15 +240,15 @@ impl<'a> From<&'a Body> for SkeletonAttr { (Hirdrassil, _) => (2.5, 5.0), }, leg_f: match (body.species, body.body_type) { - (Grolgar, _) => (-7.0, 4.0, 0.0), + (Grolgar, _) => (7.0, -2.0, 2.0), (Saber, _) => (7.0, -4.0, -3.5), (Tuskram, _) => (6.0, -6.5, -0.5), (Lion, _) => (6.5, -6.5, -2.0), (Tarasque, _) => (7.0, -8.0, -6.0), - (Tiger, _) => (6.0, -5.0, -3.0), + (Tiger, _) => (6.0, -5.0, 1.0), (Wolf, _) => (4.5, -6.5, -1.5), (Frostfang, _) => (5.5, -5.5, -2.0), - (Mouflon, _) => (4.0, -5.0, -5.0), + (Mouflon, _) => (4.0, -5.0, -4.0), (Catoblepas, _) => (7.0, 2.0, -6.0), (Bonerattler, _) => (5.5, 5.0, -4.0), (Deer, _) => (3.5, -4.5, -3.5), @@ -258,41 +260,41 @@ impl<'a> From<&'a Body> for SkeletonAttr { (Tuskram, _) => (5.0, -5.5, -3.5), (Lion, _) => (6.0, -6.0, -2.0), (Tarasque, _) => (6.0, -6.5, -6.5), - (Tiger, _) => (6.0, -7.5, -3.0), + (Tiger, _) => (6.0, -7.5, 1.0), (Wolf, _) => (5.0, -6.5, -3.0), (Frostfang, _) => (3.5, -4.5, -2.0), - (Mouflon, _) => (3.5, -8.0, -4.5), + (Mouflon, _) => (3.5, -8.0, -3.5), (Catoblepas, _) => (6.0, -2.5, -2.5), (Bonerattler, _) => (6.0, -8.0, -4.0), (Deer, _) => (3.0, -6.5, -3.5), (Hirdrassil, _) => (4.0, -6.5, -3.0), }, feet_f: match (body.species, body.body_type) { - (Grolgar, _) => (0.0, -9.0, -7.0), + (Grolgar, _) => (0.0, -3.0, -9.0), (Saber, _) => (1.0, -3.5, -2.5), (Tuskram, _) => (0.5, 0.5, -9.0), (Lion, _) => (0.0, 0.0, -7.0), (Tarasque, _) => (1.0, 0.0, -3.0), - (Tiger, _) => (0.5, 0.0, -5.0), + (Tiger, _) => (0.5, 0.0, -9.0), (Wolf, _) => (0.5, 0.0, -2.0), (Frostfang, _) => (0.5, 1.5, -3.5), - (Mouflon, _) => (-0.5, -0.5, -1.5), + (Mouflon, _) => (-0.5, -0.5, -3.0), (Catoblepas, _) => (1.0, 4.0, -3.0), (Bonerattler, _) => (-0.5, -3.0, -2.5), (Deer, _) => (-0.5, -0.5, -2.5), (Hirdrassil, _) => (-0.5, -3.0, -3.5), }, feet_b: match (body.species, body.body_type) { - (Grolgar, _) => (0.0, 0.0, -5.0), + (Grolgar, _) => (0.0, -1.0, -5.0), (Saber, _) => (1.0, -1.0, -1.0), - (Tuskram, _) => (0.5, 0.0, -3.0), + (Tuskram, _) => (0.5, 0.0, -3.5), (Lion, _) => (0.5, 0.5, -5.5), (Tarasque, _) => (1.5, -1.0, -2.5), - (Tiger, _) => (1.0, 0.5, -4.0), + (Tiger, _) => (1.0, 0.5, -8.0), (Wolf, _) => (0.0, -1.0, -1.5), (Frostfang, _) => (0.0, -1.5, -3.5), - (Mouflon, _) => (-1.0, 0.0, -2.5), - (Catoblepas, _) => (0.5, 0.5, -3.0), + (Mouflon, _) => (-1.0, 0.0, -0.5), + (Catoblepas, _) => (0.5, 0.5, -4.0), (Bonerattler, _) => (0.0, 3.0, -2.5), (Deer, _) => (-1.0, -0.5, -2.0), (Hirdrassil, _) => (-1.0, -2.0, -4.5), @@ -312,20 +314,21 @@ impl<'a> From<&'a Body> for SkeletonAttr { (Deer, _) => (1.0), (Hirdrassil, _) => (1.0), }, - dampen: match (body.species, body.body_type) { - (Grolgar, _) => (0.5), - (Saber, _) => (0.5), - (Tuskram, _) => (0.6), - (Lion, _) => (0.8), - (Tarasque, _) => (0.6), - (Tiger, _) => (0.6), - (Wolf, _) => (1.0), - (Frostfang, _) => (1.0), - (Mouflon, _) => (1.0), - (Catoblepas, _) => (0.6), - (Bonerattler, _) => (0.6), - (Deer, _) => (1.0), - (Hirdrassil, _) => (1.0), + startangle: match (body.species, body.body_type) { + //changes the default angle of front feet + (Grolgar, _) => (-0.3), + (Saber, _) => (-0.2), + (Tuskram, _) => (0.3), + (Lion, _) => (0.2), + (Tarasque, _) => (0.2), + (Tiger, _) => (0.0), + (Wolf, _) => (0.0), + (Frostfang, _) => (0.0), + (Mouflon, _) => (0.0), + (Catoblepas, _) => (0.2), + (Bonerattler, _) => (0.2), + (Deer, _) => (0.0), + (Hirdrassil, _) => (0.0), }, maximize: match (body.species, body.body_type) { (Grolgar, _) => (2.0), @@ -357,6 +360,21 @@ impl<'a> From<&'a Body> for SkeletonAttr { (Deer, _) => (0.85), (Hirdrassil, _) => (0.85), }, + spring: match (body.species, body.body_type) { + (Grolgar, _) => (1.0), + (Saber, _) => (0.9), + (Tuskram, _) => (0.9), + (Lion, _) => (1.0), + (Tarasque, _) => (1.0), + (Tiger, _) => (1.0), + (Wolf, _) => (1.2), + (Frostfang, _) => (1.0), + (Mouflon, _) => (0.6), + (Catoblepas, _) => (0.7), + (Bonerattler, _) => (1.1), + (Deer, _) => (0.9), + (Hirdrassil, _) => (1.1), + }, } } } diff --git a/voxygen/src/anim/src/quadruped_medium/run.rs b/voxygen/src/anim/src/quadruped_medium/run.rs index 962498f883..eac5d982fd 100644 --- a/voxygen/src/anim/src/quadruped_medium/run.rs +++ b/voxygen/src/anim/src/quadruped_medium/run.rs @@ -25,16 +25,12 @@ impl Animation for RunAnimation { let speed = Vec2::::from(velocity).magnitude(); *rate = 1.0; //let increasefreqtest = (((1.0/speed)*3.0).round()).min(5.0); - let lab = 0.6; //6 + let lab = 0.72; //0.72 let amplitude = (speed / 24.0).max(0.25); let amplitude2 = (speed * 1.4 / 24.0).max(0.6); let amplitude3 = (speed / 24.0).max(0.35); - let speedmult = if speed > 0.0 { - 1.2 * (1.0 * skeleton_attr.tempo) - } else { - 0.9 * (1.0 * skeleton_attr.tempo) - }; - let canceler = speed / 25.0; + let speedmult = skeleton_attr.tempo; + let canceler = speed / 24.0; let short = (((1.0) / (0.72 + 0.28 @@ -60,7 +56,7 @@ impl Animation for RunAnimation { * 0.25, ); - let speedadjust = if speed < 5.0 { 0.0 } else { speed / 25.0 }; + let speedadjust = if speed < 5.0 { 0.0 } else { speed / 24.0 }; let shift1 = speedadjust - PI / 2.0 - speedadjust * PI * 3.0 / 4.0; let shift2 = speedadjust + PI / 2.0 + speedadjust * PI / 2.0; let shift3 = speedadjust + PI / 4.0 - speedadjust * PI / 4.0; @@ -68,10 +64,10 @@ impl Animation for RunAnimation { //FL let foot1a = - (anim_time as f32 * (16.0) * lab as f32 * speedmult + 0.0 + canceler * 0.08 + shift1) + (anim_time as f32 * (16.0) * lab as f32 * speedmult + 0.0 + canceler * 0.05 + shift1) .sin(); //1.5 let foot1b = - (anim_time as f32 * (16.0) * lab as f32 * speedmult + 1.57 + canceler * 0.08 + shift1) + (anim_time as f32 * (16.0) * lab as f32 * speedmult + 1.57 + canceler * 0.05 + shift1) .sin(); //1.9 //FR let foot2a = (anim_time as f32 * (16.0) * lab as f32 * speedmult + shift2).sin(); //1.2 @@ -81,10 +77,10 @@ impl Animation for RunAnimation { let foot3b = (anim_time as f32 * (16.0) * lab as f32 * speedmult + 1.57 + shift3).sin(); //0.4 //BR let foot4a = - (anim_time as f32 * (16.0) * lab as f32 * speedmult + 0.0 + canceler * 0.15 + shift4) + (anim_time as f32 * (16.0) * lab as f32 * speedmult + 0.0 + canceler * 0.05 + shift4) .sin(); //0.3 let foot4b = - (anim_time as f32 * (16.0) * lab as f32 * speedmult + 1.57 + canceler * 0.15 + shift4) + (anim_time as f32 * (16.0) * lab as f32 * speedmult + 1.57 + canceler * 0.05 + shift4) .sin(); //0.7 // let ori: Vec2 = Vec2::from(orientation); @@ -105,10 +101,11 @@ impl Animation for RunAnimation { //Gallop next.head_upper.position = Vec3::new(0.0, skeleton_attr.head_upper.0, skeleton_attr.head_upper.1); - next.head_upper.orientation = - Quaternion::rotation_x(look.y*0.3 / ((canceler).max(0.5)) + amplitude * short * -0.03 - 0.1) - * Quaternion::rotation_z(look.x*0.3 / ((canceler).max(0.5)) + tilt * -1.2) - * Quaternion::rotation_y(tilt * 0.8); + next.head_upper.orientation = Quaternion::rotation_x( + look.y * 0.3 / ((canceler).max(0.5)) + amplitude * short * -0.03 - 0.1, + ) * Quaternion::rotation_z( + look.x * 0.3 / ((canceler).max(0.5)) + tilt * -1.2, + ) * Quaternion::rotation_y(tilt * 0.8); next.head_upper.scale = Vec3::one(); next.head_lower.position = @@ -132,14 +129,15 @@ impl Animation for RunAnimation { skeleton_attr.torso_front.0, skeleton_attr.torso_front.1 + canceler * 1.0 - + canceler * shortalt * 2.5 + + canceler * shortalt * 2.5 * skeleton_attr.spring + x_tilt * 10.0 * canceler, ) * skeleton_attr.scaler / 11.0; - next.torso_front.orientation = - Quaternion::rotation_x((amplitude * (short * -0.13).max(-0.2)) + x_tilt * (canceler * 6.0).min(1.0)) - * Quaternion::rotation_y(tilt * 0.8) - * Quaternion::rotation_z(tilt * -1.5); + next.torso_front.orientation = Quaternion::rotation_x( + (amplitude * (short * -0.13).max(-0.2)) * skeleton_attr.spring + + x_tilt * (canceler * 6.0).min(1.0), + ) * Quaternion::rotation_y(tilt * 0.8) + * Quaternion::rotation_z(tilt * -1.5); next.torso_front.scale = Vec3::one() * skeleton_attr.scaler / 11.0; next.torso_back.position = Vec3::new( @@ -169,8 +167,8 @@ impl Animation for RunAnimation { next.leg_fr.position = Vec3::new( skeleton_attr.leg_f.0, - skeleton_attr.leg_f.1 + amplitude3 * foot2b * -2.2,////////////fix - skeleton_attr.leg_f.2 + amplitude3 * foot2a * 2.8, + skeleton_attr.leg_f.1 + amplitude3 * foot2b * -1.6, + skeleton_attr.leg_f.2 + amplitude3 * foot2a * 2.3, ); next.leg_fr.orientation = Quaternion::rotation_x(0.2 * canceler + amplitude3 * foot2a * 0.85) @@ -181,21 +179,23 @@ impl Animation for RunAnimation { next.leg_bl.position = Vec3::new( -skeleton_attr.leg_b.0, skeleton_attr.leg_b.1 + amplitude3 * foot3b * -1.1, - skeleton_attr.leg_b.2 + canceler + amplitude3 * foot3a * 1.6, + skeleton_attr.leg_b.2 + amplitude3 * foot3a * 1.1, ); - next.leg_bl.orientation = Quaternion::rotation_x(amplitude3 * foot1b * 0.85) - * Quaternion::rotation_y(tilt * 1.5) - * Quaternion::rotation_z(tilt * -1.5); + next.leg_bl.orientation = + Quaternion::rotation_x(canceler * -0.2 + amplitude3 * foot3b * -0.55) + * Quaternion::rotation_y(tilt * 1.5) + * Quaternion::rotation_z(tilt * -1.5); next.leg_bl.scale = Vec3::one() * 1.02; next.leg_br.position = Vec3::new( skeleton_attr.leg_b.0, skeleton_attr.leg_b.1 + amplitude3 * foot4b * -1.1, - skeleton_attr.leg_b.2 + canceler + amplitude3 * foot4a * 1.6, + skeleton_attr.leg_b.2 + amplitude3 * foot4a * 1.1, ); - next.leg_br.orientation = Quaternion::rotation_x(amplitude3 * foot2b * 0.85) - * Quaternion::rotation_y(tilt * 1.5) - * Quaternion::rotation_z(tilt * -1.5); + next.leg_br.orientation = + Quaternion::rotation_x(canceler * -0.2 + amplitude3 * foot4b * -0.55) + * Quaternion::rotation_y(tilt * 1.5) + * Quaternion::rotation_z(tilt * -1.5); next.leg_br.scale = Vec3::one() * 1.02; next.foot_fl.position = Vec3::new( @@ -204,7 +204,7 @@ impl Animation for RunAnimation { skeleton_attr.feet_f.2 + (foot1a * 2.0).max(-1.0) * amplitude2 + 1.0 * canceler, ); next.foot_fl.orientation = Quaternion::rotation_x( - ((1.0 - skeleton_attr.dampen) * -1.0) * canceler + amplitude2 * foot1b * -0.7, + skeleton_attr.startangle * canceler + amplitude2 * foot1b * -0.7, ) * Quaternion::rotation_y(tilt * -1.0); next.foot_fl.scale = Vec3::one() * 0.96; @@ -214,27 +214,27 @@ impl Animation for RunAnimation { skeleton_attr.feet_f.2 + (foot2a * 2.0).max(-1.0) * amplitude2 + 1.0 * canceler, ); next.foot_fr.orientation = Quaternion::rotation_x( - ((1.0 - skeleton_attr.dampen) * -1.0) * canceler + amplitude2 * foot2b * -0.7, + skeleton_attr.startangle * canceler + amplitude2 * foot2b * -0.7, ) * Quaternion::rotation_y(tilt * -1.0); next.foot_fr.scale = Vec3::one() * 0.96; next.foot_bl.position = Vec3::new( -skeleton_attr.feet_b.0, skeleton_attr.feet_b.1, - skeleton_attr.feet_b.2 + (foot3a * 0.5).max(0.0) * amplitude2 + 2.0 * canceler, + skeleton_attr.feet_b.2 + (foot3a * 0.8).max(0.0) * amplitude2 + 1.0 * canceler, ); next.foot_bl.orientation = - Quaternion::rotation_x(amplitude2 * foot3b * -0.5 - 0.5 * canceler) + Quaternion::rotation_x(amplitude2 * foot3b * -0.7 - 0.2 * canceler) * Quaternion::rotation_y(tilt * -1.0); next.foot_bl.scale = Vec3::one() * 0.96; next.foot_br.position = Vec3::new( skeleton_attr.feet_b.0, skeleton_attr.feet_b.1, - skeleton_attr.feet_b.2 + (foot4a * 0.5).max(0.0) * amplitude2 + 2.0 * canceler, + skeleton_attr.feet_b.2 + (foot4a * 0.8).max(0.0) * amplitude2 + 1.0 * canceler, ); next.foot_br.orientation = - Quaternion::rotation_x(amplitude2 * foot4b * -0.5 - 0.5 * canceler) + Quaternion::rotation_x(amplitude2 * foot4b * -0.7 - 0.2 * canceler) * Quaternion::rotation_y(tilt * -1.0); next.foot_br.scale = Vec3::one() * 0.96; next diff --git a/voxygen/src/anim/src/theropod/idle.rs b/voxygen/src/anim/src/theropod/idle.rs index b6c35f5d0c..62c4e8d03d 100644 --- a/voxygen/src/anim/src/theropod/idle.rs +++ b/voxygen/src/anim/src/theropod/idle.rs @@ -22,29 +22,35 @@ impl Animation for IdleAnimation { ) -> Self::Skeleton { let mut next = (*skeleton).clone(); - let breathe = (anim_time as f32 * 0.8).sin(); - - next.head.position = Vec3::new(0.0, skeleton_attr.head.0, skeleton_attr.head.1+breathe * 0.3); - next.head.orientation = Quaternion::rotation_x(breathe * 0.1-0.1); - next.head.scale = Vec3::one()*1.02; + next.head.position = Vec3::new( + 0.0, + skeleton_attr.head.0, + skeleton_attr.head.1 + breathe * 0.3, + ); + next.head.orientation = Quaternion::rotation_x(breathe * 0.1 - 0.1); + next.head.scale = Vec3::one() * 1.02; next.jaw.position = Vec3::new(0.0, skeleton_attr.jaw.0, skeleton_attr.jaw.1); next.jaw.orientation = Quaternion::rotation_x(breathe * 0.05); - next.jaw.scale = Vec3::one()*0.98; + next.jaw.scale = Vec3::one() * 0.98; - next.neck.position = Vec3::new(0.0, skeleton_attr.neck.0, skeleton_attr.neck.1+breathe * 0.2); + next.neck.position = Vec3::new( + 0.0, + skeleton_attr.neck.0, + skeleton_attr.neck.1 + breathe * 0.2, + ); next.neck.orientation = Quaternion::rotation_x(-0.1); - next.neck.scale = Vec3::one()*0.98; + next.neck.scale = Vec3::one() * 0.98; next.chest_front.position = Vec3::new( 0.0, skeleton_attr.chest_front.0, - skeleton_attr.chest_front.1+breathe * 0.3, - )/3.0; + skeleton_attr.chest_front.1 + breathe * 0.3, + ) / 3.0; next.chest_front.orientation = Quaternion::rotation_x(breathe * 0.04); - next.chest_front.scale = Vec3::one()/3.0; + next.chest_front.scale = Vec3::one() / 3.0; next.chest_back.position = Vec3::new(0.0, skeleton_attr.chest_back.0, skeleton_attr.chest_back.1); @@ -80,7 +86,7 @@ impl Animation for IdleAnimation { next.leg_l.position = Vec3::new( -skeleton_attr.leg.0, skeleton_attr.leg.1, - skeleton_attr.leg.2+breathe * 0.05, + skeleton_attr.leg.2 + breathe * 0.05, ); next.leg_l.orientation = Quaternion::rotation_z(0.0); next.leg_l.scale = Vec3::one(); @@ -88,7 +94,7 @@ impl Animation for IdleAnimation { next.leg_r.position = Vec3::new( skeleton_attr.leg.0, skeleton_attr.leg.1, - skeleton_attr.leg.2+breathe * 0.05, + skeleton_attr.leg.2 + breathe * 0.05, ); next.leg_r.orientation = Quaternion::rotation_z(0.0); next.leg_r.scale = Vec3::one(); @@ -96,18 +102,18 @@ impl Animation for IdleAnimation { next.foot_l.position = Vec3::new( -skeleton_attr.foot.0, skeleton_attr.foot.1, - skeleton_attr.foot.2+breathe * -0.35, + skeleton_attr.foot.2 + breathe * -0.35, ); next.foot_l.orientation = Quaternion::rotation_z(0.0); - next.foot_l.scale = Vec3::one()*1.02; + next.foot_l.scale = Vec3::one() * 1.02; next.foot_r.position = Vec3::new( skeleton_attr.foot.0, skeleton_attr.foot.1, - skeleton_attr.foot.2+breathe * -0.45, + skeleton_attr.foot.2 + breathe * -0.45, ); next.foot_r.orientation = Quaternion::rotation_z(0.0); - next.foot_r.scale = Vec3::one()*1.02; + next.foot_r.scale = Vec3::one() * 1.02; next } diff --git a/voxygen/src/anim/src/theropod/jump.rs b/voxygen/src/anim/src/theropod/jump.rs index 23c2a5f958..2fbb22287f 100644 --- a/voxygen/src/anim/src/theropod/jump.rs +++ b/voxygen/src/anim/src/theropod/jump.rs @@ -23,26 +23,33 @@ impl Animation for JumpAnimation { let breathe = (anim_time as f32 * 0.8).sin(); - - next.head.position = Vec3::new(0.0, skeleton_attr.head.0, skeleton_attr.head.1+breathe * 0.3); - next.head.orientation = Quaternion::rotation_x(breathe * 0.1-0.1); - next.head.scale = Vec3::one()*1.02; + next.head.position = Vec3::new( + 0.0, + skeleton_attr.head.0, + skeleton_attr.head.1 + breathe * 0.3, + ); + next.head.orientation = Quaternion::rotation_x(breathe * 0.1 - 0.1); + next.head.scale = Vec3::one() * 1.02; next.jaw.position = Vec3::new(0.0, skeleton_attr.jaw.0, skeleton_attr.jaw.1); next.jaw.orientation = Quaternion::rotation_x(breathe * 0.05); - next.jaw.scale = Vec3::one()*0.98; + next.jaw.scale = Vec3::one() * 0.98; - next.neck.position = Vec3::new(0.0, skeleton_attr.neck.0, skeleton_attr.neck.1+breathe * 0.2); + next.neck.position = Vec3::new( + 0.0, + skeleton_attr.neck.0, + skeleton_attr.neck.1 + breathe * 0.2, + ); next.neck.orientation = Quaternion::rotation_x(-0.1); - next.neck.scale = Vec3::one()*0.98; + next.neck.scale = Vec3::one() * 0.98; next.chest_front.position = Vec3::new( 0.0, skeleton_attr.chest_front.0, - skeleton_attr.chest_front.1+breathe * 0.3, - )/3.0; + skeleton_attr.chest_front.1 + breathe * 0.3, + ) / 3.0; next.chest_front.orientation = Quaternion::rotation_x(breathe * 0.04); - next.chest_front.scale = Vec3::one()/3.0; + next.chest_front.scale = Vec3::one() / 3.0; next.chest_back.position = Vec3::new(0.0, skeleton_attr.chest_back.0, skeleton_attr.chest_back.1); @@ -78,7 +85,7 @@ impl Animation for JumpAnimation { next.leg_l.position = Vec3::new( -skeleton_attr.leg.0, skeleton_attr.leg.1, - skeleton_attr.leg.2+breathe * 0.05, + skeleton_attr.leg.2 + breathe * 0.05, ); next.leg_l.orientation = Quaternion::rotation_z(0.0); next.leg_l.scale = Vec3::one(); @@ -86,7 +93,7 @@ impl Animation for JumpAnimation { next.leg_r.position = Vec3::new( skeleton_attr.leg.0, skeleton_attr.leg.1, - skeleton_attr.leg.2+breathe * 0.05, + skeleton_attr.leg.2 + breathe * 0.05, ); next.leg_r.orientation = Quaternion::rotation_z(0.0); next.leg_r.scale = Vec3::one(); @@ -94,18 +101,18 @@ impl Animation for JumpAnimation { next.foot_l.position = Vec3::new( -skeleton_attr.foot.0, skeleton_attr.foot.1, - skeleton_attr.foot.2+breathe * -0.35, + skeleton_attr.foot.2 + breathe * -0.35, ); next.foot_l.orientation = Quaternion::rotation_z(0.0); - next.foot_l.scale = Vec3::one()*1.02; + next.foot_l.scale = Vec3::one() * 1.02; next.foot_r.position = Vec3::new( skeleton_attr.foot.0, skeleton_attr.foot.1, - skeleton_attr.foot.2+breathe * -0.45, + skeleton_attr.foot.2 + breathe * -0.45, ); next.foot_r.orientation = Quaternion::rotation_z(0.0); - next.foot_r.scale = Vec3::one()*1.02; + next.foot_r.scale = Vec3::one() * 1.02; next } diff --git a/voxygen/src/anim/src/theropod/run.rs b/voxygen/src/anim/src/theropod/run.rs index edf9745990..a0f4868a26 100644 --- a/voxygen/src/anim/src/theropod/run.rs +++ b/voxygen/src/anim/src/theropod/run.rs @@ -28,7 +28,7 @@ impl Animation for RunAnimation { //let wave_slow = (anim_time as f32 * 6.5 + PI).sin(); let breathe = (anim_time as f32 * 0.8).sin(); - let topspeed = 18.0; + let topspeed = 18.0; let canceler = speed / topspeed; let lab = 0.5; //6 @@ -56,51 +56,57 @@ impl Animation for RunAnimation { (anim_time as f32 * (16.0) * lab as f32 * speedmult + PI * 3.0 / 8.0 - 0.5).sin(); //FL - let foot1a = - (anim_time as f32 * (16.0) * lab as f32 * speedmult + 0.0+PI ) - .sin(); //1.5 - let foot1b = - (anim_time as f32 * (16.0) * lab as f32 * speedmult + 1.57+PI ) - .sin(); //1.9 + let foot1a = (anim_time as f32 * (16.0) * lab as f32 * speedmult + 0.0 + PI).sin(); //1.5 + let foot1b = (anim_time as f32 * (16.0) * lab as f32 * speedmult + 1.57 + PI).sin(); //1.9 //FR - let foot2a = (anim_time as f32 * (16.0) * lab as f32 * speedmult ).sin(); //1.2 - let foot2b = (anim_time as f32 * (16.0) * lab as f32 * speedmult + 1.57 ).sin(); //1.6 + let foot2a = (anim_time as f32 * (16.0) * lab as f32 * speedmult).sin(); //1.2 + let foot2b = (anim_time as f32 * (16.0) * lab as f32 * speedmult + 1.57).sin(); //1.6 //BL //BR - next.head.position = Vec3::new(0.0, skeleton_attr.head.0, skeleton_attr.head.1+breathe * 0.3); - next.head.orientation = Quaternion::rotation_x(-0.1+short*-0.05)*Quaternion::rotation_z(shortalt*-0.2); - next.head.scale = Vec3::one()*1.02; + next.head.position = Vec3::new( + 0.0, + skeleton_attr.head.0, + skeleton_attr.head.1 + breathe * 0.3, + ); + next.head.orientation = + Quaternion::rotation_x(-0.1 + short * -0.05) * Quaternion::rotation_z(shortalt * -0.2); + next.head.scale = Vec3::one() * 1.02; next.jaw.position = Vec3::new(0.0, skeleton_attr.jaw.0, skeleton_attr.jaw.1); - next.jaw.orientation = Quaternion::rotation_x(short*-0.03); - next.jaw.scale = Vec3::one()*0.98; + next.jaw.orientation = Quaternion::rotation_x(short * -0.03); + next.jaw.scale = Vec3::one() * 0.98; next.neck.position = Vec3::new(0.0, skeleton_attr.neck.0, skeleton_attr.neck.1); - next.neck.orientation = Quaternion::rotation_x(-0.1+short*-0.04)*Quaternion::rotation_z(shortalt*-0.1); - next.neck.scale = Vec3::one()*0.98; + next.neck.orientation = + Quaternion::rotation_x(-0.1 + short * -0.04) * Quaternion::rotation_z(shortalt * -0.1); + next.neck.scale = Vec3::one() * 0.98; next.chest_front.position = Vec3::new( 0.0, skeleton_attr.chest_front.0, - skeleton_attr.chest_front.1+short * 0.5, - )/3.0; - next.chest_front.orientation = Quaternion::rotation_x(short * 0.07)*Quaternion::rotation_z(shortalt * 0.15); - next.chest_front.scale = Vec3::one()/3.0; + skeleton_attr.chest_front.1 + short * 0.5, + ) / 3.0; + next.chest_front.orientation = + Quaternion::rotation_x(short * 0.07) * Quaternion::rotation_z(shortalt * 0.15); + next.chest_front.scale = Vec3::one() / 3.0; next.chest_back.position = Vec3::new(0.0, skeleton_attr.chest_back.0, skeleton_attr.chest_back.1); - next.chest_back.orientation = Quaternion::rotation_x(short * -0.04)*Quaternion::rotation_z(shortalt * -0.15);; + next.chest_back.orientation = + Quaternion::rotation_x(short * -0.04) * Quaternion::rotation_z(shortalt * -0.15); next.chest_back.scale = Vec3::one(); next.tail_front.position = Vec3::new(0.0, skeleton_attr.tail_front.0, skeleton_attr.tail_front.1); - next.tail_front.orientation = Quaternion::rotation_x(0.1+short * -0.02)*Quaternion::rotation_z(shortalt*-0.1); + next.tail_front.orientation = + Quaternion::rotation_x(0.1 + short * -0.02) * Quaternion::rotation_z(shortalt * -0.1); next.tail_front.scale = Vec3::one(); next.tail_back.position = Vec3::new(0.0, skeleton_attr.tail_back.0, skeleton_attr.tail_back.1); - next.tail_back.orientation = Quaternion::rotation_x(0.2+short * -0.2)*Quaternion::rotation_z(shortalt*-0.2); + next.tail_back.orientation = + Quaternion::rotation_x(0.2 + short * -0.2) * Quaternion::rotation_z(shortalt * -0.2); next.tail_back.scale = Vec3::one(); next.hand_l.position = Vec3::new( @@ -108,7 +114,7 @@ impl Animation for RunAnimation { skeleton_attr.hand.1, skeleton_attr.hand.2, ); - next.hand_l.orientation = Quaternion::rotation_x( -0.2+amplitude3 * foot2a * 0.3); + next.hand_l.orientation = Quaternion::rotation_x(-0.2 + amplitude3 * foot2a * 0.3); next.hand_l.scale = Vec3::one(); next.hand_r.position = Vec3::new( @@ -116,7 +122,7 @@ impl Animation for RunAnimation { skeleton_attr.hand.1, skeleton_attr.hand.2, ); - next.hand_r.orientation = Quaternion::rotation_x( -0.2+amplitude3 * foot1a * 0.3); + next.hand_r.orientation = Quaternion::rotation_x(-0.2 + amplitude3 * foot1a * 0.3); next.hand_r.scale = Vec3::one(); next.leg_l.position = Vec3::new( @@ -124,10 +130,9 @@ impl Animation for RunAnimation { skeleton_attr.leg.1 + amplitude3 * foot1b * -1.3, skeleton_attr.leg.2 + amplitude3 * foot1a * 1.4, ); - next.leg_l.orientation = - Quaternion::rotation_x( -0.2+amplitude3 * foot1a * 0.2) - * Quaternion::rotation_z(foot1a*-0.3) - * Quaternion::rotation_y(0.0); + next.leg_l.orientation = Quaternion::rotation_x(-0.2 + amplitude3 * foot1a * 0.2) + * Quaternion::rotation_z(foot1a * -0.3) + * Quaternion::rotation_y(0.0); next.leg_l.scale = Vec3::one() * 1.0; next.leg_r.position = Vec3::new( @@ -135,30 +140,27 @@ impl Animation for RunAnimation { skeleton_attr.leg.1 + amplitude3 * foot2b * -1.3, skeleton_attr.leg.2 + amplitude3 * foot2a * 1.4, ); - next.leg_r.orientation = - Quaternion::rotation_x( -0.2+amplitude3 * foot2a * 0.2) - * Quaternion::rotation_z(foot2a*0.3) - * Quaternion::rotation_y(0.0); + next.leg_r.orientation = Quaternion::rotation_x(-0.2 + amplitude3 * foot2a * 0.2) + * Quaternion::rotation_z(foot2a * 0.3) + * Quaternion::rotation_y(0.0); next.leg_r.scale = Vec3::one() * 1.0; next.foot_l.position = Vec3::new( -skeleton_attr.foot.0, - skeleton_attr.foot.1+canceler*-2.0+ amplitude3 * foot1b * -2.0, - skeleton_attr.foot.2 +canceler*2.0+ (foot1a * 2.0).max(0.0) * amplitude2 , + skeleton_attr.foot.1 + canceler * -2.0 + amplitude3 * foot1b * -2.0, + skeleton_attr.foot.2 + canceler * 2.0 + (foot1a * 2.0).max(0.0) * amplitude2, ); - next.foot_l.orientation = Quaternion::rotation_x(-0.3+ - amplitude2 * foot1b * -0.35, - ) * Quaternion::rotation_y(0.0); + next.foot_l.orientation = Quaternion::rotation_x(-0.3 + amplitude2 * foot1b * -0.35) + * Quaternion::rotation_y(0.0); next.foot_l.scale = Vec3::one() * 0.96; next.foot_r.position = Vec3::new( skeleton_attr.foot.0, - skeleton_attr.foot.1+canceler*-2.0+ amplitude3 * foot2b * -2.0, - skeleton_attr.foot.2 +canceler*2.0+ (foot2a * 2.0).max(0.0) * amplitude2 , + skeleton_attr.foot.1 + canceler * -2.0 + amplitude3 * foot2b * -2.0, + skeleton_attr.foot.2 + canceler * 2.0 + (foot2a * 2.0).max(0.0) * amplitude2, ); - next.foot_r.orientation = Quaternion::rotation_x(-0.3+ - amplitude2 * foot2b * -0.35, - ) * Quaternion::rotation_y(0.0); + next.foot_r.orientation = Quaternion::rotation_x(-0.3 + amplitude2 * foot2b * -0.35) + * Quaternion::rotation_y(0.0); next.foot_r.scale = Vec3::one() * 0.96; next diff --git a/voxygen/src/scene/figure/mod.rs b/voxygen/src/scene/figure/mod.rs index 99cd5b040b..3fcce08a08 100644 --- a/voxygen/src/scene/figure/mod.rs +++ b/voxygen/src/scene/figure/mod.rs @@ -1123,15 +1123,13 @@ impl FigureMgr { ) }, // Running - (false, _, true) => { - anim::quadruped_small::RunAnimation::update_skeleton( - &QuadrupedSmallSkeleton::default(), - (vel.0.magnitude(), ori, state.last_ori, time, state.avg_vel), - state.state_time, - &mut state_animation_rate, - skeleton_attr, - ) - }, + (false, _, true) => anim::quadruped_small::RunAnimation::update_skeleton( + &QuadrupedSmallSkeleton::default(), + (vel.0.magnitude(), ori, state.last_ori, time, state.avg_vel), + state.state_time, + &mut state_animation_rate, + skeleton_attr, + ), // In air (false, _, false) => anim::quadruped_small::JumpAnimation::update_skeleton( &QuadrupedSmallSkeleton::default(), @@ -1225,13 +1223,15 @@ impl FigureMgr { ) }, // Running - (true, true, false) => anim::quadruped_medium::RunAnimation::update_skeleton( - &QuadrupedMediumSkeleton::default(), - (vel.0.magnitude(), ori, state.last_ori, time, state.avg_vel), - state.state_time, - &mut state_animation_rate, - skeleton_attr, - ), + (true, true, false) => { + anim::quadruped_medium::RunAnimation::update_skeleton( + &QuadrupedMediumSkeleton::default(), + (vel.0.magnitude(), ori, state.last_ori, time, state.avg_vel), + state.state_time, + &mut state_animation_rate, + skeleton_attr, + ) + }, //Swimming (false, _, true) => anim::quadruped_medium::RunAnimation::update_skeleton( &QuadrupedMediumSkeleton::default(), From 3e322952a423051f6722b0b80072c5af92493d0b Mon Sep 17 00:00:00 2001 From: jshipsey Date: Wed, 2 Sep 2020 02:03:14 -0400 Subject: [PATCH 18/28] general housekeeping --- ...t.ron => biped_large_central_manifest.ron} | 140 +++++------ ...t.ron => bird_medium_central_manifest.ron} | 96 ++++---- ...nifest.ron => dragon_central_manifest.ron} | 28 +-- ...anifest.ron => golem_central_manifest.ron} | 12 +- .../male/{head_upper.vox => head.vox} | Bin .../male/{head_lower.vox => neck.vox} | Bin .../male/{head_upper.vox => head.vox} | Bin .../male/{head_lower.vox => neck.vox} | Bin .../deer/female/{head_upper.vox => head.vox} | Bin .../deer/female/{head_lower.vox => neck.vox} | Bin .../deer/male/{head_upper.vox => head.vox} | Bin .../deer/male/{head_lower.vox => neck.vox} | Bin .../male/{head_upper.vox => head.vox} | Bin .../male/{head_lower.vox => neck.vox} | Bin .../grolgar/male/{head_upper.vox => head.vox} | Bin .../grolgar/male/{head_lower.vox => neck.vox} | Bin .../male/{head_upper.vox => head.vox} | Bin .../male/{head_lower.vox => neck.vox} | Bin .../lion/male/{head_upper.vox => head.vox} | Bin .../lion/male/{head_lower.vox => neck.vox} | Bin .../mouflon/male/{head_upper.vox => head.vox} | Bin .../mouflon/male/{head_lower.vox => neck.vox} | Bin .../saber/male/{head_upper.vox => head.vox} | Bin .../saber/male/{head_lower.vox => neck.vox} | Bin .../male/{head_upper.vox => head.vox} | Bin .../male/{head_lower.vox => neck.vox} | Bin .../tiger/male/{head_upper.vox => head.vox} | Bin .../tiger/male/{head_lower.vox => neck.vox} | Bin .../tuskram/male/{head_upper.vox => head.vox} | Bin .../tuskram/male/{head_lower.vox => neck.vox} | Bin .../wolf/male/{head_upper.vox => head.vox} | Bin .../wolf/male/{head_lower.vox => neck.vox} | Bin .../quadruped_medium_central_manifest.ron | 208 ++++++++-------- .../src/anim/src/quadruped_medium/alpha.rs | 16 +- voxygen/src/anim/src/quadruped_medium/idle.rs | 20 +- voxygen/src/anim/src/quadruped_medium/jump.rs | 16 +- voxygen/src/anim/src/quadruped_medium/mod.rs | 28 +-- voxygen/src/anim/src/quadruped_medium/run.rs | 16 +- voxygen/src/anim/src/theropod/run.rs | 1 - voxygen/src/scene/figure/load.rs | 226 +++++++++--------- voxygen/src/scene/figure/mod.rs | 2 +- 41 files changed, 404 insertions(+), 405 deletions(-) rename assets/voxygen/voxel/{biped_large_center_manifest.ron => biped_large_central_manifest.ron} (60%) rename assets/voxygen/voxel/{bird_medium_center_manifest.ron => bird_medium_central_manifest.ron} (61%) rename assets/voxygen/voxel/{dragon_center_manifest.ron => dragon_central_manifest.ron} (58%) rename assets/voxygen/voxel/{golem_center_manifest.ron => golem_central_manifest.ron} (60%) rename assets/voxygen/voxel/npc/bonerattler/male/{head_upper.vox => head.vox} (100%) rename assets/voxygen/voxel/npc/bonerattler/male/{head_lower.vox => neck.vox} (100%) rename assets/voxygen/voxel/npc/catoblepas/male/{head_upper.vox => head.vox} (100%) rename assets/voxygen/voxel/npc/catoblepas/male/{head_lower.vox => neck.vox} (100%) rename assets/voxygen/voxel/npc/deer/female/{head_upper.vox => head.vox} (100%) rename assets/voxygen/voxel/npc/deer/female/{head_lower.vox => neck.vox} (100%) rename assets/voxygen/voxel/npc/deer/male/{head_upper.vox => head.vox} (100%) rename assets/voxygen/voxel/npc/deer/male/{head_lower.vox => neck.vox} (100%) rename assets/voxygen/voxel/npc/frostfang/male/{head_upper.vox => head.vox} (100%) rename assets/voxygen/voxel/npc/frostfang/male/{head_lower.vox => neck.vox} (100%) rename assets/voxygen/voxel/npc/grolgar/male/{head_upper.vox => head.vox} (100%) rename assets/voxygen/voxel/npc/grolgar/male/{head_lower.vox => neck.vox} (100%) rename assets/voxygen/voxel/npc/hirdrassil/male/{head_upper.vox => head.vox} (100%) rename assets/voxygen/voxel/npc/hirdrassil/male/{head_lower.vox => neck.vox} (100%) rename assets/voxygen/voxel/npc/lion/male/{head_upper.vox => head.vox} (100%) rename assets/voxygen/voxel/npc/lion/male/{head_lower.vox => neck.vox} (100%) rename assets/voxygen/voxel/npc/mouflon/male/{head_upper.vox => head.vox} (100%) rename assets/voxygen/voxel/npc/mouflon/male/{head_lower.vox => neck.vox} (100%) rename assets/voxygen/voxel/npc/saber/male/{head_upper.vox => head.vox} (100%) rename assets/voxygen/voxel/npc/saber/male/{head_lower.vox => neck.vox} (100%) rename assets/voxygen/voxel/npc/tarasque/male/{head_upper.vox => head.vox} (100%) rename assets/voxygen/voxel/npc/tarasque/male/{head_lower.vox => neck.vox} (100%) rename assets/voxygen/voxel/npc/tiger/male/{head_upper.vox => head.vox} (100%) rename assets/voxygen/voxel/npc/tiger/male/{head_lower.vox => neck.vox} (100%) rename assets/voxygen/voxel/npc/tuskram/male/{head_upper.vox => head.vox} (100%) rename assets/voxygen/voxel/npc/tuskram/male/{head_lower.vox => neck.vox} (100%) rename assets/voxygen/voxel/npc/wolf/male/{head_upper.vox => head.vox} (100%) rename assets/voxygen/voxel/npc/wolf/male/{head_lower.vox => neck.vox} (100%) diff --git a/assets/voxygen/voxel/biped_large_center_manifest.ron b/assets/voxygen/voxel/biped_large_central_manifest.ron similarity index 60% rename from assets/voxygen/voxel/biped_large_center_manifest.ron rename to assets/voxygen/voxel/biped_large_central_manifest.ron index ff6e86fb2c..1be2239118 100644 --- a/assets/voxygen/voxel/biped_large_center_manifest.ron +++ b/assets/voxygen/voxel/biped_large_central_manifest.ron @@ -2,241 +2,241 @@ (Ogre, Male): ( head: ( offset: (-8.0, -6.0, -6.5), - center: ("npc.ogre.male.head"), + central: ("npc.ogre.male.head"), ), torso_upper: ( offset: (-8.0, -6.0, -8.0), - center: ("npc.ogre.male.torso_upper"), + central: ("npc.ogre.male.torso_upper"), ), torso_lower: ( offset: (-6.0, -5.5, -10.0), - center: ("npc.ogre.male.torso_lower"), + central: ("npc.ogre.male.torso_lower"), ), jaw: ( offset: (0.0, 0.0, 0.0), - center: ("armor.empty"), + central: ("armor.empty"), ), tail: ( offset: (0.0, 0.0, 0.0), - center: ("armor.empty"), + central: ("armor.empty"), ), second: ( offset: (0.0, 0.0, 0.0), - center: ("armor.empty"), + central: ("armor.empty"), ), main: ( offset: (-5.0, -5.5, -5.0), - center: ("npc.ogre.male.hammer"), + central: ("npc.ogre.male.hammer"), ) ), (Ogre, Female): ( head: ( offset: (-9.0, -5.5, -6.0), - center: ("npc.ogre.female..head"), + central: ("npc.ogre.female..head"), ), torso_upper: ( offset: (-6.0, -5.0, -6.0), - center: ("npc.ogre.female.torso_upper"), + central: ("npc.ogre.female.torso_upper"), ), torso_lower: ( offset: (-5.0, -4.5, -6.0), - center: ("npc.ogre.female.torso_lower"), + central: ("npc.ogre.female.torso_lower"), ), jaw: ( offset: (0.0, 0.0, 0.0), - center: ("armor.empty"), + central: ("armor.empty"), ), tail: ( offset: (0.0, 0.0, 0.0), - center: ("armor.empty"), + central: ("armor.empty"), ), second: ( offset: (0.0, 0.0, 0.0), - center: ("armor.empty"), + central: ("armor.empty"), ), main: ( offset: (-2.5, -5.5, -5.0), - center: ("npc.ogre.female.main"), + central: ("npc.ogre.female.main"), ) ), (Cyclops, Male): ( head: ( offset: (-7.0, -7.0, -6.5), - center: ("npc.cyclops.male.head"), + central: ("npc.cyclops.male.head"), ), torso_upper: ( offset: (-8.0, -6.0, -6.0), - center: ("npc.cyclops.male.torso_upper"), + central: ("npc.cyclops.male.torso_upper"), ), torso_lower: ( offset: (-6.0, -5.5, -12.0), - center: ("npc.cyclops.male.torso_lower"), + central: ("npc.cyclops.male.torso_lower"), ), jaw: ( offset: (0.0, 0.0, 0.0), - center: ("armor.empty"), + central: ("armor.empty"), ), tail: ( offset: (0.0, 0.0, 0.0), - center: ("armor.empty"), + central: ("armor.empty"), ), second: ( offset: (0.0, 0.0, 0.0), - center: ("armor.empty"), + central: ("armor.empty"), ), main: ( offset: (-5.0, -6.5, -4.0), - center: ("npc.cyclops.male.hammer"), + central: ("npc.cyclops.male.hammer"), ) ), (Cyclops, Female): ( head: ( offset: (-7.0, -7.0, -6.5), - center: ("npc.cyclops.male.head"), + central: ("npc.cyclops.male.head"), ), torso_upper: ( offset: (-8.0, -6.0, -6.0), - center: ("npc.cyclops.male.torso_upper"), + central: ("npc.cyclops.male.torso_upper"), ), torso_lower: ( offset: (-6.0, -5.5, -12.0), - center: ("npc.cyclops.male.torso_lower"), + central: ("npc.cyclops.male.torso_lower"), ), jaw: ( offset: (0.0, 0.0, 0.0), - center: ("armor.empty"), + central: ("armor.empty"), ), tail: ( offset: (0.0, 0.0, 0.0), - center: ("armor.empty"), + central: ("armor.empty"), ), second: ( offset: (0.0, 0.0, 0.0), - center: ("armor.empty"), + central: ("armor.empty"), ), main: ( offset: (-5.0, -6.5, -4.0), - center: ("npc.cyclops.female.hammer"), + central: ("npc.cyclops.female.hammer"), ) ), (Wendigo, Male): ( head: ( offset: (-15.0, -4.5, -9.5), - center: ("npc.wendigo.male.head"), + central: ("npc.wendigo.male.head"), ), torso_upper: ( offset: (-6.0, -5.5, -6.5), - center: ("npc.wendigo.male.torso_upper"), + central: ("npc.wendigo.male.torso_upper"), ), torso_lower: ( offset: (-4.0, -2.0, -4.0), - center: ("npc.wendigo.male.torso_lower"), + central: ("npc.wendigo.male.torso_lower"), ), jaw: ( offset: (0.0, 0.0, 0.0), - center: ("armor.empty"), + central: ("armor.empty"), ), tail: ( offset: (0.0, 0.0, 0.0), - center: ("armor.empty"), + central: ("armor.empty"), ), second: ( offset: (0.0, 0.0, 0.0), - center: ("armor.empty"), + central: ("armor.empty"), ), main: ( offset: (-5.0, -6.5, -4.0), - center: ("npc.wendigo.male.hammer"), + central: ("npc.wendigo.male.hammer"), ) ), (Wendigo, Female): ( head: ( offset: (-15.0, -4.5, -9.5), - center: ("npc.wendigo.male.head"), + central: ("npc.wendigo.male.head"), ), torso_upper: ( offset: (-6.0, -5.5, -6.5), - center: ("npc.wendigo.male.torso_upper"), + central: ("npc.wendigo.male.torso_upper"), ), torso_lower: ( offset: (-4.0, -2.0, -4.0), - center: ("npc.wendigo.male.torso_lower"), + central: ("npc.wendigo.male.torso_lower"), ), jaw: ( offset: (0.0, 0.0, 0.0), - center: ("armor.empty"), + central: ("armor.empty"), ), tail: ( offset: (0.0, 0.0, 0.0), - center: ("armor.empty"), + central: ("armor.empty"), ), second: ( offset: (0.0, 0.0, 0.0), - center: ("armor.empty"), + central: ("armor.empty"), ), main: ( offset: (-5.0, -6.5, -4.0), - center: ("npc.wendigo.male.hammer"), + central: ("npc.wendigo.male.hammer"), ) ), (Troll, Male): ( head: ( offset: (-8.0, -8.5, -9.0), - center: ("npc.troll.male.head"), + central: ("npc.troll.male.head"), ), torso_upper: ( offset: (-8.0, -7.5, -11.0), - center: ("npc.troll.male.torso_upper"), + central: ("npc.troll.male.torso_upper"), ), torso_lower: ( offset: (-6.0, -3.5, -5.0), - center: ("npc.troll.male.torso_lower"), + central: ("npc.troll.male.torso_lower"), ), jaw: ( offset: (-4.0, 0.0, -4.5), - center: ("npc.troll.male.jaw"), + central: ("npc.troll.male.jaw"), ), tail: ( offset: (0.0, 0.0, 0.0), - center: ("armor.empty"), + central: ("armor.empty"), ), second: ( offset: (0.0, 0.0, 0.0), - center: ("armor.empty"), + central: ("armor.empty"), ), main: ( offset: (-5.0, -6.5, -4.0), - center: ("npc.troll.male.hammer"), + central: ("npc.troll.male.hammer"), ) ), (Troll, Female): ( head: ( offset: (-8.0, -8.5, -9.0), - center: ("npc.troll.male.head"), + central: ("npc.troll.male.head"), ), torso_upper: ( offset: (-8.0, -7.5, -11.0), - center: ("npc.troll.male.torso_upper"), + central: ("npc.troll.male.torso_upper"), ), torso_lower: ( offset: (-6.0, -3.5, -5.0), - center: ("npc.troll.male.torso_lower"), + central: ("npc.troll.male.torso_lower"), ), jaw: ( offset: (-4.0, 0.0, -4.5), - center: ("npc.troll.male.jaw"), + central: ("npc.troll.male.jaw"), ), tail: ( offset: (0.0, 0.0, 0.0), - center: ("armor.empty"), + central: ("armor.empty"), ), second: ( offset: (0.0, 0.0, 0.0), - center: ("armor.empty"), + central: ("armor.empty"), ), main: ( offset: (-5.0, -6.5, -4.0), - center: ("npc.troll.female.hammer"), + central: ("npc.troll.female.hammer"), ) ), @@ -244,62 +244,62 @@ (Dullahan, Male): ( head: ( offset: (-8.0, -5.0, -6.0), - center: ("armor.empty"), + central: ("armor.empty"), ), torso_upper: ( offset: (-9.0, -7.5, -7.0), - center: ("npc.dullahan.male.torso_upper"), + central: ("npc.dullahan.male.torso_upper"), ), torso_lower: ( offset: (-8.0, -6.0, -9.0), - center: ("npc.dullahan.male.torso_lower"), + central: ("npc.dullahan.male.torso_lower"), ), jaw: ( offset: (0.0, 0.0, 0.0), - center: ("armor.empty"), + central: ("armor.empty"), ), tail: ( offset: (0.0, 0.0, 0.0), - center: ("armor.empty"), + central: ("armor.empty"), ), second: ( offset: (0.0, 0.0, 0.0), - center: ("armor.empty"), + central: ("armor.empty"), ), main: ( offset: (-5.0, -6.5, -4.0), - center: ("npc.cyclops.male.hammer"), + central: ("npc.cyclops.male.hammer"), ) ), (Dullahan, Female): ( head: ( offset: (-8.0, -5.0, -6.0), - center: ("armor.empty"), + central: ("armor.empty"), ), torso_upper: ( offset: (-9.0, -7.5, -7.0), - center: ("npc.dullahan.male.torso_upper"), + central: ("npc.dullahan.male.torso_upper"), ), torso_lower: ( offset: (-8.0, -6.0, -9.0), - center: ("npc.dullahan.male.torso_lower"), + central: ("npc.dullahan.male.torso_lower"), ), jaw: ( offset: (0.0, 0.0, 0.0), - center: ("armor.empty"), + central: ("armor.empty"), ), tail: ( offset: (0.0, 0.0, 0.0), - center: ("armor.empty"), + central: ("armor.empty"), ), second: ( offset: (0.0, 0.0, 0.0), - center: ("armor.empty"), + central: ("armor.empty"), ), main: ( offset: (-5.0, -6.5, -4.0), - center: ("npc.cyclops.male.hammer"), + central: ("npc.cyclops.male.hammer"), ) ), }) diff --git a/assets/voxygen/voxel/bird_medium_center_manifest.ron b/assets/voxygen/voxel/bird_medium_central_manifest.ron similarity index 61% rename from assets/voxygen/voxel/bird_medium_center_manifest.ron rename to assets/voxygen/voxel/bird_medium_central_manifest.ron index 6657154280..87bf41bdf7 100644 --- a/assets/voxygen/voxel/bird_medium_center_manifest.ron +++ b/assets/voxygen/voxel/bird_medium_central_manifest.ron @@ -2,225 +2,225 @@ (Duck, Male): ( head: ( offset: (-1.5, -2.0, -1.5), - center: ("npc.duck.male.head"), + central: ("npc.duck.male.head"), ), torso: ( offset: (-2.5, -3.0, -2.0), - center: ("npc.duck.male.torso"), + central: ("npc.duck.male.torso"), ), tail: ( offset: (-1.5, -0.5, -2.5), - center: ("npc.duck.male.tail"), + central: ("npc.duck.male.tail"), ) ), (Duck, Female): ( head: ( offset: (-1.5, -2.0, -1.5), - center: ("npc.duck.female.head"), + central: ("npc.duck.female.head"), ), torso: ( offset: (-2.5, -3.0, -2.0), - center: ("npc.duck.female.torso"), + central: ("npc.duck.female.torso"), ), tail: ( offset: (-1.5, -0.5, -2.5), - center: ("npc.duck.female.tail"), + central: ("npc.duck.female.tail"), ) ), (Chicken, Male): ( head: ( offset: (-1.5, -2.0, -3.5), - center: ("npc.chicken.male.head"), + central: ("npc.chicken.male.head"), ), torso: ( offset: (-2.5, -3.0, -2.0), - center: ("npc.chicken.male.torso"), + central: ("npc.chicken.male.torso"), ), tail: ( offset: (-1.5, -2.5, -3.5), - center: ("npc.chicken.male.tail"), + central: ("npc.chicken.male.tail"), ) ), (Chicken, Female): ( head: ( offset: (-1.5, -2.0, -2.5), - center: ("npc.chicken.female.head"), + central: ("npc.chicken.female.head"), ), torso: ( offset: (-2.5, -3.0, -2.0), - center: ("npc.chicken.female.torso"), + central: ("npc.chicken.female.torso"), ), tail: ( offset: (-1.5, -0.5, -2.5), - center: ("npc.chicken.female.tail"), + central: ("npc.chicken.female.tail"), ) ), (Goose, Male): ( head: ( offset: (-2.0, -3.5, -0.0), - center: ("npc.goose.male.head"), + central: ("npc.goose.male.head"), ), torso: ( offset: (-3.5, -4.5, -3.0), - center: ("npc.goose.male.torso"), + central: ("npc.goose.male.torso"), ), tail: ( offset: (-2.0, -1.0, -3.5), - center: ("npc.goose.male.tail"), + central: ("npc.goose.male.tail"), ) ), (Goose, Female): ( head: ( offset: (-2.0, -3.5, -0.0), - center: ("npc.goose.male.head"), + central: ("npc.goose.male.head"), ), torso: ( offset: (-3.5, -4.5, -3.0), - center: ("npc.goose.male.torso"), + central: ("npc.goose.male.torso"), ), tail: ( offset: (-2.0, -1.0, -3.5), - center: ("npc.goose.male.tail"), + central: ("npc.goose.male.tail"), ) ), (Peacock, Male): ( head: ( offset: (-2.0, -1.5, -0.0), - center: ("npc.peacock.male.head"), + central: ("npc.peacock.male.head"), ), torso: ( offset: (-2.5, -5.5, -4.5), - center: ("npc.peacock.male.torso"), + central: ("npc.peacock.male.torso"), ), tail: ( offset: (-3.0, -1.5, -5.0), - center: ("npc.peacock.male.tail"), + central: ("npc.peacock.male.tail"), ) ), (Peacock, Female): ( head: ( offset: (-2.0, -1.5, -0.0), - center: ("npc.peacock.female.head"), + central: ("npc.peacock.female.head"), ), torso: ( offset: (-2.5, -5.5, -4.5), - center: ("npc.peacock.female.torso"), + central: ("npc.peacock.female.torso"), ), tail: ( offset: (-3.0, -1.5, -5.0), - center: ("npc.peacock.female.tail"), + central: ("npc.peacock.female.tail"), ) ), (Eagle, Male): ( head: ( offset: (-2.0, -2.0, -3.5), - center: ("npc.eagle.male.head"), + central: ("npc.eagle.male.head"), ), torso: ( offset: (-3.0, -4.5, -4.5), - center: ("npc.eagle.male.torso"), + central: ("npc.eagle.male.torso"), ), tail: ( offset: (-2.0, -3.5, -3.5), - center: ("npc.eagle.male.tail"), + central: ("npc.eagle.male.tail"), ) ), (Eagle, Female): ( head: ( offset: (-2.0, -2.0, -3.5), - center: ("npc.eagle.male.head"), + central: ("npc.eagle.male.head"), ), torso: ( offset: (-3.0, -4.5, -4.5), - center: ("npc.eagle.male.torso"), + central: ("npc.eagle.male.torso"), ), tail: ( offset: (-2.0, -3.5, -3.5), - center: ("npc.eagle.male.tail"), + central: ("npc.eagle.male.tail"), ) ), (Snowyowl, Male): ( head: ( offset: (-3.5, -4.5, -4.0), - center: ("npc.snowyowl.male.head"), + central: ("npc.snowyowl.male.head"), ), torso: ( offset: (-3.5, -5.0, -3.0), - center: ("npc.snowyowl.male.torso"), + central: ("npc.snowyowl.male.torso"), ), tail: ( offset: (-2.5, -3.0, -2.0), - center: ("npc.snowyowl.male.tail"), + central: ("npc.snowyowl.male.tail"), ) ), (Snowyowl, Female): ( head: ( offset: (-3.5, -4.5, -4.0), - center: ("npc.snowyowl.male.head"), + central: ("npc.snowyowl.male.head"), ), torso: ( offset: (-3.5, -5.0, -3.0), - center: ("npc.snowyowl.male.torso"), + central: ("npc.snowyowl.male.torso"), ), tail: ( offset: (-2.5, -3.0, -2.0), - center: ("npc.snowyowl.male.tail"), + central: ("npc.snowyowl.male.tail"), ) ), (Parrot, Male): ( head: ( offset: (-1.5, -1.5, -2.5), - center: ("npc.parrot.male.head"), + central: ("npc.parrot.male.head"), ), torso: ( offset: (-1.5, -3.5, -3.5), - center: ("npc.parrot.male.torso"), + central: ("npc.parrot.male.torso"), ), tail: ( offset: (-1.5, -4.5, -1.5), - center: ("npc.parrot.male.tail"), + central: ("npc.parrot.male.tail"), ) ), (Parrot, Female): ( head: ( offset: (-1.5, -1.5, -2.5), - center: ("npc.parrot.male.head"), + central: ("npc.parrot.male.head"), ), torso: ( offset: (-1.5, -3.5, -3.5), - center: ("npc.parrot.male.torso"), + central: ("npc.parrot.male.torso"), ), tail: ( offset: (-1.5, -4.5, -1.5), - center: ("npc.parrot.male.tail"), + central: ("npc.parrot.male.tail"), ) ), (Cockatrice, Male): ( head: ( offset: (-2.5, 0.0, -8.0), - center: ("npc.cockatrice.male.head"), + central: ("npc.cockatrice.male.head"), ), torso: ( offset: (-3.5, -6.5, -7.5), - center: ("npc.cockatrice.male.torso"), + central: ("npc.cockatrice.male.torso"), ), tail: ( offset: (-1.5, -3.5, -4.0), - center: ("npc.cockatrice.male.tail"), + central: ("npc.cockatrice.male.tail"), ) ), (Cockatrice, Female): ( head: ( offset: (-2.5, 0.0, -8.0), - center: ("npc.cockatrice.male.head"), + central: ("npc.cockatrice.male.head"), ), torso: ( offset: (-3.5, -6.5, -7.5), - center: ("npc.cockatrice.male.torso"), + central: ("npc.cockatrice.male.torso"), ), tail: ( offset: (-1.5, -3.5, -4.0), - center: ("npc.cockatrice.male.tail"), + central: ("npc.cockatrice.male.tail"), ) ), }) \ No newline at end of file diff --git a/assets/voxygen/voxel/dragon_center_manifest.ron b/assets/voxygen/voxel/dragon_central_manifest.ron similarity index 58% rename from assets/voxygen/voxel/dragon_center_manifest.ron rename to assets/voxygen/voxel/dragon_central_manifest.ron index 317e5183b1..e19af6fc92 100644 --- a/assets/voxygen/voxel/dragon_center_manifest.ron +++ b/assets/voxygen/voxel/dragon_central_manifest.ron @@ -2,61 +2,61 @@ (Reddragon, Male): ( upper: ( offset: (-6.5, -2.0, -6.0), - center: ("npc.reddragon.male.head_upper"), + central: ("npc.reddragon.male.head_upper"), ), lower: ( offset: (-2.5, -2.0, -5.0), - center: ("npc.reddragon.male.head_lower"), + central: ("npc.reddragon.male.head_lower"), ), jaw: ( offset: (-3.5, -2.0, -1.5), - center: ("npc.reddragon.male.jaw"), + central: ("npc.reddragon.male.jaw"), ), chest_front: ( offset: (-6.5, -6.0, -7.5), - center: ("npc.reddragon.male.chest_front"), + central: ("npc.reddragon.male.chest_front"), ), chest_rear: ( offset: (-6.5, -13.0, -7.0), - center: ("npc.reddragon.male.chest_rear"), + central: ("npc.reddragon.male.chest_rear"), ), tail_front: ( offset: (-2.5, -12.0, -3.5), - center: ("npc.reddragon.male.tail_front"), + central: ("npc.reddragon.male.tail_front"), ), tail_rear: ( offset: (-3.5, -16.0, -3.0), - center: ("npc.reddragon.male.tail_rear"), + central: ("npc.reddragon.male.tail_rear"), ) ), (Reddragon, Female): ( upper: ( offset: (-6.5, -2.0, -6.0), - center: ("npc.reddragon.male.head_upper"), + central: ("npc.reddragon.male.head_upper"), ), lower: ( offset: (-2.5, -2.0, -5.0), - center: ("npc.reddragon.male.head_lower"), + central: ("npc.reddragon.male.head_lower"), ), jaw: ( offset: (-3.5, -2.0, -1.5), - center: ("npc.reddragon.male.jaw"), + central: ("npc.reddragon.male.jaw"), ), chest_front: ( offset: (-6.5, -6.0, -7.5), - center: ("npc.reddragon.male.chest_front"), + central: ("npc.reddragon.male.chest_front"), ), chest_rear: ( offset: (-6.5, -13.0, -7.0), - center: ("npc.reddragon.male.chest_rear"), + central: ("npc.reddragon.male.chest_rear"), ), tail_front: ( offset: (-2.5, -12.0, -3.5), - center: ("npc.reddragon.male.tail_front"), + central: ("npc.reddragon.male.tail_front"), ), tail_rear: ( offset: (-3.5, -16.0, -3.0), - center: ("npc.reddragon.male.tail_rear"), + central: ("npc.reddragon.male.tail_rear"), ) ), }) diff --git a/assets/voxygen/voxel/golem_center_manifest.ron b/assets/voxygen/voxel/golem_central_manifest.ron similarity index 60% rename from assets/voxygen/voxel/golem_center_manifest.ron rename to assets/voxygen/voxel/golem_central_manifest.ron index 12d3161079..c225ebdfd9 100644 --- a/assets/voxygen/voxel/golem_center_manifest.ron +++ b/assets/voxygen/voxel/golem_central_manifest.ron @@ -2,29 +2,29 @@ (StoneGolem, Male): ( head: ( offset: (-3.5, -4.0, -0.0), - center: ("npc.stonegolem.male.head"), + central: ("npc.stonegolem.male.head"), ), torso_upper: ( offset: (-10.5, -10.5, -10.5), - center: ("npc.stonegolem.male.chest_upper"), + central: ("npc.stonegolem.male.chest_upper"), ), torso_lower: ( offset: (-4.5, -4.5, -7.0), - center: ("npc.stonegolem.male.chest_lower"), + central: ("npc.stonegolem.male.chest_lower"), ), ), (StoneGolem, Female): ( head: ( offset: (-3.5, -4.0, -0.0), - center: ("npc.stonegolem.male.head"), + central: ("npc.stonegolem.male.head"), ), torso_upper: ( offset: (-10.5, -10.5, -10.5), - center: ("npc.stonegolem.male.chest_upper"), + central: ("npc.stonegolem.male.chest_upper"), ), torso_lower: ( offset: (-4.5, -4.5, -7.0), - center: ("npc.stonegolem.male.chest_lower"), + central: ("npc.stonegolem.male.chest_lower"), ), ), }) diff --git a/assets/voxygen/voxel/npc/bonerattler/male/head_upper.vox b/assets/voxygen/voxel/npc/bonerattler/male/head.vox similarity index 100% rename from assets/voxygen/voxel/npc/bonerattler/male/head_upper.vox rename to assets/voxygen/voxel/npc/bonerattler/male/head.vox diff --git a/assets/voxygen/voxel/npc/bonerattler/male/head_lower.vox b/assets/voxygen/voxel/npc/bonerattler/male/neck.vox similarity index 100% rename from assets/voxygen/voxel/npc/bonerattler/male/head_lower.vox rename to assets/voxygen/voxel/npc/bonerattler/male/neck.vox diff --git a/assets/voxygen/voxel/npc/catoblepas/male/head_upper.vox b/assets/voxygen/voxel/npc/catoblepas/male/head.vox similarity index 100% rename from assets/voxygen/voxel/npc/catoblepas/male/head_upper.vox rename to assets/voxygen/voxel/npc/catoblepas/male/head.vox diff --git a/assets/voxygen/voxel/npc/catoblepas/male/head_lower.vox b/assets/voxygen/voxel/npc/catoblepas/male/neck.vox similarity index 100% rename from assets/voxygen/voxel/npc/catoblepas/male/head_lower.vox rename to assets/voxygen/voxel/npc/catoblepas/male/neck.vox diff --git a/assets/voxygen/voxel/npc/deer/female/head_upper.vox b/assets/voxygen/voxel/npc/deer/female/head.vox similarity index 100% rename from assets/voxygen/voxel/npc/deer/female/head_upper.vox rename to assets/voxygen/voxel/npc/deer/female/head.vox diff --git a/assets/voxygen/voxel/npc/deer/female/head_lower.vox b/assets/voxygen/voxel/npc/deer/female/neck.vox similarity index 100% rename from assets/voxygen/voxel/npc/deer/female/head_lower.vox rename to assets/voxygen/voxel/npc/deer/female/neck.vox diff --git a/assets/voxygen/voxel/npc/deer/male/head_upper.vox b/assets/voxygen/voxel/npc/deer/male/head.vox similarity index 100% rename from assets/voxygen/voxel/npc/deer/male/head_upper.vox rename to assets/voxygen/voxel/npc/deer/male/head.vox diff --git a/assets/voxygen/voxel/npc/deer/male/head_lower.vox b/assets/voxygen/voxel/npc/deer/male/neck.vox similarity index 100% rename from assets/voxygen/voxel/npc/deer/male/head_lower.vox rename to assets/voxygen/voxel/npc/deer/male/neck.vox diff --git a/assets/voxygen/voxel/npc/frostfang/male/head_upper.vox b/assets/voxygen/voxel/npc/frostfang/male/head.vox similarity index 100% rename from assets/voxygen/voxel/npc/frostfang/male/head_upper.vox rename to assets/voxygen/voxel/npc/frostfang/male/head.vox diff --git a/assets/voxygen/voxel/npc/frostfang/male/head_lower.vox b/assets/voxygen/voxel/npc/frostfang/male/neck.vox similarity index 100% rename from assets/voxygen/voxel/npc/frostfang/male/head_lower.vox rename to assets/voxygen/voxel/npc/frostfang/male/neck.vox diff --git a/assets/voxygen/voxel/npc/grolgar/male/head_upper.vox b/assets/voxygen/voxel/npc/grolgar/male/head.vox similarity index 100% rename from assets/voxygen/voxel/npc/grolgar/male/head_upper.vox rename to assets/voxygen/voxel/npc/grolgar/male/head.vox diff --git a/assets/voxygen/voxel/npc/grolgar/male/head_lower.vox b/assets/voxygen/voxel/npc/grolgar/male/neck.vox similarity index 100% rename from assets/voxygen/voxel/npc/grolgar/male/head_lower.vox rename to assets/voxygen/voxel/npc/grolgar/male/neck.vox diff --git a/assets/voxygen/voxel/npc/hirdrassil/male/head_upper.vox b/assets/voxygen/voxel/npc/hirdrassil/male/head.vox similarity index 100% rename from assets/voxygen/voxel/npc/hirdrassil/male/head_upper.vox rename to assets/voxygen/voxel/npc/hirdrassil/male/head.vox diff --git a/assets/voxygen/voxel/npc/hirdrassil/male/head_lower.vox b/assets/voxygen/voxel/npc/hirdrassil/male/neck.vox similarity index 100% rename from assets/voxygen/voxel/npc/hirdrassil/male/head_lower.vox rename to assets/voxygen/voxel/npc/hirdrassil/male/neck.vox diff --git a/assets/voxygen/voxel/npc/lion/male/head_upper.vox b/assets/voxygen/voxel/npc/lion/male/head.vox similarity index 100% rename from assets/voxygen/voxel/npc/lion/male/head_upper.vox rename to assets/voxygen/voxel/npc/lion/male/head.vox diff --git a/assets/voxygen/voxel/npc/lion/male/head_lower.vox b/assets/voxygen/voxel/npc/lion/male/neck.vox similarity index 100% rename from assets/voxygen/voxel/npc/lion/male/head_lower.vox rename to assets/voxygen/voxel/npc/lion/male/neck.vox diff --git a/assets/voxygen/voxel/npc/mouflon/male/head_upper.vox b/assets/voxygen/voxel/npc/mouflon/male/head.vox similarity index 100% rename from assets/voxygen/voxel/npc/mouflon/male/head_upper.vox rename to assets/voxygen/voxel/npc/mouflon/male/head.vox diff --git a/assets/voxygen/voxel/npc/mouflon/male/head_lower.vox b/assets/voxygen/voxel/npc/mouflon/male/neck.vox similarity index 100% rename from assets/voxygen/voxel/npc/mouflon/male/head_lower.vox rename to assets/voxygen/voxel/npc/mouflon/male/neck.vox diff --git a/assets/voxygen/voxel/npc/saber/male/head_upper.vox b/assets/voxygen/voxel/npc/saber/male/head.vox similarity index 100% rename from assets/voxygen/voxel/npc/saber/male/head_upper.vox rename to assets/voxygen/voxel/npc/saber/male/head.vox diff --git a/assets/voxygen/voxel/npc/saber/male/head_lower.vox b/assets/voxygen/voxel/npc/saber/male/neck.vox similarity index 100% rename from assets/voxygen/voxel/npc/saber/male/head_lower.vox rename to assets/voxygen/voxel/npc/saber/male/neck.vox diff --git a/assets/voxygen/voxel/npc/tarasque/male/head_upper.vox b/assets/voxygen/voxel/npc/tarasque/male/head.vox similarity index 100% rename from assets/voxygen/voxel/npc/tarasque/male/head_upper.vox rename to assets/voxygen/voxel/npc/tarasque/male/head.vox diff --git a/assets/voxygen/voxel/npc/tarasque/male/head_lower.vox b/assets/voxygen/voxel/npc/tarasque/male/neck.vox similarity index 100% rename from assets/voxygen/voxel/npc/tarasque/male/head_lower.vox rename to assets/voxygen/voxel/npc/tarasque/male/neck.vox diff --git a/assets/voxygen/voxel/npc/tiger/male/head_upper.vox b/assets/voxygen/voxel/npc/tiger/male/head.vox similarity index 100% rename from assets/voxygen/voxel/npc/tiger/male/head_upper.vox rename to assets/voxygen/voxel/npc/tiger/male/head.vox diff --git a/assets/voxygen/voxel/npc/tiger/male/head_lower.vox b/assets/voxygen/voxel/npc/tiger/male/neck.vox similarity index 100% rename from assets/voxygen/voxel/npc/tiger/male/head_lower.vox rename to assets/voxygen/voxel/npc/tiger/male/neck.vox diff --git a/assets/voxygen/voxel/npc/tuskram/male/head_upper.vox b/assets/voxygen/voxel/npc/tuskram/male/head.vox similarity index 100% rename from assets/voxygen/voxel/npc/tuskram/male/head_upper.vox rename to assets/voxygen/voxel/npc/tuskram/male/head.vox diff --git a/assets/voxygen/voxel/npc/tuskram/male/head_lower.vox b/assets/voxygen/voxel/npc/tuskram/male/neck.vox similarity index 100% rename from assets/voxygen/voxel/npc/tuskram/male/head_lower.vox rename to assets/voxygen/voxel/npc/tuskram/male/neck.vox diff --git a/assets/voxygen/voxel/npc/wolf/male/head_upper.vox b/assets/voxygen/voxel/npc/wolf/male/head.vox similarity index 100% rename from assets/voxygen/voxel/npc/wolf/male/head_upper.vox rename to assets/voxygen/voxel/npc/wolf/male/head.vox diff --git a/assets/voxygen/voxel/npc/wolf/male/head_lower.vox b/assets/voxygen/voxel/npc/wolf/male/neck.vox similarity index 100% rename from assets/voxygen/voxel/npc/wolf/male/head_lower.vox rename to assets/voxygen/voxel/npc/wolf/male/neck.vox diff --git a/assets/voxygen/voxel/quadruped_medium_central_manifest.ron b/assets/voxygen/voxel/quadruped_medium_central_manifest.ron index e3baa21581..ad5263a0f1 100644 --- a/assets/voxygen/voxel/quadruped_medium_central_manifest.ron +++ b/assets/voxygen/voxel/quadruped_medium_central_manifest.ron @@ -1,12 +1,12 @@ ({ (Grolgar, Male): ( - upper: ( + head: ( offset: (-7.0, 0.0, -9.0), - central: ("npc.grolgar.male.head_upper"), + central: ("npc.grolgar.male.head"), ), - lower: ( + neck: ( offset: (-6.0, -2.0, -8.0), - central: ("npc.grolgar.male.head_lower"), + central: ("npc.grolgar.male.neck"), ), jaw: ( offset: (-2.0, 0.0, -1.5), @@ -30,13 +30,13 @@ ), ), (Grolgar, Female): ( - upper: ( + head: ( offset: (-7.0, 0.0, -9.0), - central: ("npc.grolgar.male.head_upper"), + central: ("npc.grolgar.male.head"), ), - lower: ( + neck: ( offset: (-6.0, -2.0, -8.0), - central: ("npc.grolgar.male.head_lower"), + central: ("npc.grolgar.male.neck"), ), jaw: ( offset: (-2.0, 0.0, -1.5), @@ -60,13 +60,13 @@ ), ), (Saber, Male): ( - upper: ( + head: ( offset: (-5.5, 0.0, -6.5), - central: ("npc.saber.male.head_upper"), + central: ("npc.saber.male.head"), ), - lower: ( + neck: ( offset: (-4.0, -5.5, -4.0), - central: ("npc.saber.male.head_lower"), + central: ("npc.saber.male.neck"), ), jaw: ( offset: (-2.5, 0.0, -1.5), @@ -90,13 +90,13 @@ ), ), (Saber, Female): ( - upper: ( + head: ( offset: (-5.5, 0.0, -6.5), - central: ("npc.saber.male.head_upper"), + central: ("npc.saber.male.head"), ), - lower: ( + neck: ( offset: (-4.0, -5.5, -4.0), - central: ("npc.saber.male.head_lower"), + central: ("npc.saber.male.neck"), ), jaw: ( offset: (-2.5, 0.0, -1.5), @@ -120,13 +120,13 @@ ), ), (Tuskram, Male): ( - upper: ( + head: ( offset: (-10.0, -6.0, -6.5), - central: ("npc.tuskram.male.head_upper"), + central: ("npc.tuskram.male.head"), ), - lower: ( + neck: ( offset: (-4.0, -4.0, -3.5), - central: ("npc.tuskram.male.head_lower"), + central: ("npc.tuskram.male.neck"), ), jaw: ( offset: (-2.0, 0.0, -1.5), @@ -150,13 +150,13 @@ ), ), (Tuskram, Female): ( - upper: ( + head: ( offset: (-10.0, -6.0, -6.5), - central: ("npc.tuskram.male.head_upper"), + central: ("npc.tuskram.male.head"), ), - lower: ( + neck: ( offset: (-4.0, -4.0, -3.5), - central: ("npc.tuskram.male.head_lower"), + central: ("npc.tuskram.male.neck"), ), jaw: ( offset: (-2.0, 0.0, -1.5), @@ -180,13 +180,13 @@ ), ), (Lion, Male): ( - upper: ( + head: ( offset: (-4.5, 0.0, -4.5), - central: ("npc.lion.male.head_upper"), + central: ("npc.lion.male.head"), ), - lower: ( + neck: ( offset: (-7.5, -5.5, -8.5), - central: ("npc.lion.male.head_lower"), + central: ("npc.lion.male.neck"), ), jaw: ( offset: (-2.5, 0.0, -1.0), @@ -210,13 +210,13 @@ ), ), (Lion, Female): ( - upper: ( + head: ( offset: (-4.5, 0.0, -4.5), - central: ("npc.lion.male.head_upper"), + central: ("npc.lion.male.head"), ), - lower: ( + neck: ( offset: (-7.5, -5.5, -8.5), - central: ("npc.lion.male.head_lower"), + central: ("npc.lion.male.neck"), ), jaw: ( offset: (-2.5, 0.0, -1.0), @@ -240,13 +240,13 @@ ), ), (Tarasque, Male): ( - upper: ( + head: ( offset: (-10.0, 0.0, -10.0), - central: ("npc.tarasque.male.head_upper"), + central: ("npc.tarasque.male.head"), ), - lower: ( + neck: ( offset: (-5.0, -3.0, -4.5), - central: ("npc.tarasque.male.head_lower"), + central: ("npc.tarasque.male.neck"), ), jaw: ( offset: (-5.0, 0.0, -0.0), @@ -270,13 +270,13 @@ ), ), (Tarasque, Female): ( - upper: ( + head: ( offset: (-10.0, 0.0, -10.0), - central: ("npc.tarasque.male.head_upper"), + central: ("npc.tarasque.male.head"), ), - lower: ( + neck: ( offset: (-5.0, -3.0, -4.5), - central: ("npc.tarasque.male.head_lower"), + central: ("npc.tarasque.male.neck"), ), jaw: ( offset: (-5.0, 0.0, -0.0), @@ -300,13 +300,13 @@ ), ), (Tiger, Male): ( - upper: ( + head: ( offset: (-5.5, 0.0, -5.0), - central: ("npc.tiger.male.head_upper"), + central: ("npc.tiger.male.head"), ), - lower: ( + neck: ( offset: (-4.5, -2.0, -5.0), - central: ("npc.tiger.male.head_lower"), + central: ("npc.tiger.male.neck"), ), jaw: ( offset: (-2.5, 0.0, -1.0), @@ -330,13 +330,13 @@ ), ), (Tiger, Female): ( - upper: ( + head: ( offset: (-5.5, 0.0, -5.0), - central: ("npc.tiger.male.head_upper"), + central: ("npc.tiger.male.head"), ), - lower: ( + neck: ( offset: (-4.5, -2.0, -5.0), - central: ("npc.tiger.male.head_lower"), + central: ("npc.tiger.male.neck"), ), jaw: ( offset: (-2.5, 0.0, -1.0), @@ -360,13 +360,13 @@ ), ), (Wolf, Male): ( - upper: ( + head: ( offset: (-5.0, 0.0, -3.5), - central: ("npc.wolf.male.head_upper"), + central: ("npc.wolf.male.head"), ), - lower: ( + neck: ( offset: (-5.0, -4.5, -5.0), - central: ("npc.wolf.male.head_lower"), + central: ("npc.wolf.male.neck"), ), jaw: ( offset: (-2.0, 0.0, -1.0), @@ -390,13 +390,13 @@ ), ), (Wolf, Female): ( - upper: ( + head: ( offset: (-5.0, 0.0, -3.5), - central: ("npc.wolf.male.head_upper"), + central: ("npc.wolf.male.head"), ), - lower: ( + neck: ( offset: (-5.0, -4.5, -5.0), - central: ("npc.wolf.male.head_lower"), + central: ("npc.wolf.male.neck"), ), jaw: ( offset: (-2.0, 0.0, -1.0), @@ -420,13 +420,13 @@ ), ), (Frostfang, Male): ( - upper: ( + head: ( offset: (-4.0, 0.0, -4.5), - central: ("npc.frostfang.male.head_upper"), + central: ("npc.frostfang.male.head"), ), - lower: ( + neck: ( offset: (-3.0, -2.0, -4.0), - central: ("npc.frostfang.male.head_lower"), + central: ("npc.frostfang.male.neck"), ), jaw: ( offset: (-2.0, 0.0, -3.5), @@ -450,13 +450,13 @@ ), ), (Frostfang, Female): ( - upper: ( + head: ( offset: (-4.0, 0.0, -4.5), - central: ("npc.frostfang.male.head_upper"), + central: ("npc.frostfang.male.head"), ), - lower: ( + neck: ( offset: (-3.0, -2.0, -4.0), - central: ("npc.frostfang.male.head_lower"), + central: ("npc.frostfang.male.neck"), ), jaw: ( offset: (-2.0, 0.0, -3.5), @@ -480,13 +480,13 @@ ), ), (Mouflon, Male): ( - upper: ( + head: ( offset: (-7.0, 0.0, -4.5), - central: ("npc.mouflon.male.head_upper"), + central: ("npc.mouflon.male.head"), ), - lower: ( + neck: ( offset: (-4.0, -4.0, -4.5), - central: ("npc.mouflon.male.head_lower"), + central: ("npc.mouflon.male.neck"), ), jaw: ( offset: (-2.0, 0.0, -1.0), @@ -510,13 +510,13 @@ ), ), (Mouflon, Female): ( - upper: ( + head: ( offset: (-7.0, 0.0, -4.5), - central: ("npc.mouflon.male.head_upper"), + central: ("npc.mouflon.male.head"), ), - lower: ( + neck: ( offset: (-4.0, -4.0, -4.5), - central: ("npc.mouflon.male.head_lower"), + central: ("npc.mouflon.male.neck"), ), jaw: ( offset: (-2.0, 0.0, -1.0), @@ -540,13 +540,13 @@ ), ), (Catoblepas, Male): ( - upper: ( + head: ( offset: (-13.0, 0.0, -4.5), - central: ("npc.catoblepas.male.head_upper"), + central: ("npc.catoblepas.male.head"), ), - lower: ( + neck: ( offset: (-4.0, -10.0, -12.0), - central: ("npc.catoblepas.male.head_lower"), + central: ("npc.catoblepas.male.neck"), ), jaw: ( offset: (-4.0, 0.0, -3.0), @@ -570,13 +570,13 @@ ), ), (Catoblepas, Female): ( - upper: ( + head: ( offset: (-13.0, 0.0, -4.5), - central: ("npc.catoblepas.male.head_upper"), + central: ("npc.catoblepas.male.head"), ), - lower: ( + neck: ( offset: (-4.0, -10.0, -12.0), - central: ("npc.catoblepas.male.head_lower"), + central: ("npc.catoblepas.male.neck"), ), jaw: ( offset: (-4.0, 0.0, -3.0), @@ -600,13 +600,13 @@ ), ), (Bonerattler, Male): ( - upper: ( + head: ( offset: (-4.5, 0.0, -4.5), - central: ("npc.bonerattler.male.head_upper"), + central: ("npc.bonerattler.male.head"), ), - lower: ( + neck: ( offset: (-4.5, -2.0, -5.0), - central: ("npc.bonerattler.male.head_lower"), + central: ("npc.bonerattler.male.neck"), ), jaw: ( offset: (-3.5, 0.0, -2.0), @@ -630,13 +630,13 @@ ), ), (Bonerattler, Female): ( - upper: ( + head: ( offset: (-4.5, 0.0, -4.5), - central: ("npc.bonerattler.male.head_upper"), + central: ("npc.bonerattler.male.head"), ), - lower: ( + neck: ( offset: (-4.5, -2.0, -5.0), - central: ("npc.bonerattler.male.head_lower"), + central: ("npc.bonerattler.male.neck"), ), jaw: ( offset: (-3.5, 0.0, -2.0), @@ -660,13 +660,13 @@ ), ), (Deer, Male): ( - upper: ( + head: ( offset: (-6.0, -5.0, 0.0), - central: ("npc.deer.male.head_upper"), + central: ("npc.deer.male.head"), ), - lower: ( + neck: ( offset: (-3.0, -3.5, -4.0), - central: ("npc.deer.male.head_lower"), + central: ("npc.deer.male.neck"), ), jaw: ( offset: (-1.0, 0.0, -0.5), @@ -690,13 +690,13 @@ ), ), (Deer, Female): ( - upper: ( + head: ( offset: (-6.0, -3.0, 0.0), - central: ("npc.deer.female.head_upper"), + central: ("npc.deer.female.head"), ), - lower: ( + neck: ( offset: (-3.0, -3.5, -4.0), - central: ("npc.deer.female.head_lower"), + central: ("npc.deer.female.neck"), ), jaw: ( offset: (-1.0, 0.0, -0.5), @@ -720,13 +720,13 @@ ), ), (Hirdrassil, Male): ( - upper: ( + head: ( offset: (-9.0, -12.0, 0.0), - central: ("npc.hirdrassil.male.head_upper"), + central: ("npc.hirdrassil.male.head"), ), - lower: ( + neck: ( offset: (-4.0, -4.0, -6.0), - central: ("npc.hirdrassil.male.head_lower"), + central: ("npc.hirdrassil.male.neck"), ), jaw: ( offset: (-1.0, 0.0, -7.0), @@ -750,13 +750,13 @@ ), ), (Hirdrassil, Female): ( - upper: ( + head: ( offset: (-9.0, -12.0, 0.0), - central: ("npc.hirdrassil.male.head_upper"), + central: ("npc.hirdrassil.male.head"), ), - lower: ( + neck: ( offset: (-4.0, -4.0, -6.0), - central: ("npc.hirdrassil.male.head_lower"), + central: ("npc.hirdrassil.male.neck"), ), jaw: ( offset: (-1.0, 0.0, -7.0), diff --git a/voxygen/src/anim/src/quadruped_medium/alpha.rs b/voxygen/src/anim/src/quadruped_medium/alpha.rs index d323e9ecfe..83ef3ff1da 100644 --- a/voxygen/src/anim/src/quadruped_medium/alpha.rs +++ b/voxygen/src/anim/src/quadruped_medium/alpha.rs @@ -32,16 +32,16 @@ impl Animation for AlphaAnimation { .sqrt()) * ((anim_time as f32 * 4.0 + PI * 0.5).sin()); - next.head_upper.position = - Vec3::new(0.0, skeleton_attr.head_upper.0, skeleton_attr.head_upper.1); - next.head_upper.orientation = + next.head.position = + Vec3::new(0.0, skeleton_attr.head.0, skeleton_attr.head.1); + next.head.orientation = Quaternion::rotation_y(short * -0.2) * Quaternion::rotation_x(0.1 + short * 0.2); - next.head_upper.scale = Vec3::one(); + next.head.scale = Vec3::one(); - next.head_lower.position = - Vec3::new(0.0, skeleton_attr.head_lower.0, skeleton_attr.head_lower.1); - next.head_lower.orientation = Quaternion::rotation_z(0.0) * Quaternion::rotation_x(0.0); - next.head_lower.scale = Vec3::one() * 1.02; + next.neck.position = + Vec3::new(0.0, skeleton_attr.neck.0, skeleton_attr.neck.1); + next.neck.orientation = Quaternion::rotation_z(0.0) * Quaternion::rotation_x(0.0); + next.neck.scale = Vec3::one() * 1.02; next.jaw.position = Vec3::new(0.0, skeleton_attr.jaw.0, skeleton_attr.jaw.1); next.jaw.orientation = Quaternion::rotation_x(-0.3 + quick * 0.4); diff --git a/voxygen/src/anim/src/quadruped_medium/idle.rs b/voxygen/src/anim/src/quadruped_medium/idle.rs index 226f42951f..3285ba2bcb 100644 --- a/voxygen/src/anim/src/quadruped_medium/idle.rs +++ b/voxygen/src/anim/src/quadruped_medium/idle.rs @@ -51,22 +51,22 @@ impl Animation for IdleAnimation { * 0.125, ); - next.head_upper.position = Vec3::new( + next.head.position = Vec3::new( 0.0, - skeleton_attr.head_upper.0, - skeleton_attr.head_upper.1 + slower * 0.2, + skeleton_attr.head.0, + skeleton_attr.head.1 + slower * 0.2, ); - next.head_upper.orientation = + next.head.orientation = Quaternion::rotation_z(0.3 * look.x) * Quaternion::rotation_x(0.3 * look.y); - next.head_upper.scale = Vec3::one(); + next.head.scale = Vec3::one(); - next.head_lower.position = Vec3::new( + next.neck.position = Vec3::new( 0.0, - skeleton_attr.head_lower.0, - skeleton_attr.head_lower.1 + slower * 0.1, + skeleton_attr.neck.0, + skeleton_attr.neck.1 + slower * 0.1, ); - next.head_lower.orientation = Quaternion::rotation_z(0.0) * Quaternion::rotation_x(0.0); - next.head_lower.scale = Vec3::one() * 1.02; + next.neck.orientation = Quaternion::rotation_z(0.0) * Quaternion::rotation_x(0.0); + next.neck.scale = Vec3::one() * 1.02; next.jaw.position = Vec3::new( 0.0, diff --git a/voxygen/src/anim/src/quadruped_medium/jump.rs b/voxygen/src/anim/src/quadruped_medium/jump.rs index 5d70d11b3c..8dd0df60e0 100644 --- a/voxygen/src/anim/src/quadruped_medium/jump.rs +++ b/voxygen/src/anim/src/quadruped_medium/jump.rs @@ -22,15 +22,15 @@ impl Animation for JumpAnimation { ) -> Self::Skeleton { let mut next = (*skeleton).clone(); - next.head_upper.position = - Vec3::new(0.0, skeleton_attr.head_upper.0, skeleton_attr.head_upper.1); - next.head_upper.orientation = Quaternion::rotation_z(0.4) * Quaternion::rotation_x(0.3); - next.head_upper.scale = Vec3::one(); + next.head.position = + Vec3::new(0.0, skeleton_attr.head.0, skeleton_attr.head.1); + next.head.orientation = Quaternion::rotation_z(0.4) * Quaternion::rotation_x(0.3); + next.head.scale = Vec3::one(); - next.head_lower.position = - Vec3::new(0.0, skeleton_attr.head_lower.0, skeleton_attr.head_lower.1); - next.head_lower.orientation = Quaternion::rotation_z(0.2) * Quaternion::rotation_x(0.3); - next.head_lower.scale = Vec3::one() * 1.02; + next.neck.position = + Vec3::new(0.0, skeleton_attr.neck.0, skeleton_attr.neck.1); + next.neck.orientation = Quaternion::rotation_z(0.2) * Quaternion::rotation_x(0.3); + next.neck.scale = Vec3::one() * 1.02; next.jaw.position = Vec3::new(0.0, skeleton_attr.jaw.0, skeleton_attr.jaw.1); next.jaw.orientation = Quaternion::rotation_x(-0.4); diff --git a/voxygen/src/anim/src/quadruped_medium/mod.rs b/voxygen/src/anim/src/quadruped_medium/mod.rs index 2fb77232a1..e77e2d3f8f 100644 --- a/voxygen/src/anim/src/quadruped_medium/mod.rs +++ b/voxygen/src/anim/src/quadruped_medium/mod.rs @@ -15,8 +15,8 @@ use core::convert::TryFrom; pub type Body = comp::quadruped_medium::Body; skeleton_impls!(struct QuadrupedMediumSkeleton { - + head_upper, - + head_lower, + + head, + + neck, + jaw, + tail, + torso_front, @@ -48,21 +48,21 @@ impl Skeleton for QuadrupedMediumSkeleton { ) -> Vec3 { let torso_front_mat = base_mat * Mat4::::from(self.torso_front); let torso_back_mat = torso_front_mat * Mat4::::from(self.torso_back); - let head_lower_mat = torso_front_mat * Mat4::::from(self.head_lower); + let neck_mat = torso_front_mat * Mat4::::from(self.neck); let leg_fl_mat = torso_front_mat * Mat4::::from(self.leg_fl); let leg_fr_mat = torso_front_mat * Mat4::::from(self.leg_fr); let leg_bl_mat = torso_back_mat * Mat4::::from(self.leg_bl); let leg_br_mat = torso_back_mat * Mat4::::from(self.leg_br); - let head_upper_mat = head_lower_mat * Mat4::::from(self.head_upper); + let head_mat = neck_mat * Mat4::::from(self.head); *(<&mut [_; Self::BONE_COUNT]>::try_from(&mut buf[0..Self::BONE_COUNT]).unwrap()) = [ - make_bone(head_upper_mat), - make_bone(head_lower_mat), - make_bone(head_upper_mat * Mat4::::from(self.jaw)), + make_bone(head_mat), + make_bone(neck_mat), + make_bone(head_mat * Mat4::::from(self.jaw)), make_bone(torso_back_mat * Mat4::::from(self.tail)), make_bone(torso_front_mat), make_bone(torso_back_mat), - make_bone(head_upper_mat * Mat4::::from(self.ears)), + make_bone(head_mat * Mat4::::from(self.ears)), make_bone(leg_fl_mat), make_bone(leg_fr_mat), make_bone(leg_bl_mat), @@ -77,8 +77,8 @@ impl Skeleton for QuadrupedMediumSkeleton { } pub struct SkeletonAttr { - head_upper: (f32, f32), - head_lower: (f32, f32), + head: (f32, f32), + neck: (f32, f32), jaw: (f32, f32), tail: (f32, f32), torso_back: (f32, f32), @@ -109,8 +109,8 @@ impl<'a> std::convert::TryFrom<&'a comp::Body> for SkeletonAttr { impl Default for SkeletonAttr { fn default() -> Self { Self { - head_upper: (0.0, 0.0), - head_lower: (0.0, 0.0), + head: (0.0, 0.0), + neck: (0.0, 0.0), jaw: (0.0, 0.0), tail: (0.0, 0.0), torso_back: (0.0, 0.0), @@ -133,7 +133,7 @@ impl<'a> From<&'a Body> for SkeletonAttr { fn from(body: &'a Body) -> Self { use comp::quadruped_medium::{BodyType::*, Species::*}; Self { - head_upper: match (body.species, body.body_type) { + head: match (body.species, body.body_type) { (Grolgar, _) => (0.0, -1.0), (Saber, _) => (0.0, -3.0), (Tuskram, _) => (0.0, 1.0), @@ -149,7 +149,7 @@ impl<'a> From<&'a Body> for SkeletonAttr { (Deer, Female) => (0.5, 3.5), (Hirdrassil, _) => (0.0, 5.0), }, - head_lower: match (body.species, body.body_type) { + neck: match (body.species, body.body_type) { (Grolgar, _) => (1.0, -1.0), (Saber, _) => (1.0, 0.0), (Tuskram, _) => (1.0, 1.0), diff --git a/voxygen/src/anim/src/quadruped_medium/run.rs b/voxygen/src/anim/src/quadruped_medium/run.rs index eac5d982fd..935755d239 100644 --- a/voxygen/src/anim/src/quadruped_medium/run.rs +++ b/voxygen/src/anim/src/quadruped_medium/run.rs @@ -99,21 +99,21 @@ impl Animation for RunAnimation { let x_tilt = avg_vel.z.atan2(avg_vel.xy().magnitude()); //Gallop - next.head_upper.position = - Vec3::new(0.0, skeleton_attr.head_upper.0, skeleton_attr.head_upper.1); - next.head_upper.orientation = Quaternion::rotation_x( + next.head.position = + Vec3::new(0.0, skeleton_attr.head.0, skeleton_attr.head.1); + next.head.orientation = Quaternion::rotation_x( look.y * 0.3 / ((canceler).max(0.5)) + amplitude * short * -0.03 - 0.1, ) * Quaternion::rotation_z( look.x * 0.3 / ((canceler).max(0.5)) + tilt * -1.2, ) * Quaternion::rotation_y(tilt * 0.8); - next.head_upper.scale = Vec3::one(); + next.head.scale = Vec3::one(); - next.head_lower.position = - Vec3::new(0.0, skeleton_attr.head_lower.0, skeleton_attr.head_lower.1); - next.head_lower.orientation = Quaternion::rotation_z(tilt * -0.8) + next.neck.position = + Vec3::new(0.0, skeleton_attr.neck.0, skeleton_attr.neck.1); + next.neck.orientation = Quaternion::rotation_z(tilt * -0.8) * Quaternion::rotation_x(amplitude * short * -0.05) * Quaternion::rotation_y(tilt * 0.3); - next.head_lower.scale = Vec3::one() * 1.02; + next.neck.scale = Vec3::one() * 1.02; next.jaw.position = Vec3::new(0.0, skeleton_attr.jaw.0, skeleton_attr.jaw.1); next.jaw.orientation = Quaternion::rotation_x(0.0); diff --git a/voxygen/src/anim/src/theropod/run.rs b/voxygen/src/anim/src/theropod/run.rs index a0f4868a26..4187b28149 100644 --- a/voxygen/src/anim/src/theropod/run.rs +++ b/voxygen/src/anim/src/theropod/run.rs @@ -41,7 +41,6 @@ impl Animation for RunAnimation { 0.9 * (1.0 * 1.0) }; - let speedadjust = if speed < 5.0 { 0.0 } else { speed / 25.0 }; let short = (((1.0) / (0.72 + 0.28 diff --git a/voxygen/src/scene/figure/load.rs b/voxygen/src/scene/figure/load.rs index 09f0e40edc..f541e79c1e 100644 --- a/voxygen/src/scene/figure/load.rs +++ b/voxygen/src/scene/figure/load.rs @@ -1187,8 +1187,8 @@ struct QuadrupedMediumCentralSpec(HashMap<(QMSpecies, QMBodyType), SidedQMCentra #[derive(Deserialize)] struct SidedQMCentralVoxSpec { - upper: QuadrupedMediumCentralSubSpec, - lower: QuadrupedMediumCentralSubSpec, + head: QuadrupedMediumCentralSubSpec, + neck: QuadrupedMediumCentralSubSpec, jaw: QuadrupedMediumCentralSubSpec, ears: QuadrupedMediumCentralSubSpec, torso_front: QuadrupedMediumCentralSubSpec, @@ -1228,11 +1228,11 @@ make_vox_spec!( }, |FigureKey { body, .. }, spec| { [ - Some(spec.central.asset.mesh_head_upper( + Some(spec.central.asset.mesh_head( body.species, body.body_type, )), - Some(spec.central.asset.mesh_head_lower( + Some(spec.central.asset.mesh_neck( body.species, body.body_type, )), @@ -1294,36 +1294,36 @@ make_vox_spec!( ); impl QuadrupedMediumCentralSpec { - fn mesh_head_upper(&self, species: QMSpecies, body_type: QMBodyType) -> BoneMeshes { + fn mesh_head(&self, species: QMSpecies, body_type: QMBodyType) -> BoneMeshes { let spec = match self.0.get(&(species, body_type)) { Some(spec) => spec, None => { error!( - "No upper head specification exists for the combination of {:?} and {:?}", + "No head specification exists for the combination of {:?} and {:?}", species, body_type ); return load_mesh("not_found", Vec3::new(-5.0, -5.0, -2.5)); }, }; - let central = graceful_load_segment(&spec.upper.central.0); + let central = graceful_load_segment(&spec.head.central.0); - (central, Vec3::from(spec.upper.offset)) + (central, Vec3::from(spec.head.offset)) } - fn mesh_head_lower(&self, species: QMSpecies, body_type: QMBodyType) -> BoneMeshes { + fn mesh_neck(&self, species: QMSpecies, body_type: QMBodyType) -> BoneMeshes { let spec = match self.0.get(&(species, body_type)) { Some(spec) => spec, None => { error!( - "No lower head specification exists for the combination of {:?} and {:?}", + "No neck specification exists for the combination of {:?} and {:?}", species, body_type ); return load_mesh("not_found", Vec3::new(-5.0, -5.0, -2.5)); }, }; - let central = graceful_load_segment(&spec.lower.central.0); + let central = graceful_load_segment(&spec.neck.central.0); - (central, Vec3::from(spec.lower.offset)) + (central, Vec3::from(spec.neck.offset)) } fn mesh_jaw(&self, species: QMSpecies, body_type: QMBodyType) -> BoneMeshes { @@ -1539,18 +1539,18 @@ impl QuadrupedMediumLateralSpec { //// #[derive(Deserialize)] -struct BirdMediumCenterSpec(HashMap<(BMSpecies, BMBodyType), SidedBMCenterVoxSpec>); +struct BirdMediumCentralSpec(HashMap<(BMSpecies, BMBodyType), SidedBMCentralVoxSpec>); #[derive(Deserialize)] -struct SidedBMCenterVoxSpec { - head: BirdMediumCenterSubSpec, - torso: BirdMediumCenterSubSpec, - tail: BirdMediumCenterSubSpec, +struct SidedBMCentralVoxSpec { + head: BirdMediumCentralSubSpec, + torso: BirdMediumCentralSubSpec, + tail: BirdMediumCentralSubSpec, } #[derive(Deserialize)] -struct BirdMediumCenterSubSpec { +struct BirdMediumCentralSubSpec { offset: [f32; 3], // Should be relative to initial origin - center: VoxSimple, + central: VoxSimple, } #[derive(Deserialize)] @@ -1572,20 +1572,20 @@ struct BirdMediumLateralSubSpec { make_vox_spec!( bird_medium::Body, struct BirdMediumSpec { - center: BirdMediumCenterSpec = "voxygen.voxel.bird_medium_center_manifest", + central: BirdMediumCentralSpec = "voxygen.voxel.bird_medium_central_manifest", lateral: BirdMediumLateralSpec = "voxygen.voxel.bird_medium_lateral_manifest", }, |FigureKey { body, .. }, spec| { [ - Some(spec.center.asset.mesh_head( + Some(spec.central.asset.mesh_head( body.species, body.body_type, )), - Some(spec.center.asset.mesh_torso( + Some(spec.central.asset.mesh_torso( body.species, body.body_type, )), - Some(spec.center.asset.mesh_tail( + Some(spec.central.asset.mesh_tail( body.species, body.body_type, )), @@ -1618,7 +1618,7 @@ make_vox_spec!( }, ); -impl BirdMediumCenterSpec { +impl BirdMediumCentralSpec { fn mesh_head(&self, species: BMSpecies, body_type: BMBodyType) -> BoneMeshes { let spec = match self.0.get(&(species, body_type)) { Some(spec) => spec, @@ -1630,9 +1630,9 @@ impl BirdMediumCenterSpec { return load_mesh("not_found", Vec3::new(-5.0, -5.0, -2.5)); }, }; - let center = graceful_load_segment(&spec.head.center.0); + let central = graceful_load_segment(&spec.head.central.0); - (center, Vec3::from(spec.head.offset)) + (central, Vec3::from(spec.head.offset)) } fn mesh_torso(&self, species: BMSpecies, body_type: BMBodyType) -> BoneMeshes { @@ -1646,9 +1646,9 @@ impl BirdMediumCenterSpec { return load_mesh("not_found", Vec3::new(-5.0, -5.0, -2.5)); }, }; - let center = graceful_load_segment(&spec.torso.center.0); + let central = graceful_load_segment(&spec.torso.central.0); - (center, Vec3::from(spec.torso.offset)) + (central, Vec3::from(spec.torso.offset)) } fn mesh_tail(&self, species: BMSpecies, body_type: BMBodyType) -> BoneMeshes { @@ -1662,9 +1662,9 @@ impl BirdMediumCenterSpec { return load_mesh("not_found", Vec3::new(-5.0, -5.0, -2.5)); }, }; - let center = graceful_load_segment(&spec.tail.center.0); + let central = graceful_load_segment(&spec.tail.central.0); - (center, Vec3::from(spec.tail.offset)) + (central, Vec3::from(spec.tail.offset)) } } impl BirdMediumLateralSpec { @@ -2160,22 +2160,22 @@ fn mesh_fish_medium_fin_r(fin_r: fish_medium::FinR) -> BoneMeshes { //// #[derive(Deserialize)] -struct DragonCenterSpec(HashMap<(DSpecies, DBodyType), SidedDCenterVoxSpec>); +struct DragonCentralSpec(HashMap<(DSpecies, DBodyType), SidedDCentralVoxSpec>); #[derive(Deserialize)] -struct SidedDCenterVoxSpec { - upper: DragonCenterSubSpec, - lower: DragonCenterSubSpec, - jaw: DragonCenterSubSpec, - chest_front: DragonCenterSubSpec, - chest_rear: DragonCenterSubSpec, - tail_front: DragonCenterSubSpec, - tail_rear: DragonCenterSubSpec, +struct SidedDCentralVoxSpec { + upper: DragonCentralSubSpec, + lower: DragonCentralSubSpec, + jaw: DragonCentralSubSpec, + chest_front: DragonCentralSubSpec, + chest_rear: DragonCentralSubSpec, + tail_front: DragonCentralSubSpec, + tail_rear: DragonCentralSubSpec, } #[derive(Deserialize)] -struct DragonCenterSubSpec { +struct DragonCentralSubSpec { offset: [f32; 3], // Should be relative to initial origin - center: VoxSimple, + central: VoxSimple, } #[derive(Deserialize)] @@ -2201,36 +2201,36 @@ struct DragonLateralSubSpec { make_vox_spec!( dragon::Body, struct DragonSpec { - center: DragonCenterSpec = "voxygen.voxel.dragon_center_manifest", + central: DragonCentralSpec = "voxygen.voxel.dragon_central_manifest", lateral: DragonLateralSpec = "voxygen.voxel.dragon_lateral_manifest", }, |FigureKey { body, .. }, spec| { [ - Some(spec.center.asset.mesh_head_upper( + Some(spec.central.asset.mesh_head_upper( body.species, body.body_type, )), - Some(spec.center.asset.mesh_head_lower( + Some(spec.central.asset.mesh_head_lower( body.species, body.body_type, )), - Some(spec.center.asset.mesh_jaw( + Some(spec.central.asset.mesh_jaw( body.species, body.body_type, )), - Some(spec.center.asset.mesh_chest_front( + Some(spec.central.asset.mesh_chest_front( body.species, body.body_type, )), - Some(spec.center.asset.mesh_chest_rear( + Some(spec.central.asset.mesh_chest_rear( body.species, body.body_type, )), - Some(spec.center.asset.mesh_tail_front( + Some(spec.central.asset.mesh_tail_front( body.species, body.body_type, )), - Some(spec.center.asset.mesh_tail_rear( + Some(spec.central.asset.mesh_tail_rear( body.species, body.body_type, )), @@ -2271,7 +2271,7 @@ make_vox_spec!( }, ); -impl DragonCenterSpec { +impl DragonCentralSpec { fn mesh_head_upper(&self, species: DSpecies, body_type: DBodyType) -> BoneMeshes { let spec = match self.0.get(&(species, body_type)) { Some(spec) => spec, @@ -2283,7 +2283,7 @@ impl DragonCenterSpec { return load_mesh("not_found", Vec3::new(-5.0, -5.0, -2.5)); }, }; - let central = graceful_load_segment(&spec.upper.center.0); + let central = graceful_load_segment(&spec.upper.central.0); (central, Vec3::from(spec.upper.offset)) } @@ -2299,7 +2299,7 @@ impl DragonCenterSpec { return load_mesh("not_found", Vec3::new(-5.0, -5.0, -2.5)); }, }; - let central = graceful_load_segment(&spec.lower.center.0); + let central = graceful_load_segment(&spec.lower.central.0); (central, Vec3::from(spec.lower.offset)) } @@ -2315,7 +2315,7 @@ impl DragonCenterSpec { return load_mesh("not_found", Vec3::new(-5.0, -5.0, -2.5)); }, }; - let central = graceful_load_segment(&spec.jaw.center.0); + let central = graceful_load_segment(&spec.jaw.central.0); (central, Vec3::from(spec.jaw.offset)) } @@ -2331,9 +2331,9 @@ impl DragonCenterSpec { return load_mesh("not_found", Vec3::new(-5.0, -5.0, -2.5)); }, }; - let center = graceful_load_segment(&spec.chest_front.center.0); + let central = graceful_load_segment(&spec.chest_front.central.0); - (center, Vec3::from(spec.chest_front.offset)) + (central, Vec3::from(spec.chest_front.offset)) } fn mesh_chest_rear(&self, species: DSpecies, body_type: DBodyType) -> BoneMeshes { @@ -2347,9 +2347,9 @@ impl DragonCenterSpec { return load_mesh("not_found", Vec3::new(-5.0, -5.0, -2.5)); }, }; - let center = graceful_load_segment(&spec.chest_rear.center.0); + let central = graceful_load_segment(&spec.chest_rear.central.0); - (center, Vec3::from(spec.chest_rear.offset)) + (central, Vec3::from(spec.chest_rear.offset)) } fn mesh_tail_front(&self, species: DSpecies, body_type: DBodyType) -> BoneMeshes { @@ -2363,9 +2363,9 @@ impl DragonCenterSpec { return load_mesh("not_found", Vec3::new(-5.0, -5.0, -2.5)); }, }; - let center = graceful_load_segment(&spec.tail_front.center.0); + let central = graceful_load_segment(&spec.tail_front.central.0); - (center, Vec3::from(spec.tail_front.offset)) + (central, Vec3::from(spec.tail_front.offset)) } fn mesh_tail_rear(&self, species: DSpecies, body_type: DBodyType) -> BoneMeshes { @@ -2379,9 +2379,9 @@ impl DragonCenterSpec { return load_mesh("not_found", Vec3::new(-5.0, -5.0, -2.5)); }, }; - let center = graceful_load_segment(&spec.tail_rear.center.0); + let central = graceful_load_segment(&spec.tail_rear.central.0); - (center, Vec3::from(spec.tail_rear.offset)) + (central, Vec3::from(spec.tail_rear.offset)) } } impl DragonLateralSpec { @@ -2620,22 +2620,22 @@ fn mesh_fish_small_tail(tail: fish_small::Tail) -> BoneMeshes { } //// #[derive(Deserialize)] -struct BipedLargeCenterSpec(HashMap<(BLSpecies, BLBodyType), SidedBLCenterVoxSpec>); +struct BipedLargeCentralSpec(HashMap<(BLSpecies, BLBodyType), SidedBLCentralVoxSpec>); #[derive(Deserialize)] -struct SidedBLCenterVoxSpec { - head: BipedLargeCenterSubSpec, - jaw: BipedLargeCenterSubSpec, - torso_upper: BipedLargeCenterSubSpec, - torso_lower: BipedLargeCenterSubSpec, - tail: BipedLargeCenterSubSpec, - main: BipedLargeCenterSubSpec, - second: BipedLargeCenterSubSpec, +struct SidedBLCentralVoxSpec { + head: BipedLargeCentralSubSpec, + jaw: BipedLargeCentralSubSpec, + torso_upper: BipedLargeCentralSubSpec, + torso_lower: BipedLargeCentralSubSpec, + tail: BipedLargeCentralSubSpec, + main: BipedLargeCentralSubSpec, + second: BipedLargeCentralSubSpec, } #[derive(Deserialize)] -struct BipedLargeCenterSubSpec { +struct BipedLargeCentralSubSpec { offset: [f32; 3], // Should be relative to initial origin - center: VoxSimple, + central: VoxSimple, } #[derive(Deserialize)] @@ -2661,36 +2661,36 @@ struct BipedLargeLateralSubSpec { make_vox_spec!( biped_large::Body, struct BipedLargeSpec { - center: BipedLargeCenterSpec = "voxygen.voxel.biped_large_center_manifest", + central: BipedLargeCentralSpec = "voxygen.voxel.biped_large_central_manifest", lateral: BipedLargeLateralSpec = "voxygen.voxel.biped_large_lateral_manifest", }, |FigureKey { body, .. }, spec| { [ - Some(spec.center.asset.mesh_head( + Some(spec.central.asset.mesh_head( body.species, body.body_type, )), - Some(spec.center.asset.mesh_jaw( + Some(spec.central.asset.mesh_jaw( body.species, body.body_type, )), - Some(spec.center.asset.mesh_torso_upper( + Some(spec.central.asset.mesh_torso_upper( body.species, body.body_type, )), - Some(spec.center.asset.mesh_torso_lower( + Some(spec.central.asset.mesh_torso_lower( body.species, body.body_type, )), - Some(spec.center.asset.mesh_tail( + Some(spec.central.asset.mesh_tail( body.species, body.body_type, )), - Some(spec.center.asset.mesh_main( + Some(spec.central.asset.mesh_main( body.species, body.body_type, )), - Some(spec.center.asset.mesh_second( + Some(spec.central.asset.mesh_second( body.species, body.body_type, )), @@ -2731,7 +2731,7 @@ make_vox_spec!( }, ); -impl BipedLargeCenterSpec { +impl BipedLargeCentralSpec { fn mesh_head(&self, species: BLSpecies, body_type: BLBodyType) -> BoneMeshes { let spec = match self.0.get(&(species, body_type)) { Some(spec) => spec, @@ -2743,9 +2743,9 @@ impl BipedLargeCenterSpec { return load_mesh("not_found", Vec3::new(-5.0, -5.0, -2.5)); }, }; - let center = graceful_load_segment(&spec.head.center.0); + let central = graceful_load_segment(&spec.head.central.0); - (center, Vec3::from(spec.head.offset)) + (central, Vec3::from(spec.head.offset)) } fn mesh_jaw(&self, species: BLSpecies, body_type: BLBodyType) -> BoneMeshes { @@ -2759,9 +2759,9 @@ impl BipedLargeCenterSpec { return load_mesh("not_found", Vec3::new(-5.0, -5.0, -2.5)); }, }; - let center = graceful_load_segment(&spec.jaw.center.0); + let central = graceful_load_segment(&spec.jaw.central.0); - (center, Vec3::from(spec.jaw.offset)) + (central, Vec3::from(spec.jaw.offset)) } fn mesh_torso_upper(&self, species: BLSpecies, body_type: BLBodyType) -> BoneMeshes { @@ -2775,9 +2775,9 @@ impl BipedLargeCenterSpec { return load_mesh("not_found", Vec3::new(-5.0, -5.0, -2.5)); }, }; - let center = graceful_load_segment(&spec.torso_upper.center.0); + let central = graceful_load_segment(&spec.torso_upper.central.0); - (center, Vec3::from(spec.torso_upper.offset)) + (central, Vec3::from(spec.torso_upper.offset)) } fn mesh_torso_lower(&self, species: BLSpecies, body_type: BLBodyType) -> BoneMeshes { @@ -2791,9 +2791,9 @@ impl BipedLargeCenterSpec { return load_mesh("not_found", Vec3::new(-5.0, -5.0, -2.5)); }, }; - let center = graceful_load_segment(&spec.torso_lower.center.0); + let central = graceful_load_segment(&spec.torso_lower.central.0); - (center, Vec3::from(spec.torso_lower.offset)) + (central, Vec3::from(spec.torso_lower.offset)) } fn mesh_tail(&self, species: BLSpecies, body_type: BLBodyType) -> BoneMeshes { @@ -2807,9 +2807,9 @@ impl BipedLargeCenterSpec { return load_mesh("not_found", Vec3::new(-5.0, -5.0, -2.5)); }, }; - let center = graceful_load_segment(&spec.tail.center.0); + let central = graceful_load_segment(&spec.tail.central.0); - (center, Vec3::from(spec.tail.offset)) + (central, Vec3::from(spec.tail.offset)) } fn mesh_main(&self, species: BLSpecies, body_type: BLBodyType) -> BoneMeshes { @@ -2823,9 +2823,9 @@ impl BipedLargeCenterSpec { return load_mesh("not_found", Vec3::new(-5.0, -5.0, -2.5)); }, }; - let center = graceful_load_segment(&spec.main.center.0); + let central = graceful_load_segment(&spec.main.central.0); - (center, Vec3::from(spec.main.offset)) + (central, Vec3::from(spec.main.offset)) } fn mesh_second(&self, species: BLSpecies, body_type: BLBodyType) -> BoneMeshes { @@ -2839,9 +2839,9 @@ impl BipedLargeCenterSpec { return load_mesh("not_found", Vec3::new(-5.0, -5.0, -2.5)); }, }; - let center = graceful_load_segment(&spec.second.center.0); + let central = graceful_load_segment(&spec.second.central.0); - (center, Vec3::from(spec.second.offset)) + (central, Vec3::from(spec.second.offset)) } } impl BipedLargeLateralSpec { @@ -2975,18 +2975,18 @@ impl BipedLargeLateralSpec { } //// #[derive(Deserialize)] -struct GolemCenterSpec(HashMap<(GSpecies, GBodyType), SidedGCenterVoxSpec>); +struct GolemCentralSpec(HashMap<(GSpecies, GBodyType), SidedGCentralVoxSpec>); #[derive(Deserialize)] -struct SidedGCenterVoxSpec { - head: GolemCenterSubSpec, - torso_upper: GolemCenterSubSpec, - torso_lower: GolemCenterSubSpec, +struct SidedGCentralVoxSpec { + head: GolemCentralSubSpec, + torso_upper: GolemCentralSubSpec, + torso_lower: GolemCentralSubSpec, } #[derive(Deserialize)] -struct GolemCenterSubSpec { +struct GolemCentralSubSpec { offset: [f32; 3], // Should be relative to initial origin - center: VoxSimple, + central: VoxSimple, } #[derive(Deserialize)] @@ -3012,20 +3012,20 @@ struct GolemLateralSubSpec { make_vox_spec!( golem::Body, struct GolemSpec { - center: GolemCenterSpec = "voxygen.voxel.golem_center_manifest", + central: GolemCentralSpec = "voxygen.voxel.golem_central_manifest", lateral: GolemLateralSpec = "voxygen.voxel.golem_lateral_manifest", }, |FigureKey { body, .. }, spec| { [ - Some(spec.center.asset.mesh_head( + Some(spec.central.asset.mesh_head( body.species, body.body_type, )), - Some(spec.center.asset.mesh_torso_upper( + Some(spec.central.asset.mesh_torso_upper( body.species, body.body_type, )), - Some(spec.center.asset.mesh_torso_lower( + Some(spec.central.asset.mesh_torso_lower( body.species, body.body_type, )), @@ -3070,7 +3070,7 @@ make_vox_spec!( }, ); -impl GolemCenterSpec { +impl GolemCentralSpec { fn mesh_head(&self, species: GSpecies, body_type: GBodyType) -> BoneMeshes { let spec = match self.0.get(&(species, body_type)) { Some(spec) => spec, @@ -3082,9 +3082,9 @@ impl GolemCenterSpec { return load_mesh("not_found", Vec3::new(-5.0, -5.0, -2.5)); }, }; - let center = graceful_load_segment(&spec.head.center.0); + let central = graceful_load_segment(&spec.head.central.0); - (center, Vec3::from(spec.head.offset)) + (central, Vec3::from(spec.head.offset)) } fn mesh_torso_upper(&self, species: GSpecies, body_type: GBodyType) -> BoneMeshes { @@ -3098,9 +3098,9 @@ impl GolemCenterSpec { return load_mesh("not_found", Vec3::new(-5.0, -5.0, -2.5)); }, }; - let center = graceful_load_segment(&spec.torso_upper.center.0); + let central = graceful_load_segment(&spec.torso_upper.central.0); - (center, Vec3::from(spec.torso_upper.offset)) + (central, Vec3::from(spec.torso_upper.offset)) } pub fn mesh_torso_lower( @@ -3118,9 +3118,9 @@ impl GolemCenterSpec { return load_mesh("not_found", Vec3::new(-5.0, -5.0, -2.5)); }, }; - let center = graceful_load_segment(&spec.torso_lower.center.0); + let central = graceful_load_segment(&spec.torso_lower.central.0); - (center, Vec3::from(spec.torso_lower.offset)) + (central, Vec3::from(spec.torso_lower.offset)) } } impl GolemLateralSpec { diff --git a/voxygen/src/scene/figure/mod.rs b/voxygen/src/scene/figure/mod.rs index 3fcce08a08..c38852c513 100644 --- a/voxygen/src/scene/figure/mod.rs +++ b/voxygen/src/scene/figure/mod.rs @@ -1209,7 +1209,7 @@ impl FigureMgr { let target_base = match ( physics.on_ground, - vel.0.magnitude_squared() > MOVING_THRESHOLD_SQR, // Moving + vel.0.magnitude_squared() > 0.25, // Moving physics.in_fluid.is_some(), // In water ) { // Standing From a0d30dc60858d2a2d92865436c8e6777c7908fbe Mon Sep 17 00:00:00 2001 From: jshipsey Date: Thu, 3 Sep 2020 01:08:16 -0400 Subject: [PATCH 19/28] new models, shockwave anim --- voxygen/src/anim/src/golem/mod.rs | 2 + voxygen/src/anim/src/golem/shockwave.rs | 136 ++++++++++++++++++ .../src/anim/src/quadruped_medium/alpha.rs | 6 +- voxygen/src/anim/src/quadruped_medium/jump.rs | 6 +- voxygen/src/anim/src/quadruped_medium/mod.rs | 23 +-- voxygen/src/anim/src/quadruped_medium/run.rs | 6 +- voxygen/src/anim/src/quadruped_small/idle.rs | 2 +- voxygen/src/anim/src/quadruped_small/mod.rs | 132 ++++++++--------- voxygen/src/anim/src/quadruped_small/run.rs | 4 +- voxygen/src/anim/src/theropod/idle.rs | 17 ++- voxygen/src/anim/src/theropod/run.rs | 1 - voxygen/src/scene/figure/mod.rs | 2 +- 12 files changed, 232 insertions(+), 105 deletions(-) create mode 100644 voxygen/src/anim/src/golem/shockwave.rs diff --git a/voxygen/src/anim/src/golem/mod.rs b/voxygen/src/anim/src/golem/mod.rs index 5d5079f721..75fb864941 100644 --- a/voxygen/src/anim/src/golem/mod.rs +++ b/voxygen/src/anim/src/golem/mod.rs @@ -2,10 +2,12 @@ pub mod alpha; pub mod idle; pub mod jump; pub mod run; +pub mod shockwave; // Reexports pub use self::{ alpha::AlphaAnimation, idle::IdleAnimation, jump::JumpAnimation, run::RunAnimation, + shockwave::ShockwaveAnimation, }; use super::{make_bone, vek::*, FigureBoneData, Skeleton}; diff --git a/voxygen/src/anim/src/golem/shockwave.rs b/voxygen/src/anim/src/golem/shockwave.rs new file mode 100644 index 0000000000..85731ebdf1 --- /dev/null +++ b/voxygen/src/anim/src/golem/shockwave.rs @@ -0,0 +1,136 @@ +use super::{ + super::{vek::*, Animation}, + GolemSkeleton, SkeletonAttr, +}; +use std::f32::consts::PI; + +pub struct ShockwaveAnimation; + +impl Animation for ShockwaveAnimation { + type Dependency = (f32, f64); + type Skeleton = GolemSkeleton; + + #[cfg(feature = "use-dyn-lib")] + const UPDATE_FN: &'static [u8] = b"golem_shockwave\0"; + + #[cfg_attr(feature = "be-dyn-lib", export_name = "golem_shockwave")] + + fn update_skeleton_inner( + skeleton: &Self::Skeleton, + (velocity, _global_time): Self::Dependency, + anim_time: f64, + _rate: &mut f32, + skeleton_attr: &SkeletonAttr, + ) -> Self::Skeleton { + let mut next = (*skeleton).clone(); + + let lab = 1.0; + let breathe = (anim_time as f32 * lab as f32 + 1.5 * PI).sin(); + let twist = anim_time as f32 * lab as f32 * 2.5; + + let slower = (((1.0) + / (0.00001 + + 0.9999 + * ((anim_time as f32 * lab as f32 * 2.0 - 0.5 * PI).sin()).powf(2.0 as f32))) + .sqrt()) + * ((anim_time as f32 * lab as f32 * 2.0 - 0.5 * PI).sin()) + + 1.0; + next.head.position = Vec3::new(0.0, skeleton_attr.head.0, skeleton_attr.head.1) * 1.02; + next.head.orientation = + Quaternion::rotation_z((-twist * 2.0).max(-3.14)) * Quaternion::rotation_x(0.0); + next.head.scale = Vec3::one() * 1.02; + + next.upper_torso.position = Vec3::new( + 0.0, + skeleton_attr.upper_torso.0, + skeleton_attr.upper_torso.1 + slower * -3.0 + breathe * 1.0, + ) / 8.0; + next.upper_torso.orientation = + Quaternion::rotation_z((twist * 2.0).min(3.14)) * Quaternion::rotation_x(0.0); + next.upper_torso.scale = Vec3::one() / 8.0; + + next.lower_torso.position = Vec3::new( + 0.0, + skeleton_attr.lower_torso.0, + skeleton_attr.lower_torso.1 + slower * 1.0, + ); + next.lower_torso.orientation = + Quaternion::rotation_z((-twist * 2.0).max(-3.14)) * Quaternion::rotation_x(0.0); + next.lower_torso.scale = Vec3::one(); + + next.shoulder_l.position = Vec3::new( + -skeleton_attr.shoulder.0 - 2.0, + skeleton_attr.shoulder.1, + skeleton_attr.shoulder.2 - slower * 1.0, + ); + next.shoulder_l.orientation = + Quaternion::rotation_z(0.0) * Quaternion::rotation_y(0.6 + slower * -0.3); + next.shoulder_l.scale = Vec3::one(); + + next.shoulder_r.position = Vec3::new( + skeleton_attr.shoulder.0 + 2.0, + skeleton_attr.shoulder.1, + skeleton_attr.shoulder.2 - slower * 1.0, + ); + next.shoulder_r.orientation = + Quaternion::rotation_z(0.0) * Quaternion::rotation_y(-0.6 + slower * 0.3); + next.shoulder_r.scale = Vec3::one(); + + next.hand_l.position = Vec3::new( + -skeleton_attr.hand.0 - 1.0, + skeleton_attr.hand.1, + skeleton_attr.hand.2 - slower * 0.5 + breathe * -1.0, + ); + next.hand_l.orientation = + Quaternion::rotation_z(0.0) * Quaternion::rotation_y(-0.6 + slower * 0.3); + next.hand_l.scale = Vec3::one() * 1.02; + + next.hand_r.position = Vec3::new( + skeleton_attr.hand.0 + 1.0, + skeleton_attr.hand.1, + skeleton_attr.hand.2 - slower * 0.5 + breathe * -1.0, + ); + next.hand_r.orientation = + Quaternion::rotation_z(0.0) * Quaternion::rotation_y(0.6 + slower * -0.3); + next.hand_r.scale = Vec3::one() * 1.02; + if velocity < 0.5 { + next.leg_l.position = Vec3::new( + -skeleton_attr.leg.0, + skeleton_attr.leg.1, + skeleton_attr.leg.2 + slower * -0.5, + ) * 1.02; + next.leg_l.orientation = Quaternion::rotation_z(0.0) * Quaternion::rotation_x(0.0); + next.leg_l.scale = Vec3::one() * 1.02; + + next.leg_r.position = Vec3::new( + skeleton_attr.leg.0, + skeleton_attr.leg.1, + skeleton_attr.leg.2 + slower * -0.5, + ) * 1.02; + next.leg_r.orientation = Quaternion::rotation_z(0.0) * Quaternion::rotation_x(0.0); + next.leg_r.scale = Vec3::one() * 1.02; + + next.foot_l.position = Vec3::new( + -skeleton_attr.foot.0, + skeleton_attr.foot.1, + skeleton_attr.foot.2 + slower * 2.5 + breathe * -1.0, + ); + next.foot_l.orientation = Quaternion::rotation_z(0.0) * Quaternion::rotation_x(0.0); + next.foot_l.scale = Vec3::one(); + + next.foot_r.position = Vec3::new( + skeleton_attr.foot.0, + skeleton_attr.foot.1, + skeleton_attr.foot.2 + slower * 2.5 + breathe * -1.0, + ); + next.foot_r.orientation = Quaternion::rotation_z(0.0) * Quaternion::rotation_x(0.0); + next.foot_r.scale = Vec3::one(); + + next.torso.position = Vec3::new(0.0, 0.0, 0.0); + next.torso.orientation = Quaternion::rotation_z(0.0) * Quaternion::rotation_x(0.0); + next.torso.scale = Vec3::one(); + } else { + } + next + } +} diff --git a/voxygen/src/anim/src/quadruped_medium/alpha.rs b/voxygen/src/anim/src/quadruped_medium/alpha.rs index 83ef3ff1da..2a4f29261f 100644 --- a/voxygen/src/anim/src/quadruped_medium/alpha.rs +++ b/voxygen/src/anim/src/quadruped_medium/alpha.rs @@ -32,14 +32,12 @@ impl Animation for AlphaAnimation { .sqrt()) * ((anim_time as f32 * 4.0 + PI * 0.5).sin()); - next.head.position = - Vec3::new(0.0, skeleton_attr.head.0, skeleton_attr.head.1); + next.head.position = Vec3::new(0.0, skeleton_attr.head.0, skeleton_attr.head.1); next.head.orientation = Quaternion::rotation_y(short * -0.2) * Quaternion::rotation_x(0.1 + short * 0.2); next.head.scale = Vec3::one(); - next.neck.position = - Vec3::new(0.0, skeleton_attr.neck.0, skeleton_attr.neck.1); + next.neck.position = Vec3::new(0.0, skeleton_attr.neck.0, skeleton_attr.neck.1); next.neck.orientation = Quaternion::rotation_z(0.0) * Quaternion::rotation_x(0.0); next.neck.scale = Vec3::one() * 1.02; diff --git a/voxygen/src/anim/src/quadruped_medium/jump.rs b/voxygen/src/anim/src/quadruped_medium/jump.rs index 8dd0df60e0..35640b8097 100644 --- a/voxygen/src/anim/src/quadruped_medium/jump.rs +++ b/voxygen/src/anim/src/quadruped_medium/jump.rs @@ -22,13 +22,11 @@ impl Animation for JumpAnimation { ) -> Self::Skeleton { let mut next = (*skeleton).clone(); - next.head.position = - Vec3::new(0.0, skeleton_attr.head.0, skeleton_attr.head.1); + next.head.position = Vec3::new(0.0, skeleton_attr.head.0, skeleton_attr.head.1); next.head.orientation = Quaternion::rotation_z(0.4) * Quaternion::rotation_x(0.3); next.head.scale = Vec3::one(); - next.neck.position = - Vec3::new(0.0, skeleton_attr.neck.0, skeleton_attr.neck.1); + next.neck.position = Vec3::new(0.0, skeleton_attr.neck.0, skeleton_attr.neck.1); next.neck.orientation = Quaternion::rotation_z(0.2) * Quaternion::rotation_x(0.3); next.neck.scale = Vec3::one() * 1.02; diff --git a/voxygen/src/anim/src/quadruped_medium/mod.rs b/voxygen/src/anim/src/quadruped_medium/mod.rs index e77e2d3f8f..1c843add78 100644 --- a/voxygen/src/anim/src/quadruped_medium/mod.rs +++ b/voxygen/src/anim/src/quadruped_medium/mod.rs @@ -90,7 +90,6 @@ pub struct SkeletonAttr { feet_b: (f32, f32, f32), scaler: f32, startangle: f32, - maximize: f32, tempo: f32, spring: f32, } @@ -122,7 +121,6 @@ impl Default for SkeletonAttr { feet_b: (0.0, 0.0, 0.0), scaler: 0.0, startangle: 0.0, - maximize: 0.0, tempo: 0.0, spring: 0.0, } @@ -301,7 +299,7 @@ impl<'a> From<&'a Body> for SkeletonAttr { }, scaler: match (body.species, body.body_type) { (Grolgar, _) => (1.3), - (Saber, _) => (0.9), + (Saber, _) => (1.1), (Tuskram, _) => (1.2), (Lion, _) => (1.3), (Tarasque, _) => (1.3), @@ -320,31 +318,16 @@ impl<'a> From<&'a Body> for SkeletonAttr { (Saber, _) => (-0.2), (Tuskram, _) => (0.3), (Lion, _) => (0.2), - (Tarasque, _) => (0.2), + (Tarasque, _) => (-0.5), (Tiger, _) => (0.0), (Wolf, _) => (0.0), (Frostfang, _) => (0.0), (Mouflon, _) => (0.0), (Catoblepas, _) => (0.2), - (Bonerattler, _) => (0.2), + (Bonerattler, _) => (-0.7), (Deer, _) => (0.0), (Hirdrassil, _) => (0.0), }, - maximize: match (body.species, body.body_type) { - (Grolgar, _) => (2.0), - (Saber, _) => (1.5), - (Tuskram, _) => (1.0), - (Lion, _) => (1.1), - (Tarasque, _) => (1.8), - (Tiger, _) => (1.8), - (Wolf, _) => (1.0), - (Frostfang, _) => (1.2), - (Mouflon, _) => (1.1), - (Catoblepas, _) => (0.0), - (Bonerattler, _) => (0.8), - (Deer, _) => (1.1), - (Hirdrassil, _) => (1.1), - }, tempo: match (body.species, body.body_type) { (Grolgar, _) => (0.95), (Saber, _) => (1.1), diff --git a/voxygen/src/anim/src/quadruped_medium/run.rs b/voxygen/src/anim/src/quadruped_medium/run.rs index 935755d239..7a725af36a 100644 --- a/voxygen/src/anim/src/quadruped_medium/run.rs +++ b/voxygen/src/anim/src/quadruped_medium/run.rs @@ -99,8 +99,7 @@ impl Animation for RunAnimation { let x_tilt = avg_vel.z.atan2(avg_vel.xy().magnitude()); //Gallop - next.head.position = - Vec3::new(0.0, skeleton_attr.head.0, skeleton_attr.head.1); + next.head.position = Vec3::new(0.0, skeleton_attr.head.0, skeleton_attr.head.1); next.head.orientation = Quaternion::rotation_x( look.y * 0.3 / ((canceler).max(0.5)) + amplitude * short * -0.03 - 0.1, ) * Quaternion::rotation_z( @@ -108,8 +107,7 @@ impl Animation for RunAnimation { ) * Quaternion::rotation_y(tilt * 0.8); next.head.scale = Vec3::one(); - next.neck.position = - Vec3::new(0.0, skeleton_attr.neck.0, skeleton_attr.neck.1); + next.neck.position = Vec3::new(0.0, skeleton_attr.neck.0, skeleton_attr.neck.1); next.neck.orientation = Quaternion::rotation_z(tilt * -0.8) * Quaternion::rotation_x(amplitude * short * -0.05) * Quaternion::rotation_y(tilt * 0.3); diff --git a/voxygen/src/anim/src/quadruped_small/idle.rs b/voxygen/src/anim/src/quadruped_small/idle.rs index 9209704c2d..932107540b 100644 --- a/voxygen/src/anim/src/quadruped_small/idle.rs +++ b/voxygen/src/anim/src/quadruped_small/idle.rs @@ -25,7 +25,7 @@ impl Animation for IdleAnimation { let slow = (anim_time as f32 * 3.5).sin(); - let slow_alt = (anim_time as f32 * 3.5 + PI).sin(); + let slow_alt = (anim_time as f32 * 3.5 + PI / 2.0).sin(); let head_look = Vec2::new( ((global_time + anim_time) as f32 / 8.0) diff --git a/voxygen/src/anim/src/quadruped_small/mod.rs b/voxygen/src/anim/src/quadruped_small/mod.rs index 49e90ccbee..ed9e73cef4 100644 --- a/voxygen/src/anim/src/quadruped_small/mod.rs +++ b/voxygen/src/anim/src/quadruped_small/mod.rs @@ -114,12 +114,12 @@ impl<'a> From<&'a Body> for SkeletonAttr { (Rabbit, _) => (4.0, 3.0), (Truffler, _) => (7.5, -9.0), (Frog, _) => (4.0, 2.0), - (Rat, _) => (6.0, -2.0), - (Axolotl, _) => (7.0, 1.0), - (Gecko, _) => (7.5, 2.0), - (Turtle, _) => (4.0, 3.0), - (Squirrel, _) => (7.5, -9.0), - (Fungome, _) => (4.0, 2.0), + (Rat, _) => (5.0, -1.0), + (Axolotl, _) => (3.0, 2.0), + (Gecko, _) => (4.0, 2.0), + (Turtle, _) => (5.0, -2.0), + (Squirrel, _) => (3.5, 1.0), + (Fungome, _) => (1.5, -1.5), (Porcupine, _) => (6.0, 1.0), (Beaver, _) => (5.5, 0.0), }, @@ -140,12 +140,12 @@ impl<'a> From<&'a Body> for SkeletonAttr { (Rabbit, _) => (-2.0, 6.0), (Truffler, _) => (-2.0, 16.0), (Frog, _) => (-2.0, 4.5), - (Rat, _) => (6.0, -2.0), - (Axolotl, _) => (7.0, 1.0), - (Gecko, _) => (7.5, 2.0), - (Turtle, _) => (4.0, 3.0), - (Squirrel, _) => (7.5, -9.0), - (Fungome, _) => (4.0, 2.0), + (Rat, _) => (6.0, 5.0), + (Axolotl, _) => (3.0, 5.0), + (Gecko, _) => (7.5, 3.0), + (Turtle, _) => (1.0, 6.0), + (Squirrel, _) => (4.0, 5.0), + (Fungome, _) => (4.0, 4.0), (Porcupine, _) => (2.0, 11.0), (Beaver, _) => (2.0, 6.0), }, @@ -166,12 +166,12 @@ impl<'a> From<&'a Body> for SkeletonAttr { (Rabbit, _) => (3.0, 3.0, -3.0), (Truffler, _) => (2.5, 5.0, -9.0), (Frog, _) => (4.5, 6.5, 0.0), - (Rat, _) => (6.0, -2.0, 0.0), - (Axolotl, _) => (7.0, 1.0, 0.0), - (Gecko, _) => (7.5, 2.0, 0.0), - (Turtle, _) => (4.0, 3.0, 0.0), - (Squirrel, _) => (7.5, -9.0, 0.0), - (Fungome, _) => (4.0, 2.0, 0.0), + (Rat, _) => (5.0, 2.5, -1.0), + (Axolotl, _) => (2.0, 2.0, -2.0), + (Gecko, _) => (2.0, 4.0, 0.0), + (Turtle, _) => (5.0, 4.0, -2.0), + (Squirrel, _) => (3.5, 3.0, -1.0), + (Fungome, _) => (3.0, 2.0, -1.0), (Porcupine, _) => (4.0, 6.5, -9.0), (Beaver, _) => (4.5, 4.5, -4.0), }, @@ -192,12 +192,12 @@ impl<'a> From<&'a Body> for SkeletonAttr { (Rabbit, _) => (3.5, -2.0, -1.0), (Truffler, _) => (3.0, -5.0, -9.5), (Frog, _) => (5.0, -3.5, 0.0), - (Rat, _) => (6.0, -2.0, 0.0), - (Axolotl, _) => (7.0, 1.0, 0.0), - (Gecko, _) => (7.5, 2.0, 0.0), - (Turtle, _) => (4.0, 3.0, 0.0), - (Squirrel, _) => (7.5, -9.0, 0.0), - (Fungome, _) => (4.0, 2.0, 0.0), + (Rat, _) => (5.0, -2.0, 1.0), + (Axolotl, _) => (2.0, -3.0, -2.0), + (Gecko, _) => (1.5, -1.0, 0.0), + (Turtle, _) => (5.5, -2.5, -2.0), + (Squirrel, _) => (3.5, -3.0, 0.0), + (Fungome, _) => (3.0, -3.5, -1.0), (Porcupine, _) => (4.5, -1.0, -8.0), (Beaver, _) => (4.0, -2.5, -3.0), }, @@ -218,12 +218,12 @@ impl<'a> From<&'a Body> for SkeletonAttr { (Rabbit, _) => (-4.0, -0.0), (Truffler, _) => (0.0, 0.0), (Frog, _) => (0.0, -0.0), - (Rat, _) => (6.0, -2.0), - (Axolotl, _) => (7.0, 1.0), - (Gecko, _) => (7.5, 2.0), - (Turtle, _) => (4.0, 3.0), - (Squirrel, _) => (7.5, -9.0), - (Fungome, _) => (4.0, 2.0), + (Rat, _) => (-1.0, 2.0), + (Axolotl, _) => (-4.0, -1.0), + (Gecko, _) => (-4.0, 0.0), + (Turtle, _) => (-6.0, -2.0), + (Squirrel, _) => (-5.0, 0.0), + (Fungome, _) => (-4.0, -2.0), (Porcupine, _) => (-6.0, 1.0), (Beaver, _) => (-6.5, -1.0), }, @@ -244,12 +244,12 @@ impl<'a> From<&'a Body> for SkeletonAttr { (Rabbit, _) => (0.7), (Truffler, _) => (1.0), (Frog, _) => (0.7), - (Rat, _) => (6.0), - (Axolotl, _) => (7.0), - (Gecko, _) => (7.5), - (Turtle, _) => (4.0), - (Squirrel, _) => (7.5), - (Fungome, _) => (4.0), + (Rat, _) => (0.65), + (Axolotl, _) => (0.65), + (Gecko, _) => (0.7), + (Turtle, _) => (0.9), + (Squirrel, _) => (0.7), + (Fungome, _) => (0.9), (Porcupine, _) => (1.0), (Beaver, _) => (1.0), }, @@ -270,12 +270,12 @@ impl<'a> From<&'a Body> for SkeletonAttr { (Rabbit, _) => (1.15), (Truffler, _) => (1.0), (Frog, _) => (1.15), - (Rat, _) => (6.0), - (Axolotl, _) => (7.0), - (Gecko, _) => (7.5), - (Turtle, _) => (4.0), - (Squirrel, _) => (7.5), - (Fungome, _) => (4.0), + (Rat, _) => (1.0), + (Axolotl, _) => (1.2), + (Gecko, _) => (1.1), + (Turtle, _) => (0.9), + (Squirrel, _) => (1.15), + (Fungome, _) => (1.0), (Porcupine, _) => (1.2), (Beaver, _) => (1.2), }, @@ -296,12 +296,12 @@ impl<'a> From<&'a Body> for SkeletonAttr { (Rabbit, _) => (1.3), (Truffler, _) => (1.0), (Frog, _) => (1.3), - (Rat, _) => (0.1), - (Axolotl, _) => (0.1), - (Gecko, _) => (0.1), - (Turtle, _) => (0.1), - (Squirrel, _) => (0.1), - (Fungome, _) => (0.1), + (Rat, _) => (1.0), + (Axolotl, _) => (0.9), + (Gecko, _) => (1.0), + (Turtle, _) => (0.8), + (Squirrel, _) => (1.0), + (Fungome, _) => (0.7), (Porcupine, _) => (1.0), (Beaver, _) => (1.0), }, @@ -322,12 +322,12 @@ impl<'a> From<&'a Body> for SkeletonAttr { (Rabbit, _) => (0.8), (Truffler, _) => (1.0), (Frog, _) => (0.8), - (Rat, _) => (0.1), - (Axolotl, _) => (0.1), - (Gecko, _) => (0.1), - (Turtle, _) => (0.1), - (Squirrel, _) => (0.1), - (Fungome, _) => (0.1), + (Rat, _) => (1.0), + (Axolotl, _) => (1.0), + (Gecko, _) => (1.0), + (Turtle, _) => (0.8), + (Squirrel, _) => (1.0), + (Fungome, _) => (0.4), (Porcupine, _) => (0.9), (Beaver, _) => (0.9), }, @@ -348,12 +348,12 @@ impl<'a> From<&'a Body> for SkeletonAttr { (Rabbit, _) => (2.5), (Truffler, _) => (0.8), (Frog, _) => (2.5), - (Rat, _) => (0.1), - (Axolotl, _) => (0.1), - (Gecko, _) => (0.1), - (Turtle, _) => (0.1), - (Squirrel, _) => (0.1), - (Fungome, _) => (0.1), + (Rat, _) => (1.0), + (Axolotl, _) => (0.8), + (Gecko, _) => (1.0), + (Turtle, _) => (0.7), + (Squirrel, _) => (1.0), + (Fungome, _) => (0.8), (Porcupine, _) => (1.3), (Beaver, _) => (1.3), }, @@ -374,12 +374,12 @@ impl<'a> From<&'a Body> for SkeletonAttr { (Rabbit, _) => (1.2), (Truffler, _) => (0.6), (Frog, _) => (0.7), - (Rat, _) => (0.1), - (Axolotl, _) => (0.1), - (Gecko, _) => (0.1), - (Turtle, _) => (0.1), - (Squirrel, _) => (0.1), - (Fungome, _) => (0.1), + (Rat, _) => (1.0), + (Axolotl, _) => (0.8), + (Gecko, _) => (1.0), + (Turtle, _) => (0.7), + (Squirrel, _) => (1.0), + (Fungome, _) => (0.7), (Porcupine, _) => (1.0), (Beaver, _) => (1.0), }, diff --git a/voxygen/src/anim/src/quadruped_small/run.rs b/voxygen/src/anim/src/quadruped_small/run.rs index cbf1092460..a88a6369f0 100644 --- a/voxygen/src/anim/src/quadruped_small/run.rs +++ b/voxygen/src/anim/src/quadruped_small/run.rs @@ -72,11 +72,11 @@ impl Animation for RunAnimation { next.leg_fl.position = Vec3::new( -skeleton_attr.feet_f.0, - skeleton_attr.feet_f.1 + footverttf * 3.0 * skeleton_attr.maximize, + skeleton_attr.feet_f.1 + footverttf * 3.0 * skeleton_attr.minimize, skeleton_attr.feet_f.2 + ((footvertf * -1.5).max(-1.0)), ); next.leg_fl.orientation = - Quaternion::rotation_x(0.2 + skeleton_attr.minimize * footverttf * 0.65) + Quaternion::rotation_x(0.2 + skeleton_attr.maximize * footverttf * 0.65) * Quaternion::rotation_z(tilt * -0.5) * Quaternion::rotation_y(tilt * 1.5); next.leg_fl.scale = Vec3::one() * 1.02; diff --git a/voxygen/src/anim/src/theropod/idle.rs b/voxygen/src/anim/src/theropod/idle.rs index 62c4e8d03d..b37857e31e 100644 --- a/voxygen/src/anim/src/theropod/idle.rs +++ b/voxygen/src/anim/src/theropod/idle.rs @@ -1,7 +1,7 @@ use super::{super::Animation, SkeletonAttr, TheropodSkeleton}; //use std::{f32::consts::PI, ops::Mul}; use super::super::vek::*; -use std::{f32::consts::PI, ops::Mul}; +use std::ops::Mul; pub struct IdleAnimation; @@ -23,13 +23,26 @@ impl Animation for IdleAnimation { let mut next = (*skeleton).clone(); let breathe = (anim_time as f32 * 0.8).sin(); + let head_look = Vec2::new( + ((global_time + anim_time) as f32 / 8.0) + .floor() + .mul(7331.0) + .sin() + * 0.5, + ((global_time + anim_time) as f32 / 8.0) + .floor() + .mul(1337.0) + .sin() + * 0.25, + ); next.head.position = Vec3::new( 0.0, skeleton_attr.head.0, skeleton_attr.head.1 + breathe * 0.3, ); - next.head.orientation = Quaternion::rotation_x(breathe * 0.1 - 0.1); + next.head.orientation = Quaternion::rotation_x(head_look.y + breathe * 0.1 - 0.1) + * Quaternion::rotation_z(head_look.x); next.head.scale = Vec3::one() * 1.02; next.jaw.position = Vec3::new(0.0, skeleton_attr.jaw.0, skeleton_attr.jaw.1); diff --git a/voxygen/src/anim/src/theropod/run.rs b/voxygen/src/anim/src/theropod/run.rs index 4187b28149..76b4e36395 100644 --- a/voxygen/src/anim/src/theropod/run.rs +++ b/voxygen/src/anim/src/theropod/run.rs @@ -32,7 +32,6 @@ impl Animation for RunAnimation { let canceler = speed / topspeed; let lab = 0.5; //6 - let amplitude = (speed / topspeed).max(0.25); let amplitude2 = (speed * 1.4 / topspeed).max(0.6); let amplitude3 = (speed / topspeed).max(0.35); let speedmult = if speed > 0.0 { diff --git a/voxygen/src/scene/figure/mod.rs b/voxygen/src/scene/figure/mod.rs index c38852c513..5d95d14b07 100644 --- a/voxygen/src/scene/figure/mod.rs +++ b/voxygen/src/scene/figure/mod.rs @@ -1210,7 +1210,7 @@ impl FigureMgr { let target_base = match ( physics.on_ground, vel.0.magnitude_squared() > 0.25, // Moving - physics.in_fluid.is_some(), // In water + physics.in_fluid.is_some(), // In water ) { // Standing (true, false, false) => { From 62b929120bc3d06b1e89a391aba5c007479e4fa8 Mon Sep 17 00:00:00 2001 From: Snowram Date: Thu, 3 Sep 2020 20:29:53 +0200 Subject: [PATCH 20/28] Initial quadmed feed animation --- .../quadruped_medium_central_manifest.ron | 4 +- common/src/states/utils.rs | 2 +- voxygen/src/anim/src/quadruped_medium/feed.rs | 205 ++++++++++++++++++ voxygen/src/anim/src/quadruped_medium/idle.rs | 2 +- voxygen/src/anim/src/quadruped_medium/mod.rs | 20 +- voxygen/src/scene/figure/mod.rs | 9 + 6 files changed, 233 insertions(+), 9 deletions(-) create mode 100644 voxygen/src/anim/src/quadruped_medium/feed.rs diff --git a/assets/voxygen/voxel/quadruped_medium_central_manifest.ron b/assets/voxygen/voxel/quadruped_medium_central_manifest.ron index ad5263a0f1..3c50063065 100644 --- a/assets/voxygen/voxel/quadruped_medium_central_manifest.ron +++ b/assets/voxygen/voxel/quadruped_medium_central_manifest.ron @@ -481,7 +481,7 @@ ), (Mouflon, Male): ( head: ( - offset: (-7.0, 0.0, -4.5), + offset: (-7.0, -5.0, 0.0), central: ("npc.mouflon.male.head"), ), neck: ( @@ -511,7 +511,7 @@ ), (Mouflon, Female): ( head: ( - offset: (-7.0, 0.0, -4.5), + offset: (-7.0, -5.0, 0.0), central: ("npc.mouflon.male.head"), ), neck: ( diff --git a/common/src/states/utils.rs b/common/src/states/utils.rs index dfbd747cce..1b50424c2e 100644 --- a/common/src/states/utils.rs +++ b/common/src/states/utils.rs @@ -32,7 +32,7 @@ impl Body { match self { Body::Humanoid(_) => 100.0, Body::QuadrupedSmall(_) => 125.0, - Body::QuadrupedMedium(_) => 30.0, + Body::QuadrupedMedium(_) => 180.0, Body::BirdMedium(_) => 80.0, Body::FishMedium(_) => 50.0, Body::Dragon(_) => 250.0, diff --git a/voxygen/src/anim/src/quadruped_medium/feed.rs b/voxygen/src/anim/src/quadruped_medium/feed.rs new file mode 100644 index 0000000000..bef398b5fa --- /dev/null +++ b/voxygen/src/anim/src/quadruped_medium/feed.rs @@ -0,0 +1,205 @@ +use super::{ + super::{vek::*, Animation}, + QuadrupedMediumSkeleton, SkeletonAttr, +}; +use std::{f32::consts::PI, ops::Mul}; + +pub struct FeedAnimation; + +impl Animation for FeedAnimation { + type Dependency = f64; + type Skeleton = QuadrupedMediumSkeleton; + + #[cfg(feature = "use-dyn-lib")] + const UPDATE_FN: &'static [u8] = b"quadruped_medium_feed\0"; + + #[cfg_attr(feature = "be-dyn-lib", export_name = "quadruped_medium_feed")] + fn update_skeleton_inner( + skeleton: &Self::Skeleton, + global_time: Self::Dependency, + anim_time: f64, + _rate: &mut f32, + skeleton_attr: &SkeletonAttr, + ) -> Self::Skeleton { + let mut next = (*skeleton).clone(); + + let slower = (anim_time as f32 * 1.0 + PI).sin(); + let slow = (anim_time as f32 * 3.5 + PI).sin(); + let fast = (anim_time as f32 * 5.0).sin(); + let faster = (anim_time as f32 * 14.0).sin(); + + let transition = (anim_time as f32).min(0.4) / 0.4; + + let look = Vec2::new( + ((global_time + anim_time) as f32 / 8.0) + .floor() + .mul(7331.0) + .sin() + * 0.5, + ((global_time + anim_time) as f32 / 8.0) + .floor() + .mul(1337.0) + .sin() + * 0.25, + ); + let tailmove = Vec2::new( + ((global_time + anim_time) as f32 / 2.0) + .floor() + .mul(7331.0) + .sin() + * 0.25, + ((global_time + anim_time) as f32 / 2.0) + .floor() + .mul(1337.0) + .sin() + * 0.125, + ); + + if skeleton_attr.feed.0 { + next.head.position = Vec3::new( + 0.0, + skeleton_attr.head.0, + skeleton_attr.head.1 + slower * 0.2, + ); + next.head.orientation = + Quaternion::rotation_z(0.3 * look.x) + * Quaternion::rotation_x(fast * 0.05 + faster * 0.08 + 0.8 * skeleton_attr.feed.1 * transition); + next.head.scale = Vec3::one(); + + next.neck.position = Vec3::new( + 0.0, + skeleton_attr.neck.0, + skeleton_attr.neck.1 + slower * 0.1 - 4.0 * transition, + ); + next.neck.orientation =Quaternion::rotation_x(-2.5 * skeleton_attr.feed.1 * transition); + next.neck.scale = Vec3::one() * 1.02; + + next.jaw.position = Vec3::new( + 0.0, + skeleton_attr.jaw.0 - slower * 0.12, + skeleton_attr.jaw.1 + slow * 0.2 + 0.5, + ); + next.jaw.orientation = Quaternion::rotation_x((fast * 0.18 + faster * 0.26).min(0.0)); + next.jaw.scale = Vec3::one() * 1.02; + } else { + next.head.position = Vec3::new( + 0.0, + skeleton_attr.head.0, + skeleton_attr.head.1 + slower * 0.2, + ); + next.head.orientation = + Quaternion::rotation_z(0.3 * look.x) * Quaternion::rotation_x(0.3 * look.y); + next.head.scale = Vec3::one(); + + next.neck.position = Vec3::new( + 0.0, + skeleton_attr.neck.0, + skeleton_attr.neck.1 + slower * 0.1, + ); + next.neck.orientation = Quaternion::rotation_z(0.0) * Quaternion::rotation_x(0.0); + next.neck.scale = Vec3::one() * 1.02; + + next.jaw.position = Vec3::new( + 0.0, + skeleton_attr.jaw.0 - slower * 0.12, + skeleton_attr.jaw.1 + slow * 0.2 + 0.5, + ); + next.jaw.orientation = Quaternion::rotation_x(slow * 0.05 - 0.08); + next.jaw.scale = Vec3::one() * 1.02; + } + + next.tail.position = Vec3::new(0.0, skeleton_attr.tail.0, skeleton_attr.tail.1); + next.tail.orientation = + Quaternion::rotation_z(0.0 + slow * 0.2 + tailmove.x) * Quaternion::rotation_x(0.0); + next.tail.scale = Vec3::one(); + + next.torso_front.position = Vec3::new( + 0.0, + skeleton_attr.torso_front.0, + skeleton_attr.torso_front.1 + slower * 0.3, + ) * skeleton_attr.scaler + / 11.0; + next.torso_front.orientation = Quaternion::rotation_y(slow * 0.02); + next.torso_front.scale = Vec3::one() * skeleton_attr.scaler / 11.0; + + next.torso_back.position = Vec3::new( + 0.0, + skeleton_attr.torso_back.0, + skeleton_attr.torso_back.1 + slower * 0.2, + ); + next.torso_back.orientation = Quaternion::rotation_y(-slow * 0.005) + * Quaternion::rotation_z(0.0) + * Quaternion::rotation_x(0.0); + next.torso_back.scale = Vec3::one() * 0.99; + + next.ears.position = Vec3::new(0.0, skeleton_attr.ears.0, skeleton_attr.ears.1); + next.ears.orientation = Quaternion::rotation_x(0.0 + slower * 0.03); + next.ears.scale = Vec3::one() * 1.02; + + next.leg_fl.position = Vec3::new( + -skeleton_attr.leg_f.0, + skeleton_attr.leg_f.1, + skeleton_attr.leg_f.2 + slow * -0.15 + slower * -0.15, + ); + next.leg_fl.orientation = Quaternion::rotation_y(slow * -0.02); + next.leg_fl.scale = Vec3::one() * 1.02; + + next.leg_fr.position = Vec3::new( + skeleton_attr.leg_f.0, + skeleton_attr.leg_f.1, + skeleton_attr.leg_f.2 + slow * 0.15 + slower * -0.15, + ); + next.leg_fr.orientation = Quaternion::rotation_y(slow * -0.02); + next.leg_fr.scale = Vec3::one() * 1.02; + + next.leg_bl.position = Vec3::new( + -skeleton_attr.leg_b.0, + skeleton_attr.leg_b.1, + skeleton_attr.leg_b.2 + slower * -0.3, + ); + next.leg_bl.orientation = Quaternion::rotation_y(slow * -0.02); + next.leg_bl.scale = Vec3::one() * 1.02; + + next.leg_br.position = Vec3::new( + skeleton_attr.leg_b.0, + skeleton_attr.leg_b.1, + skeleton_attr.leg_b.2 + slower * -0.3, + ); + next.leg_br.orientation = Quaternion::rotation_y(slow * -0.02); + next.leg_br.scale = Vec3::one() * 1.02; + + next.foot_fl.position = Vec3::new( + -skeleton_attr.feet_f.0, + skeleton_attr.feet_f.1, + skeleton_attr.feet_f.2 + slower * -0.2, + ); + next.foot_fl.orientation = Quaternion::rotation_x(0.0); + next.foot_fl.scale = Vec3::one() * 0.94; + + next.foot_fr.position = Vec3::new( + skeleton_attr.feet_f.0, + skeleton_attr.feet_f.1, + skeleton_attr.feet_f.2 + slower * -0.2, + ); + next.foot_fr.orientation = Quaternion::rotation_x(0.0); + next.foot_fr.scale = Vec3::one() * 0.94; + + next.foot_bl.position = Vec3::new( + -skeleton_attr.feet_b.0, + skeleton_attr.feet_b.1, + skeleton_attr.feet_b.2 + slower * -0.2, + ); + next.foot_bl.orientation = Quaternion::rotation_x(0.0); + next.foot_bl.scale = Vec3::one() * 0.94; + + next.foot_br.position = Vec3::new( + skeleton_attr.feet_b.0, + skeleton_attr.feet_b.1, + skeleton_attr.feet_b.2 + slower * -0.2, + ); + next.foot_br.orientation = Quaternion::rotation_x(0.0); + next.foot_br.scale = Vec3::one() * 0.94; + + next + } +} \ No newline at end of file diff --git a/voxygen/src/anim/src/quadruped_medium/idle.rs b/voxygen/src/anim/src/quadruped_medium/idle.rs index 3285ba2bcb..5da26b09e6 100644 --- a/voxygen/src/anim/src/quadruped_medium/idle.rs +++ b/voxygen/src/anim/src/quadruped_medium/idle.rs @@ -170,4 +170,4 @@ impl Animation for IdleAnimation { next } -} +} \ No newline at end of file diff --git a/voxygen/src/anim/src/quadruped_medium/mod.rs b/voxygen/src/anim/src/quadruped_medium/mod.rs index 1c843add78..0ed951dca2 100644 --- a/voxygen/src/anim/src/quadruped_medium/mod.rs +++ b/voxygen/src/anim/src/quadruped_medium/mod.rs @@ -1,11 +1,12 @@ pub mod alpha; +pub mod feed; pub mod idle; pub mod jump; pub mod run; // Reexports pub use self::{ - alpha::AlphaAnimation, idle::IdleAnimation, jump::JumpAnimation, run::RunAnimation, + alpha::AlphaAnimation, feed::FeedAnimation, idle::IdleAnimation, jump::JumpAnimation, run::RunAnimation, }; use super::{make_bone, vek::*, FigureBoneData, Skeleton}; @@ -92,6 +93,7 @@ pub struct SkeletonAttr { startangle: f32, tempo: f32, spring: f32, + feed: (bool, f32), } impl<'a> std::convert::TryFrom<&'a comp::Body> for SkeletonAttr { @@ -123,6 +125,7 @@ impl Default for SkeletonAttr { startangle: 0.0, tempo: 0.0, spring: 0.0, + feed: (false, 0.0), } } } @@ -140,7 +143,7 @@ impl<'a> From<&'a Body> for SkeletonAttr { (Tiger, _) => (2.0, 1.0), (Wolf, _) => (-0.5, 3.0), (Frostfang, _) => (1.0, -2.0), - (Mouflon, _) => (-2.5, 6.0), + (Mouflon, _) => (0.5, 1.5), (Catoblepas, _) => (-1.0, -6.5), (Bonerattler, _) => (-1.0, 2.5), (Deer, Male) => (0.5, 3.5), @@ -156,7 +159,7 @@ impl<'a> From<&'a Body> for SkeletonAttr { (Tiger, _) => (0.0, 0.0), (Wolf, _) => (-4.5, 2.0), (Frostfang, _) => (2.0, 1.5), - (Mouflon, _) => (-1.0, 0.5), + (Mouflon, _) => (-1.0, 1.0), (Catoblepas, _) => (19.5, -2.0), (Bonerattler, _) => (7.0, -1.5), (Deer, _) => (-0.5, 1.0), @@ -171,7 +174,7 @@ impl<'a> From<&'a Body> for SkeletonAttr { (Tiger, _) => (3.5, -4.0), (Wolf, _) => (5.0, -3.0), (Frostfang, _) => (4.0, -3.0), - (Mouflon, _) => (10.5, -4.0), + (Mouflon, _) => (6.0, 0.5), (Catoblepas, _) => (1.0, -4.0), (Bonerattler, _) => (3.0, -3.0), (Deer, _) => (3.5, 2.0), @@ -358,6 +361,13 @@ impl<'a> From<&'a Body> for SkeletonAttr { (Deer, _) => (0.9), (Hirdrassil, _) => (1.1), }, + feed: match (body.species, body.body_type) { + (Tuskram, _) => (true, 0.5), + (Mouflon, _) => (true, 1.0), + (Deer, _) => (true, 1.0), + (Hirdrassil, _) => (true, 0.9), + (_, _) => (false, 0.0), + }, } } -} +} \ No newline at end of file diff --git a/voxygen/src/scene/figure/mod.rs b/voxygen/src/scene/figure/mod.rs index 5d95d14b07..7a6c93c8be 100644 --- a/voxygen/src/scene/figure/mod.rs +++ b/voxygen/src/scene/figure/mod.rs @@ -1268,6 +1268,15 @@ impl FigureMgr { skeleton_attr, ) }, + CharacterState::Sit { .. } => { + anim::quadruped_medium::FeedAnimation::update_skeleton( + &target_base, + time, + state.state_time, + &mut state_animation_rate, + skeleton_attr, + ) + }, // TODO! _ => target_base, }; From 672ff7c523df5cd92151ebab9162504207156d44 Mon Sep 17 00:00:00 2001 From: jshipsey Date: Thu, 3 Sep 2020 21:47:02 -0400 Subject: [PATCH 21/28] quadsmall manifest changes --- assets/common/items/armor/starter/glider.ron | 4 +- .../voxygen/voxel/npc/axolotl/male/chest.vox | Bin 3736 -> 1620 bytes .../voxel/npc/axolotl/male/foot_bl.vox | Bin 1128 -> 1144 bytes .../voxel/npc/axolotl/male/foot_br.vox | Bin 1128 -> 1144 bytes .../voxel/npc/axolotl/male/foot_fl.vox | Bin 1128 -> 1144 bytes .../voxel/npc/axolotl/male/foot_fr.vox | Bin 1128 -> 1144 bytes .../voxygen/voxel/npc/axolotl/male/head.vox | Bin 1376 -> 1720 bytes .../voxygen/voxel/npc/axolotl/male/tail.vox | Bin 1116 -> 1296 bytes .../voxygen/voxel/npc/fungome/male/chest.vox | Bin 3736 -> 3232 bytes .../voxel/npc/fungome/male/foot_bl.vox | Bin 1128 -> 1136 bytes .../voxel/npc/fungome/male/foot_br.vox | Bin 1128 -> 1136 bytes .../voxel/npc/fungome/male/foot_fl.vox | Bin 1128 -> 1140 bytes .../voxel/npc/fungome/male/foot_fr.vox | Bin 1128 -> 1140 bytes .../voxygen/voxel/npc/fungome/male/head.vox | Bin 1376 -> 1376 bytes .../voxygen/voxel/npc/fungome/male/tail.vox | Bin 1116 -> 1152 bytes assets/voxygen/voxel/npc/gecko/male/Gecko.vox | Bin 0 -> 57760 bytes assets/voxygen/voxel/npc/gecko/male/chest.vox | Bin 3736 -> 1520 bytes .../voxygen/voxel/npc/gecko/male/foot_bl.vox | Bin 1128 -> 1172 bytes .../voxygen/voxel/npc/gecko/male/foot_br.vox | Bin 1128 -> 1172 bytes .../voxygen/voxel/npc/gecko/male/foot_fl.vox | Bin 1128 -> 1168 bytes .../voxygen/voxel/npc/gecko/male/foot_fr.vox | Bin 1128 -> 1168 bytes assets/voxygen/voxel/npc/gecko/male/head.vox | Bin 1376 -> 1448 bytes assets/voxygen/voxel/npc/gecko/male/tail.vox | Bin 1116 -> 1244 bytes assets/voxygen/voxel/npc/rat/male/chest.vox | Bin 3736 -> 2496 bytes assets/voxygen/voxel/npc/rat/male/foot_bl.vox | Bin 1128 -> 1252 bytes assets/voxygen/voxel/npc/rat/male/foot_br.vox | Bin 1128 -> 1252 bytes assets/voxygen/voxel/npc/rat/male/foot_fl.vox | Bin 1128 -> 1212 bytes assets/voxygen/voxel/npc/rat/male/foot_fr.vox | Bin 1128 -> 1212 bytes assets/voxygen/voxel/npc/rat/male/head.vox | Bin 1376 -> 1764 bytes assets/voxygen/voxel/npc/rat/male/tail.vox | Bin 1116 -> 1144 bytes .../voxygen/voxel/npc/squirrel/male/chest.vox | Bin 3736 -> 1592 bytes .../voxel/npc/squirrel/male/foot_bl.vox | Bin 1128 -> 1228 bytes .../voxel/npc/squirrel/male/foot_br.vox | Bin 1128 -> 1228 bytes .../voxel/npc/squirrel/male/foot_fl.vox | Bin 1128 -> 1164 bytes .../voxel/npc/squirrel/male/foot_fr.vox | Bin 1128 -> 1164 bytes .../voxygen/voxel/npc/squirrel/male/head.vox | Bin 1376 -> 1504 bytes .../voxygen/voxel/npc/squirrel/male/tail.vox | Bin 1116 -> 1568 bytes .../voxygen/voxel/npc/turtle/male/chest.vox | Bin 3736 -> 4720 bytes .../voxygen/voxel/npc/turtle/male/foot_bl.vox | Bin 1128 -> 1180 bytes .../voxygen/voxel/npc/turtle/male/foot_br.vox | Bin 1128 -> 1180 bytes .../voxygen/voxel/npc/turtle/male/foot_fl.vox | Bin 1128 -> 1180 bytes .../voxygen/voxel/npc/turtle/male/foot_fr.vox | Bin 1128 -> 1180 bytes assets/voxygen/voxel/npc/turtle/male/head.vox | Bin 1376 -> 1524 bytes assets/voxygen/voxel/npc/turtle/male/tail.vox | Bin 1116 -> 1184 bytes .../quadruped_small_central_manifest.ron | 118 +++++++++--------- .../quadruped_small_lateral_manifest.ron | 96 +++++++------- 46 files changed, 109 insertions(+), 109 deletions(-) create mode 100644 assets/voxygen/voxel/npc/gecko/male/Gecko.vox diff --git a/assets/common/items/armor/starter/glider.ron b/assets/common/items/armor/starter/glider.ron index 71b5c99ab7..1fbc908b57 100644 --- a/assets/common/items/armor/starter/glider.ron +++ b/assets/common/items/armor/starter/glider.ron @@ -3,7 +3,7 @@ Item( description: "Thank goodness for big pockets", kind: Glider( ( - kind: Blue, - ) + kind: "Blue", + ), ), ) diff --git a/assets/voxygen/voxel/npc/axolotl/male/chest.vox b/assets/voxygen/voxel/npc/axolotl/male/chest.vox index 6782d48f39ae9ffb4c2802a163ef0e30090b970f..34487f9c7bfaee67fe9975ed4cef5d9bc8d2c13c 100644 GIT binary patch delta 700 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 HS(W)e7RFpN delta 199 zcmW;CEe^s!5C!13Z9}#Mg+U-d)F4R>mIOovRPd9w4%37aa0P6$3CV^VU@JKR$zB1! zYBg?o?MuGAnaTX5mE}1v<_`e7b+%{W7y*Z@+K#$~8IquYin7WQb{9!8gq1zm7_j`b zqQ|+puEr+y-oSh9$&hZ^&%~tYuLg##siw45Vh{wiR?qM3%s?Cw8RcmLq(J~A z&&0^^6e#zCk%{3s6BFZe24<#bj6lo^5@QDO8J{sSF+O8qWOxD8|02lU$q{TAQ15>* zI5RO{NoY^O|Nm!z0yBX^3CaKedpk~Cd{TUtkpNiq48xiKk93`YY~%kc7`!((GqN!; zc^6LZW=@p9vV8gfxA*V=e|!D<|0f3z{(p7$?EhC+uKfT1`Sbt(uU}8*W-(+28ammY GMH2uIo?IsY delta 199 zcmW;CEe^s!5C!13Z9}#Mg+U-d)F4R>mIOovRPd9w4%37aa0P6$3CV^VU@JKR$zB1! zYBg?o?MuGAnaTX5mE}1v<_`e7b+%{W7y*Z@+K#$~8IquYin7WQb{9!8gq1zm7_j`b zqQ|+puEr+y-oSh9$&hZ^&%~tYuLg##siw45Vh{wiR?qM3%s?Cw8RcmLq(J~A z&&t5`oP~ku83Pl;3r0qU7c2~n&sZ54pE5BpykKHve8vbAX9kHeGCgBtW_S_g?&JtI z45;@%7@V1yuOzgm;Q#+KK!KS+p@iiB|Ggb2EoRhpFHKTmjo`LbBlo*h)@7vRA;b zT8&#?`;sqjW->qNq&gMl^Z{VI%6BXr5@4UJ&7fVFJ_(AbJga=hZX+p$aIyoJ0*;?f zblSPTE{8S?!6F0`$daj>&&X!zt`?SUsG_XVq8CM#(a-oYfk(iX-t?k7-RMYb=y9@$ Jz4y9E=6~e=L7e~q diff --git a/assets/voxygen/voxel/npc/axolotl/male/foot_fr.vox b/assets/voxygen/voxel/npc/axolotl/male/foot_fr.vox index 87a904a820c1c522fe40bcafb9595e812788bb56..73ab252113361388f0dd216f9c3a5dac07841f64 100644 GIT binary patch delta 237 zcmaFC@q?p2%s)b58Uq7^ucN0QkYY$-VPFXMjB@1xae#mgh=D>3%s?Cw8RcmLq(J~8 z&-9#;f$1456T=G@Mur!R42;hh7#N=d)xKb6WPHW~6lVg7F)}@4VP<#{|Np%mCoVoIKFde|EP96F%>PHaPC&Nt{}l}0o0}Qg zn3%i^CwDU^%3oQ&{Qukg_y51We*OQGg9rb=I(zp2t1DOj|Ns2?|NqyoCv&qHG6M~r IY|o+z01T*HA^-pY delta 200 zcmW;CEe^s!5C!13Z9}#Mg+U-dV34E&O#-3oRhpFHKTmjo`LbBlo*h)@7vRA;b zT8&#?`;sqjW->qNq&gMl^Z{VI%6BXr5@4UJ&7fVFJ_(AbJga=hZX+p$aIyoJ0*;?f zblSPTE{8S?!6F0`$daj>&&X!zt`?SUsG_XVq8CM#(a-oYfk(iX-t?k7-RMYb=y9@$ Jz4y9E=6~e=L7e~q diff --git a/assets/voxygen/voxel/npc/axolotl/male/head.vox b/assets/voxygen/voxel/npc/axolotl/male/head.vox index 2b9a82f3e820cb9c1f41166de6dd63cbf165ca75..d153f8a7ea80bdd73595d62e7dcfe7d0372ece0e 100644 GIT binary patch delta 779 zcmW-fJ!@1!6o%(~&fQfZou#%G7SY05;qDTGS|}3J`4a>?i!J;K0SmDdVxPt~rI2)i zl#$KuUPwrlA22>Q7aq<%XWltq%)jZM2a6AH_a1*QrM!N*^9ECXWhw7=_WS#z!*>rR zK)CFE+~4`4{P6vRFx@yLRFlEH45^CMjRi4mOu$>m0a5Tj3{#KQnTT-Tlp zTYK>16hoLKNGEC9GAJ4pb-MSE!N=~?hD4v}qf#Kzauz0QrxB+qSDN8Y63=SOn$*B% zmcb!9hB7wA;M6BzWtFVX351u+h_Z70$a0yZ7%Z6zjAV7(05~g5sAwy9t+M8hg4o15 zsLNUdm{voV9e#)3;dl6p&NzT-Hn$P=S%p**KviAZ9X7AZxx~y$^d{a{uxfwn2(ijp zr#e><@!15Vct05t>jfriGl3$~Per!-&Sb7IF_{TWRC09(;Tg%G7Z5Ubf`n zk7rx$q%=5b%crlf&)e^^d-PR#fV-a$zWJv|XNQOF=HjB=oS(PV@o~F4J#ANKXRY1d Rwsw7eV6knjwSyP&-%a7d$C(-C%(?rq^Sd>lT;CnOO1eB5Um>~}NH^o@*>-LCX#csppN{uqGuAm` zxe3ThP!~0Urm`*02s9O~73@XJq%j1fsU7nsC<=p8jZux}jvJvwG-57}X=BWmDQ3c~ zHmZj31bc)zdlMRHCIJwT$?f{Ms`zYilX*-q*M-6&sG3k`T_y;Ov2ffx!~{A`O>cst zP#6BJ5K0XRt9S3l-g=~dtsd5}gc*!hUpcgA%flQD=qd(X?YSRD! diff --git a/assets/voxygen/voxel/npc/axolotl/male/tail.vox b/assets/voxygen/voxel/npc/axolotl/male/tail.vox index 593e3d138e499e7afd32e9391c7df9a4876e375d..f21b32f9e1d3460384ba1cb6a7ccf3c678dea463 100644 GIT binary patch delta 371 zcmW-bF-rqM5QS%U_wIIsh1ghXo5I2b>?2qlho%TfOcn7DXk~eS!Em7HABerJO-kX? z9i$NgdfpugsnQDLTL(Vo&G6>!e%gmtdf6WyJ`&M+FTOydUqdvAM`t^JKxxnd0T^D5 z;vC&q2XIIYM?h0U5!Yn7Vy9}3xFW|j2h=FbwQ|^peg@v7fq{0MR%~%#5a8%rA%q={ z9F=SlY<0s9Xzx)!9H58(0cgblnz>;GFRPM6cq5?v4KN@8q@WEn2tfoaaDKsh(m&aI zzZJseecT`!}WUQ}fglPMElR40jPEFx3QdZ}EGlA4HaT72sUIcZF2%DFQ+M@^?Fa`Gw{ zKkA@gY_zPC#RL=QMJ6*?RH&aWz1gO&XU%dECmtQubP-Eau5zw}w5)p0BIgp*t-w*x zC}FLL&p z&Kl`~UY)*N(%D?6SoPLLX;GyatX2|z(2H_i;zf7%oS0>r6iwAQIkORq=Zv;R8S9{@ zOpRRW4SpSL%*0FpYVGc#&ITmfzS(n~Ul^UJHZ1ky-xyLCd-<;f> zZ0nQIi%gD&*LZexeAkI`b+n9mq|U~Y^JY2GN2Cvqy7vHgj+1z#hj_`XOGYcBWz0BN zeDqu+eb9H7IF+QW(0f6vln6IRdan*&j+bb1>O8{BJcx7Ryu^#Mz7D@jn2ecOhK(50 zFe&kBVamkk%&dsd#79-;#kmCfiKjwdA+Nw%$g6Ny@|@aEAEje1h41?s(6bYhdmqi? zC7GQphl^P_s|R|e4q8KsEf>D;{VR1~DLGJM*AHi>hV$Kx+#_#aUvydPj8-{fc6MS| z^TL{U?EQYe#ALo7DVDR3WQAax;9UWsfsqUI^aa3}n zNAY)V=+G!;>)hDdp<|Yr^-ED>9rGb;pyP&n9GoL99+hpd&Q}j z$GpPm6BUc)MBm`-Ja)g$E-VHZ=gLCISo8l24kO8X-fYF zzcDMLj>GP-yXDbgcj|biCUvsHQRx--T=JOMXQlF-=N-@seI#mh)DRg5p3i+JqoA+! zqRhrv3!?|i=rdDC(<^<#?dau>zF^KZkCnYLpxLuudy&?$mxuj*0IM(;VJ-@*qNgw# z^R?rdj~4wq{oAh1{&qCI=9ZFNv)HwI=IA#`!n-BkYLsnI-3tE1`^Iv) zwX<94dERyL+Sj-ZC0>Wj`H*gXpKjelx>c+^$Sq_3px2>G*I4Cd54^uH8T1+@Zc*bk z^?Hk)-U8P{!Ln?@(=}My0@s7Y>w^-T;_acN?SZ^LgsltV8jEZm(zS+o(-5zMr5LX^ z=uHRRQm0!EumtiwZfV!ZX^RD(j2Y|_Z_?{FNVpCu+=hrzci68vR?=-Cc5wQu>H1*t z799;sH`!|i&a;pcZVxG3yCGfsj@THs2Xcm*w$jdy zf`7rk;NMec{4@TUFEjob|1Q_?H~bBM!_n~bcMtdj{(wK=58;Qhe6AE)5nT~j2|iHx zSm9aWS>ajXIq=~5*B3vz|M#oYeZAm^=Rk&Mg=d9lg=dB5Xak-Vo)w-Io)w1)c?-1)gIB@GJl<6#L!p|9t=MyT9MR{r0c-Z@&2hr`dlShJPPDJTp8q zJTr~XG<7TouroX}5Hkg5#E&H+X(nLi%M8y9&#`Rq%<#`OVrGs82(Gs82( zb1d(%O8aDXn*A65zU1&Ucp5wno(9jc4d7|;Gqcmg~D9?~)V@C0}QJOLggG5qiZ zcmg~Dp8x&(ANTd2f4TqX`@gYe@xv2=pZjyFNIX_(*IB{|Cu|QT+e_ literal 3736 zcmXBW&u#R^83*9`KSQozKpg}+=E@2jC<-)+s_W+KR<@>>$gAt{=@OY*Ks@yzW@7= zZ@eEm0t;OA>1WBjXx@Y$&}N^93niu%Ygd=3hoN+YK5HIq{KoXE}xg-)dra`?Is zbNHM|&L=X1LZ{LQC463p%%q~9%%ISzG(y!+WF}SpWCn#!r4gEbA~UJ!Co?E?Dvi+P zCwBcL=M$Mhp;Kv?^sftX=qEX!$P5adN;{6FUmI~UpCl$SgF>g$h_gNt6PZDwQ)#4& zaq`9bQJi-wjnb_%HpJJ39OCDo(5W<{Jusj9z<4xHr_zWiU1ws7_CvHEqWuu?Q zp;Kvurk}`6YWm3x3Y|(Lbp1qTQrAyrQ0P<|Vdy6^lZJjWgF>g$h?DswF_9S*I+aE& z`8tzkePjlOPNf~kZl4iL(O<4*wD(TFSXT<2N;_U>`-9s0d!zbHXq1qyok}CebR85r zl}55BCNhIUr_zqswO>0i+dm{GGJ`^=(g-D8FGOY%6PZDwQ)z^%pU6yNA~Ps-Dvi+e z6PZa&WCn#!r4hP*A~T7J%%ISzG-9c)Td#5GCoz#36grhgnv9bf6grhgnvIhg6grj0 zoU^&j*K$#((vD-u)-78nM^ehxDO;y(o%GYGG*Yy$NUk-J8OL?$R2s=1oX89cok}Cr zY&~RRCNYs26grhgX!?oFBqlP0LZ{M*T_1^w%%ISzG}16mW>Dx<8fh|4W>Dx<+Hqbz z1LWB_g-)d%$BQF%cwVTnnCBu-dmj{Y-pQ$$Z_go}N;_UR&jl$L^X+{M3Y|(Ld4?x4 z<9MFwR2s2*&PhyU28B+g9mgUkvFRr3b{J+G$_xVz0<5U_sRr6VW9$6Pks_&gjBjx%&kr@;^HCOZL zxiqKqIj{PPJ_dzO_53zcHBPSXN1;<`q-LD#SsxTSl}75u$=x`GPNk8CaWaEKrw-#} zb3e$FaSEMEJC62dBgzupuh@H?>a)BttIz(9tYL`%Ir0b z&cFWgx1apac7EN?uifvBm4$G-9i`o`U42*I)pzxyZByTzZ0ei(rhdG2RbSOtFIM$c z{kYtszNjzii^8Jr=N8n1dQcDQA^iWge(!FyyXfu$yXG^BU%NcJJi9!*JZC(4c6oMr zc6oMr&dBoY^6c{L^6c`Qe}+7}Ji9!*Ji9!{pSH`h%d^X~%d^WP-I-+bdy{9AXOrig z0(mw8HaFW`cyp0+S`2PZHhDIAHhIpel4p}=lV_7>ljod1c{X`Ac{X`Ad5$UF%pFvkI}g;p*b&5_!|AVfA8_XO-t% zHhETgR(V!=R(X!4T;*BiS>;*fS>-vG_gtl8W{xz+xB9W<@+|T!@+|T!@|@d1o<*KT zo<*KTo^xx+v&gf^vk0=d>A788Z1KiL)1t7*;|Fzl7I_wV7I~C8cFeI#$IKjQd>>m) zo*++EQFH-jKNGm%*e!TCk2Bt6!TCk2Bt6MG$Rv3 z7y}S9GBAcRF))TOGBSoTGB5$zOu-BwHX}m_6C+b710zH5#F#5wC*4*4-;6Z!TCPczMG$Rv3 z7!wdPGBAb$c_EC9jG>GSOh7hMFcXN)$PfZl6w1WN5IiyF3fD<@mH#&*P5++>nQX;a z#-CrZ;D3Ajy8jIgOaI5m*Kgj>c$1O);i=94&um}x|N6nzlNU25vTB7g{O6m@$r29$ D*P$(J delta 162 zcmeyu@q!~J%s)b58Uq7^ucN0QkYWg7VPFXMjB@1xae#meh#7&H35X*iqdZlBGzf42 zF((7#3l1=5c)`iQ@B*mv1tS=P*bFZwW?bPqGjrzuGc(hGc(NN~8UM^P#{XxYVfYUe m1>!TCPcz&Y%2J6xL9yOlF*d3TZ^J5^PeWwp6Z{ zbn!=+c6@>dAGb66&6{1f>-O;M8Ow{Z#3`{&iU%+g`nNyUn z1qU9#y1IV-p8dEVKTfuTq<`-2AFhs#2Hz#Pd@+cQQ5P+ShGH!qW@yM(moaB6oyEZ* zoEi)Y=hA)Fea;$Rgp#mb#D!RF-Mq3I-!O}5C8@dEbou&iqBo_ zq~E>$zAy*s9@L}Hk`w2mAzs&mofktmHD@Qt3U%Sn3Zc{xFyGkO(f3_AhdrUrH1mFGdXO3gMr{sIq`aIgRX diff --git a/assets/voxygen/voxel/npc/fungome/male/tail.vox b/assets/voxygen/voxel/npc/fungome/male/tail.vox index 593e3d138e499e7afd32e9391c7df9a4876e375d..6e76e9318162706aed297e19647a899e0aecebaf 100644 GIT binary patch delta 197 zcmcb^(ZE?B<{zOjje&u|*U{4tNHOHFFfasrM!E8UI6%Mz#H>&{A~MR;1|$dsd?136 zA%u~UAr#081}Y3@WB~G+fP7{k%?zYj7(y7B8ABOafO5=?Aq*^xA&fvAf1x~u%Z8EN|eOvq$C#xnl=k_G?U+t>YXXju9`KE8hQX2zS0+z(G}{(olsqW{+q UuAV%dIgwQ>l;J<$0au8z~|I9PS|7V_I_zx5X;xn7CGu~w6 dW-$K$pTYPH5YL>vn>mq{A(Y`i!(>I4cmUxOEMNct diff --git a/assets/voxygen/voxel/npc/gecko/male/Gecko.vox b/assets/voxygen/voxel/npc/gecko/male/Gecko.vox new file mode 100644 index 0000000000000000000000000000000000000000..2a48cdf07c19c368154a3e5e0b53e3586f4eb60f GIT binary patch literal 57760 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 ZTBtu^#XAf;vL-7sJS2V1v2bYk@*jt_Iwb%A delta 166 zcmbQj`GO-R%s)b58Uq7^ucN0QkYWg7VPFXMjB@1xae#meh#7&H35X*iqdZlBGzf42 zF((7#3l1=5c)`iQ@B*mv1tS=P*bFZwc9;sCG5-Jm48#BbGyene86ciH@%%~VGsX;? nXEQc3i80(|_|LE#h*tq|2N0J7ap+_t7Bl8|@7_($X3+!yF5NLh diff --git a/assets/voxygen/voxel/npc/gecko/male/foot_br.vox b/assets/voxygen/voxel/npc/gecko/male/foot_br.vox index 87a904a820c1c522fe40bcafb9595e812788bb56..c5059e06c57173fb98f5f516422b975371f6fee3 100644 GIT binary patch delta 211 zcmWlQzY2kI6o%h(em|lNqO7b|#bA-a@Fjmr2^o|NU^8MeixjI%Ffv+{+wl2Z#qoZp zo}Tlb&KsqU>GiNTDxCmynn9Ps#sh<3(#phvlORdLGe+Y{(5K_c6IJLUXX~e=}i7|yBx}*?%fTT+kSgdRnLC`jjV5wyq z!Pm&{-KQ95AqPH&b711l>NX$0P42b;UVG`#555%`rCGmG7fuLUV7`F hv+N(5hYwnC`}r5vIl{1Xx%+bCO`=cY51X#uUjg3YIW_=oGKpCo gVfZh;V+LxNY|o+z0M}nRC;$Ke delta 166 zcmbQh`GO-R%s)b58Uq7^ucN0QkYWg7VPFXMjB@1xae#meh#7&H35X*iqdZlBGzf42 zF((7#3l1=5c)`iQ@B*mv1tS=P*bFZwwwMZ?G5-Jm48#BbGyene86ciH@$^aNGsX;? nr!zJ(i80(|_|LE#h*tq|2N0J7ap+_{7Bl8|@7_&LXVC-zDXB3l diff --git a/assets/voxygen/voxel/npc/gecko/male/head.vox b/assets/voxygen/voxel/npc/gecko/male/head.vox index 2b9a82f3e820cb9c1f41166de6dd63cbf165ca75..ec2c857397c2dce47b921eedace5bb69ffa1b6c3 100644 GIT binary patch delta 458 zcmWlUze)pP5X5(8_B+8e2EkTaTMGrd*hmT$EJ9)}_z0H4%32~8K7oBoTOUM7?vF2E z={Z;Y*!|{acjvx$KStx(&HU&sBCaOWYnOO^8SgK5+@zT=?xyz`WcP+(1EYZoEscV0 zkiQ}J>6*zd3@ZL;prEEbsL-$sGi;Km6sSY$7||x!Dbc9d7hKlqWxiGg)xirw=$UB4 zMiwvdTY!DT0(hZ)R87hOjnsk;NwtLWn`Dht4Y|_C?2}ZBY?*_H4Xq=WHV8G~zw-xq zKy>or18K9|`#2l~4h08L+T$6O*rLRSRcw{9LB^JYhS*5fTnSfNlY1KL@SFDEUS3RM my}$^1KiOM9@QDZKU(p|aMjy{+X&%jN^_QpW`+jv+j{gDTPi&I_ delta 381 zcmWlUElvbc5QM9`-xx4#NKgnY77{#WlTG+hkcEpNCpawG1jPXe2C>5i;2*qT`!qiQZ(Ny*p zX`?CkklAx*G6fhisKLXycvhnf6^FO9{>OV diff --git a/assets/voxygen/voxel/npc/gecko/male/tail.vox b/assets/voxygen/voxel/npc/gecko/male/tail.vox index 593e3d138e499e7afd32e9391c7df9a4876e375d..eca32d0f43e3f3717a596578aa46288e0031c3f4 100644 GIT binary patch delta 283 zcmWm7y-Gtt5C!0Kc5jkcEiDv$ zgmgE#`wlka*@2HaGwiUda#hX8qsib2!1=JgP{VftT-Vdntvsl_`KJi3G=Q(!&12; z%1#iaR2Jl0L8VWG!KKCJ(az_c*)Pmq&Fpq&b~ao*|M<6q?e`fU-0sO2tp5SSqs--A P#>+o{>~*j_EcX8a)5}cz delta 155 zcmcb^d50q)%s)b58Uq7^ucN0QkYey)VPFXMjB@1xae#mkh?#+y35X*iqdX;mGzhRl zs22=Oj6lrr0;mv(8DC7iU@COR`2YVi4FCVn{13!ufOzI)amJI(XN(y(KW1!X5@Wc_ f@SkBf5U&E_4j?WE;?T)eEN0B_-o2Z=nMD%-@DDEJ diff --git a/assets/voxygen/voxel/npc/rat/male/chest.vox b/assets/voxygen/voxel/npc/rat/male/chest.vox index 6782d48f39ae9ffb4c2802a163ef0e30090b970f..3f8b4ea8315e3980979b20c7c3b9019b07982b33 100644 GIT binary patch literal 2496 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 O+kU^_cDtQ(BmM)LJ8en; diff --git a/assets/voxygen/voxel/npc/rat/male/foot_br.vox b/assets/voxygen/voxel/npc/rat/male/foot_br.vox index 87a904a820c1c522fe40bcafb9595e812788bb56..2b5ded4939ecf19ac120087e9c28868877219894 100644 GIT binary patch literal 1252 zcmaizZA_JQ6u{5(TqrhPRt+RCbT4tQ;=R5gFL4o=fJNNv%T*+9g2>uJ6#1Yy=9IBo z(2F`O5(ddMphmFO#Mm8kYl9I*xfwHZWE&C|Az$K4jn$`L=i=5k$Ju^6JLmlW=k0m^ zf&GV)Iz?n(q0g^M?u3by`YMW|LWYV(30Iy_4wYB+Zl&z+z+EA@X zD4*UDts$DruqZ~j-q*aE&s@zPrg62kr-Q}23PooLNp^NNO-)TaxGZ?DeTyUZAO4Pw zWqf=eA(@<g($%$jQc=pTmLTe9HaaHS@=pSh3Y6<7{%16)d2;riL304g7fV zA`h=zA-+;@z9nqw6!OLdc_kcaj6gbKkl|Q5w0@8BxiX@Bt^A<;qWqzBoE5IO3*!UA ztuNIs5c-OQn+Jva$Ak*C&jy6HYW1HHUa$!syO8s|@R9mUGOg4WCDT~4iO!?xG?jVi zJpLl%=U?Sve=VCG>&Q#DvnPKOM*|+}b_*>>w5JAP>;oaoX2s`rQl7DeDo-i__d04b z6S!2ofy;Y0Qk0j*{+D-9aiEa8*Zee|tf1|kI)Vf5GCgsP;MGdT2Tu?g8A(!7(kf}L zWU{txBq!ZP+uMm;?@i|3EjRb4Hgi>L2K$BEUkSheB>0^|S&C5U7GB>foJbSuGj(Q< z@Mf-He@gfJjNpzFw#RF~R^4-=uuFH~OP?O zGBPsw(9=U|S|7O=npxknp6@;p?jF|tI~=%NE{;3Su-7|`v@{ZTI*ySp;k|?e-mqHr z{{x9qo>iR6b|p{oDrL$Mh^_-`Bcz;%%q}SG2Y(O_Pr$jZ0a`u{^8WAy)+hD*pSr-# z<{tKZJVxn_X@0$=1s*5U)BM~m%=Vi6_E|VfUqtZda3p`-jN#wWr{SB}M|^LC+b+11 z0e5%8J#B8b6dqJPF7qS*T+QnHT3T9SVPS#!`FUn%XYu)b1Ofr7tE(x~1ym`=lvBz% LrCCW-Lht`SU*lHS literal 1128 zcmW;K!L8Fk6a~=t5eqeH9h zr+yAM^g}=NLoxJTTj)a{`q1NOWbP#?L-c-VhvsRX=4qbA<7uAeX`bd;WS-_}p5|$u z^*4B$r+J#EdFEehp5|$u=4l?fB`L?^DW2k4Q@~RIv1vIaN%&$Pz)X~(en(R!83T&GM|{aN^@qW#?BKw!4o{e z6Fe>#Jx}liPw*I0^gO{6Ji+5OqUQ;o;0YMF7QF$(#o@$<@+Mcg$XQNul!NSLC-IP* zT;(EXImuBDvX`C2LvC`Fi=5>oM>)t|cH86e*lxGmcD-J=%jL42&*$xQI&H_}aXTCi O+kU^_cDtQ(BmM)LJ8en; diff --git a/assets/voxygen/voxel/npc/rat/male/foot_fl.vox b/assets/voxygen/voxel/npc/rat/male/foot_fl.vox index 87a904a820c1c522fe40bcafb9595e812788bb56..fe5c046d768d8d96feb62d11778f4615a91ca3fa 100644 GIT binary patch literal 1212 zcmaizZA_JQ6u{5(Tv%+ptlCBLg7*@Tdanxd5*L99SjfGpC=xe8WNlqhXLBfP-T_3Np(mzD25s4Ff10kVKMD$*bP&) zX*x8bw#9Cm7Q2Y)FjN~xn8qv{4D}llvh}=#2%R<5Z|HqP^GT`}O*Kr}CZ=jbwPJ?y z>79cmyNXsD()u|$IkdF2@bHr0x%v&s)_?fhY9$!lM@S|oCz+a>VrFKBxw$zO7Z+Jx zUS?%wWi{U3-cDy{C%wJB^!N8OG&IEU@GzsJql}G>p(Tijh#)#Tnudl33UhPt6y$QC zq=3p&&zkw;%52!{l1OQBksT+AZXd3-W3>(j0+w z#ULYAy0m_u@|iNKe5HJ^{G$A!bTtV#JB8q&aOVrP3x)n-;r2n{!7-sq?Ixel;aC3| z;YGXPb_lu83m>b$EXzh+aT3jCo9RB9K}&_3?&B{JJog%p2I|<7ypH?~2YU)ObJXXi z{uQC^i1ySdjDIL(+iiGVDO6@|rN*6x&$W)atavV#yuhWs8!66DXaDXUR2?Xy{`FFt zPgc?KZasm)_n4lzO5jR0!J!jGMn;mDn7B&1Gl}ffjpSxH>3AoBo7a-Kf5*jxsV!X5 znt=h~?w7*vKMAENLd7Pb+9kZPO*oM*G-T<_ZsDyw!SS^2_gTReD{PO`er>wv1Ywu% zz>~E0{I-~=HRsQD#N*G);PlHo{-6J3c07TaG%_}>60&nM%Q-<} literal 1128 zcmW;K!L8Fk6a~=t5eqeH9h zr+yAM^g}=NLoxJTTj)a{`q1NOWbP#?L-c-VhvsRX=4qbA<7uAeX`bd;WS-_}p5|$u z^*4B$r+J#EdFEehp5|$u=4l?fB`L?^DW2k4Q@~RIv1vIaN%&$Pz)X~(en(R!83T&GM|{aN^@qW#?BKw!4o{e z6Fe>#Jx}liPw*I0^gO{6Ji+5OqUQ;o;0YMF7QF$(#o@$<@+Mcg$XQNul!NSLC-IP* zT;(EXImuBDvX`C2LvC`Fi=5>oM>)t|cH86e*lxGmcD-J=%jL42&*$xQI&H_}aXTCi O+kU^_cDtQ(BmM)LJ8en; diff --git a/assets/voxygen/voxel/npc/rat/male/foot_fr.vox b/assets/voxygen/voxel/npc/rat/male/foot_fr.vox index 87a904a820c1c522fe40bcafb9595e812788bb56..9796d86d6082fd72408701187f0d639f7af9aa1c 100644 GIT binary patch literal 1212 zcmaizZA{f=6u{5_e_^rlvT7iC!F%aK>b<@oFL4o=fQ8(fdKHPAAhNa)MLsBwIlN=F zpci#mBn*;iNR42tiLpE8)&?Vrax+%s$hIqC5%MLz)L4D`buMmwbDZtBvvZ#3Id9MN z_zxUT=@yaw#a^E(8Hx}o_g0m}gbfvoqArP44p&xrn^lKpgJPHwcEe(^85YxK8m7%K zRhy>W6hm!`O-zf;6w_{~HjD^evurTbZ%EkI{Sqd;*HFKq=M9Y~+fBtVWt(ZLHdHGT zj;Ci1mF_NHElBg{=H}AU(!ztwg6G;dq{jcl-|_KGOzbBtQ&Uq+Pfs&DJImbM9E*#K zEH5v!va+(e-rn9$XJ;q9y}k7J_cJs!#PIMiqobpYjg6rxh>D6LHa3>V#zu+IN}p%V_=#m!Z1oP(T3qA=i|DPZ<7QJ6KVH1Z!z))vtQOMV6t;E?1>=Ie9Ek*? zkghmnB%UtK-=}=0j4EF#-z&c;e<)qe!i`R0VoPRH+BM}2k@mr9@G^1h9f6l8E<&rYfi7Sr&m zkHD!aI^J#|IQR}Tlh+7dt!85AB+=2)q@<**lHqiavwb6ZnNB+1O6JCO2lsBfxIevx ztC}-7Al&&<`28ormnKwf5~^LoYukjA8A4;W_Usnk$QSHS>U^ITTnWOCM6K7Vb50g^ z>kK@Owfncm#jM$Xo;``${7lZgxby%1Pvs;LtVt&;D~k`@eWYjflYgO=^=<3<_G97h z5uJZ(Do&@96RBs}=NUoT0wkPCV6;bgHz|qNtyX=1ATi1_N}94mDNsC0g>n>P8^9WX zP3IxI2Z{&47lb2|aIR;Nwoih*H!_L!3BCW*7ueO>$KH>|DZe?xua`8z<78%rpL>PS zb(7ydjb!QbDE=IY=C50E{5$p(d>#LY?`&|#2|r}P-Cb}`iwl**gPO-he&nC4Tm4^4 qOG_*)EHFPmPbd_^>-FOI`>Cz1r9uZ#qa0UGE9aC}C0WtGDgOZmU{wqN literal 1128 zcmW;K!L8Fk6a~=t5eqeH9h zr+yAM^g}=NLoxJTTj)a{`q1NOWbP#?L-c-VhvsRX=4qbA<7uAeX`bd;WS-_}p5|$u z^*4B$r+J#EdFEehp5|$u=4l?fB`L?^DW2k4Q@~RIv1vIaN%&$Pz)X~(en(R!83T&GM|{aN^@qW#?BKw!4o{e z6Fe>#Jx}liPw*I0^gO{6Ji+5OqUQ;o;0YMF7QF$(#o@$<@+Mcg$XQNul!NSLC-IP* zT;(EXImuBDvX`C2LvC`Fi=5>oM>)t|cH86e*lxGmcD-J=%jL42&*$xQI&H_}aXTCi O+kU^_cDtQ(BmM)LJ8en; diff --git a/assets/voxygen/voxel/npc/rat/male/head.vox b/assets/voxygen/voxel/npc/rat/male/head.vox index 2b9a82f3e820cb9c1f41166de6dd63cbf165ca75..69031c807149217b9012d38bd649658e4c799347 100644 GIT binary patch literal 1764 zcmaizdrVe!7{{OUyPWej#8pGh7vFOTNChv*B|u~<773|%i#J7OZQ%v^LvhY2W3{A< zIxQ84$uy;Au+`KUV{UCYvMe`aM$T+Q(lX_r+*r-kU*Epxwe_F#Y@a>9=lMPNb54Be zs>`sq+w#%uZ;-W%pq$~TUR8LfSr@MVlLzShj4 zotTN}QKOCTs4$0OJriidJ8J?tNbsgVRj0t;mg!w{W&gvM(s+e{d$9|2YeMQ|;H*UBao&E$53YsvGmuDrcPgCIlCs7`_h(ku&%ahR9ii26R1&-GdM(Z58AQ5a$N3;IeB(@ z_P86x8phRuqs$ED*qCLmh;n_0XJgs7r-F#G)ZLg%n@2y7QYpIj*uZ6mgY1QxQ+unGW%ko8u78e3rQESA}qPmniPY3Ti;L0R+>G0Y1r;a0 zK}O2o_$ws^{ryW2K9??C!oa`)u3x{7;o)K2y?Yn;@88FR2M-eW`}glhYildo+uPC6 z(Sfe6E}T7k7QMZ_=QJNQE(Y&cxA1^|~%Yv45>}k8; z!UuvvKZ?riOsvkIj@qIe#Iwhvz91C`7Cwi=izlPJG#5)>nvI%eWoUS<3Qb#TaPXZ5 z^mM+9!HXx*b9^oOyEY>!DG6z5X$f+((or~bGD`BYaPaL(ICCl;H!f%6=D;)@XU(3| zf-7GNe)~~Sl_{v6B3PR(czuRobFQGVfHM~f-kc){p5%U?7G#eT%$mS{qulc(!2<4} zBK`66N5_tN?EED`D(dFsVcUzd|DS(LVJdoRbC92(k3&T#k(1kjIeT|wV#`E)`?28K z8ty+M16f&F*p#sYiz~VzEln7=Z5(=!3f@ai#T(Hmzdu06kY`9HnMF!T1*s2$hwUh{xlotE)pb7f?$!lC5MH*-a*q@c;i8KbLbC literal 1376 zcmX}q&8-_Z6o%nL&UlxN_Fe>PffZasv2o%2010F`UIhrib#`h&6&PR(YC$f6Eod)o z)B^Kx3|MpDA?Lf~;XCAf`s4G@UnAnTm)GAl@#~w2zh1xm^3#0q^Z0|$e}8#>o3=RK zYjWg!!ZJzvYuuA|iRH28B_-_=>5(HDmmZRPM#7Tyk+6DR=e#uMWo7a`v{tx>Jk*M9 z-tv%|YpooQG}{#BB;%}=myxZRw9BGC5|%~n={8&Qat<}+bME~AY8+zD(dK22wGOg* ztJ;}Iwq9PczUOS6wCbpTqw7 zcZ`oO`toLclh3Ku_-a7)P~}xV%N2Q%7kLpBxxW$ekcT|v5#N_}?-uHcb_Ke@n~GcK z)A{r+=d3rs^bv~U>=hOLgKJ#@Ym{&!C zoOpTei`***aa){eeV*sL_xbU@ z@7KR)e^!r(>@M|HsFJ`Mkt$zpSz^pkiBn?hN0j|FwLZ7%n5@Jfi+9N5@lIJA=a5I^ zoRT08StCyU*dg(%MSXF)HmEknJNA`tFV*;p&@Tu5}6H1H#QO)GiUi zWx|bp!rj9{t=gyjLT5nzCxsU>1W%?=@Qm=0`YYWg8q2b2t=vSQ&X3IK?ax>Xkyop184^2CS_Jdkei!k!1NKPMc`5t`lFvqyNdP{@2j z=lhgkPZgYLTCYjxoGxtF8F;f-@86W1xN83enPvioxtw@u>;L^9%QF+Hci?il_|Vgb zBPUGZ**4a1n~fuulkD;iBkirEo=9b+S9s5C<_(ic?;l8_^0Z=A zoJx`6RjQSPkkkaGR@it3+`UlR4;2wOFaf7~2WbB!!u!J$nAYm~A3w{swmx=V8Kdg@ zG{2tL1P_zxX?_j~(W~+N_Gto(pBwmd*vMZulKFS^N%%VD0pDf7EgSscg4^5RjuscK zf_wE3+xdZiwqfOcEiNuHKR?gh+#Jzp6razB-|r_72vDs9s8(5fQ literal 1116 zcmXBS!Hp9^5CzcM1#Vn?MF28_JpdBO2sVI9!6`Tbq)NdlIE7BZ_dPj<;dL|P zKeoSTdY-%I*Z1G=|3<{u4^Q8`#h2F+KcAjIy`5id5AsSL<@cZGr+41x_U8ZFOFTYE zyf{%FUVeQ3_#uojw{301v85zMJ*(j`^g}=NLqAVzef!Y**0+9MTKdwLFQqU294_^# zPkky<@3n%?yrhumb+RfU)ZICrBerz9_r+J!ZO%+e`G*9z1 z&ze4-=4qbhX`VTy&C@*1(>%?yrg_cG)XY6aZ+?oWc#5ZZif1hcPw^B)xnUW6Es=}L z3FS-i6wg{Vp5iH<;whfFl*Lm##Zx@RvzB+Q(wv#8nY*4Rd6Fl2k|%lAW5AO<$&)7-O7kC*6qk|%kRM=kS-nX5EsW@_v_!4o{e6FkA=a?$ey zPw)hfAw|yOUUm|9xye;7a+Z@E z}9vz@AvI?yKUF&b-P?H+xdLnPN&m$JRY~h;jr!Z`)#+| HIXB`T_u^_$ diff --git a/assets/voxygen/voxel/npc/squirrel/male/chest.vox b/assets/voxygen/voxel/npc/squirrel/male/chest.vox index 6782d48f39ae9ffb4c2802a163ef0e30090b970f..6866a6c39b00c0ac54c3cba4a0ccf9ab01aa2be6 100644 GIT binary patch delta 665 zcmXYvziL!b5XR@5nR9Ol%Voh<6AJ~wMo48qB!$HmY7vwei*%_h1Y2PnOYgZwK+JQb z5%Ceyh!5aHsP*x8#D(8}^Y45!Ec^M^m(}*=^OM`3%62AY_!QXr zuP3igH^0@ZX752^laHDLjX{%xAPO-EqA-&^?h4U+#vHM0I|apH!2g-hAXm@(zzBmc zCR-=CVhL)&QlUa^qzCS~2=nL*%$G2&1z~sqcTYLk+Q3ULo)BBUMqhluSPX(73#JJH zZfiNl;7%U`jJnY`=J=T~_1V*_2O3d5p~UR&bB1cB<}B!-YN6Q@-BK_L!K2`D6c~I~ zcon(GHGnibgj8MhF%57JG-i#w8>t0(LWwGl5V1HS@y`T~G`tOOBYu$10nRle*NvDP z$EYv#nk+OHniGRO>cz+1d;1>_@3wY*3FobSdy86Yr0x6H_VeANs~@|6bpOrXPJ4aB m+Tj$f#|QKe+BIClc{_W&-)@f9_3GE^h(E{+Yj*K)I{OPh18TPb literal 3736 zcmXBW&u#R^83*9`KSQozKpg}+=E@2jC<-)+s_W+KR<@>>$gAt{=@OY*Ks@yzW@7= zZ@eEm0t;OA>1WBjXx@Y$&}N^93niu%Ygd=3hoN+YK5HIq{KoXE}xg-)dra`?Is zbNHM|&L=X1LZ{LQC463p%%q~9%%ISzG(y!+WF}SpWCn#!r4gEbA~UJ!Co?E?Dvi+P zCwBcL=M$Mhp;Kv?^sftX=qEX!$P5adN;{6FUmI~UpCl$SgF>g$h_gNt6PZDwQ)#4& zaq`9bQJi-wjnb_%HpJJ39OCDo(5W<{Jusj9z<4xHr_zWiU1ws7_CvHEqWuu?Q zp;Kvurk}`6YWm3x3Y|(Lbp1qTQrAyrQ0P<|Vdy6^lZJjWgF>g$h?DswF_9S*I+aE& z`8tzkePjlOPNf~kZl4iL(O<4*wD(TFSXT<2N;_U>`-9s0d!zbHXq1qyok}CebR85r zl}55BCNhIUr_zqswO>0i+dm{GGJ`^=(g-D8FGOY%6PZDwQ)z^%pU6yNA~Ps-Dvi+e z6PZa&WCn#!r4hP*A~T7J%%ISzG-9c)Td#5GCoz#36grhgnv9bf6grhgnvIhg6grj0 zoU^&j*K$#((vD-u)-78nM^ehxDO;y(o%GYGG*Yy$NUk-J8OL?$R2s=1oX89cok}Cr zY&~RRCNYs26grhgX!?oFBqlP0LZ{M*T_1^w%%ISzG}16mW>Dx<8fh|4W>Dx<+Hqbz z1LWB_g-)d%$BQF%cwVTnnCBu-dmj{Y-pQ$$Z_go}N;_UR&jl$L^X+{M3Y|(Ld4?x4 z<9MFwR2s2*&PhyU28B+g9mgUkvFRr3b{J+G$_xVz0<5U_sRr6VW9$6Pks_&gjBjx%&kr@;^HCOZL zxiqKqIj{PPJ_dzO_53zcHBPSXN1;<`q-LD#SsxTSl}75u$=x`GPNk8CaWaEKrw-#} zb3e$FaSEMEJC62dBgzupuh@H?>a)BttIz(9tYL`%Ir0b z&cFWgx1apac7EN?uifvBm4$G-9i`o`U42*I)pzxyZByTzZ0ei(rhdG2RbSOtFIM$c z{kYtszNjzii^8Jr=N8n1dQcDQA^iWge(!FyyXfu$yXG^BU%NcJJi9!*JZC(4c6oMr zc6oMr&dBoY^6c{L^6c`Qe}+7}Ji9!*Ji9!{pSH`h%d^X~%d^WP-I-+bdy{9AXOrig z0(mw8HaFW`cyp0+S`2PZHhDIAHhIpel4p}=lV_7>ljod1c{X`Ac{X`Ad5$UF%pFvkI}g;p*b&5_!|AVfA8_XO-t% zHhETgR(V!=R(X!4T;*BiS>;*fS>-vG_gtl8W{xz+xB9W<@+|T!@+|T!@|@d1o<*KT zo<*KTo^xx+v&gf^vk0=d>A788Z1KiL)1t7*;|Fzl7I_wV7I~C8cFeI#$IKjQd>>m) zo*++EQFCzENc*7&VM_P}f T7fZ2->!V?8ty=cm7hmuX`ngDB delta 186 zcmW;Cu?YfE3@3bP1P kD%27pxQ6nsI?UxK`vQ%ELMiO|{4jLD#Y(>m2=JlhT zXE#4g6`U1eoxw{(Dgl@3bP1P kD%27pxQ6nsI?UxK`vQ%ELMzkn85vo685w{y15+OZBM5`ojD1XuEI>9R zWADTm4fz%;)&Kv`%mm`J|Nr+C0BMH*|AE~97kB-?Uu?T^@mEIe9665v(ZUS>t@xP# hgV@GEY2*KAfOsYlr~Qw&m;W!r&H$n}A7)z02mm~xL4yDQ delta 185 zcmW;Cu?+$-3?ZGO(y z)3+_(qlN4F&@Bc4yG`0NaGC(e)Nf~XVNFS>q3+VBC9_tb2(d7NMZoxJGO9D|aa+y3 n6!)T(sU^5`b>&_4_4&yu?OK^TsA*D>Uc`yF{Hc$BjTt!EM diff --git a/assets/voxygen/voxel/npc/squirrel/male/foot_fr.vox b/assets/voxygen/voxel/npc/squirrel/male/foot_fr.vox index 87a904a820c1c522fe40bcafb9595e812788bb56..8bfc3ad83e8190dbf491b6ac1510a7b868c5f0a6 100644 GIT binary patch delta 222 zcmXYmF$)247{=e{|39JRPF6XKQbwDS49X1{l+IB$lR;T*7Nb*^tDEHm$R?Zh7N5ZC z3z%Q;U*7uld!FZgXZG3cc<5ImBIrF)>T!=Z#?ZGO(y z)3+_(qlN4F&@Bc4yG`0NaGC(e)Nf~XVNFS>q3+VBC9_tb2(d7NMZoxJGO9D|aa+y3 n6!)T(sU^5`b>&_4_4&yu?OK^TsA*D>Uc`yF{Hc$BjTt!EM diff --git a/assets/voxygen/voxel/npc/squirrel/male/head.vox b/assets/voxygen/voxel/npc/squirrel/male/head.vox index 2b9a82f3e820cb9c1f41166de6dd63cbf165ca75..f466797075e5ef0cb6f6ca3dbbf5843db30bd415 100644 GIT binary patch delta 534 zcmWlTy-H<45QMv`daf52jzgu*^q#xR-e!?0*lS-7AE zQ2wC?Ndu)3M$8e0q$F8gkiunMwzgmCS0evKfw>(?R~#rV14%XQr~a)pa0?$J2#v2dbt*LuTyRH XZms6k{4v+{>R_vGEJf4je|o}yqEc1O delta 405 zcmWlUJxW7S5QXQ=TrIQ;f{hlIf?ZNtr4fREokS}^c-zPtLO{p@TtT++N*9pwz6Ds1 z-|+Z2bLY*ObMNu|cs6@`UEh40+4FMsg4ok`cCk63DAw;Et7}!;>;c@o3!)Hpvo16& zrsg4`VVc~;oF+QmK@d(2g2uU(PvvvgcsG=UZt@L>z+c9gXk#YKZBnTWlNcn-Bb`v8 z5d?rBg5`C&Qhe^lPWt7o|BX4Y@}M3yOAdIO8@H=q=f)6D&DjZ3qi(#c5lRgKyI`Je6v+vi{dEWmP+2_x)bfcofe!18FS8*aQU2bO8|yi(B{ug2Y&)OJyMlwzsjpbFfj;+4ulr zA&8HV#y;RvSWmuj;5%#YGkezB*VEU{?$z_td!I$*>ErD)L^eg_<@W5!W;C3H32wpZ z>$B~(QgA+iRa>o=)y!9uSWSo0ORnO%Xw}8RQf3RCgMSt_dpNz%8orw)eF>1rB|tLh zV^Po9lE+16O55;fPwW*`vpkABp z__$*hiPfDN z-F8frO|`HwL}nBC^y2>E$CIPpuP))D_uubO>7BO!`PKivfB5~&KYj4_?$qBLNI#jq akNTMF<9-E~aM8~n9rim_hW_|z-}DCbXmUjW delta 175 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 P`|!gLZ!h2yFTno+;zje2 literal 3736 zcmXBW&u#R^83*9`KSQozKpg}+=E@2jC<-)+s_W+KR<@>>$gAt{=@OY*Ks@yzW@7= zZ@eEm0t;OA>1WBjXx@Y$&}N^93niu%Ygd=3hoN+YK5HIq{KoXE}xg-)dra`?Is zbNHM|&L=X1LZ{LQC463p%%q~9%%ISzG(y!+WF}SpWCn#!r4gEbA~UJ!Co?E?Dvi+P zCwBcL=M$Mhp;Kv?^sftX=qEX!$P5adN;{6FUmI~UpCl$SgF>g$h_gNt6PZDwQ)#4& zaq`9bQJi-wjnb_%HpJJ39OCDo(5W<{Jusj9z<4xHr_zWiU1ws7_CvHEqWuu?Q zp;Kvurk}`6YWm3x3Y|(Lbp1qTQrAyrQ0P<|Vdy6^lZJjWgF>g$h?DswF_9S*I+aE& z`8tzkePjlOPNf~kZl4iL(O<4*wD(TFSXT<2N;_U>`-9s0d!zbHXq1qyok}CebR85r zl}55BCNhIUr_zqswO>0i+dm{GGJ`^=(g-D8FGOY%6PZDwQ)z^%pU6yNA~Ps-Dvi+e z6PZa&WCn#!r4hP*A~T7J%%ISzG-9c)Td#5GCoz#36grhgnv9bf6grhgnvIhg6grj0 zoU^&j*K$#((vD-u)-78nM^ehxDO;y(o%GYGG*Yy$NUk-J8OL?$R2s=1oX89cok}Cr zY&~RRCNYs26grhgX!?oFBqlP0LZ{M*T_1^w%%ISzG}16mW>Dx<8fh|4W>Dx<+Hqbz z1LWB_g-)d%$BQF%cwVTnnCBu-dmj{Y-pQ$$Z_go}N;_UR&jl$L^X+{M3Y|(Ld4?x4 z<9MFwR2s2*&PhyU28B+g9mgUkvFRr3b{J+G$_xVz0<5U_sRr6VW9$6Pks_&gjBjx%&kr@;^HCOZL zxiqKqIj{PPJ_dzO_53zcHBPSXN1;<`q-LD#SsxTSl}75u$=x`GPNk8CaWaEKrw-#} zb3e$FaSEMEJC62dBgzupuh@H?>a)BttIz(9tYL`%Ir0b z&cFWgx1apac7EN?uifvBm4$G-9i`o`U42*I)pzxyZByTzZ0ei(rhdG2RbSOtFIM$c z{kYtszNjzii^8Jr=N8n1dQcDQA^iWge(!FyyXfu$yXG^BU%NcJJi9!*JZC(4c6oMr zc6oMr&dBoY^6c{L^6c`Qe}+7}Ji9!*Ji9!{pSH`h%d^X~%d^WP-I-+bdy{9AXOrig z0(mw8HaFW`cyp0+S`2PZHhDIAHhIpel4p}=lV_7>ljod1c{X`Ac{X`Ad5$UF%pFvkI}g;p*b&5_!|AVfA8_XO-t% zHhETgR(V!=R(X!4T;*BiS>;*fS>-vG_gtl8W{xz+xB9W<@+|T!@+|T!@|@d1o<*KT zo<*KTo^xx+v&gf^vk0=d>A788Z1KiL)1t7*;|Fzl7I_wV7I~C8cFeI#$IKjQd>>m) zo*++EQFnZ{@>A8+4HJm?Kyd`Vi;7d*gw__ll$@L$p-xgTh4|S1c8NoGXL^F DOPoB5 delta 192 zcmW;GF$w}P5Cza5-69d2be0l4$AXX*QmBPS*7YD^Z?K((u$3pUv-T|Zsl3AYvmYLR z2Bw&&$@+FVw(AkVej5%foGaiIx@K7xWqc45vMFS;@>c<;qIC)QdiFZ=<-OE4V( diff --git a/assets/voxygen/voxel/npc/turtle/male/foot_br.vox b/assets/voxygen/voxel/npc/turtle/male/foot_br.vox index 87a904a820c1c522fe40bcafb9595e812788bb56..9daf18d616783c89269c59b117591cd2ca80a0c1 100644 GIT binary patch delta 245 zcmXYr!Ab&A6o&tEu8>aQI6)BMB7#sM5d;MniL+=i4Js(fs88TNh*q<8FSP0Dhr1d?wr|rlVqjj+z_WY zsp6;t4|PNf1qy){j!qz6#Cc^Zorn;os&{k{*I?lyr3x>J{%k+pco#+X0oWT!@}|Y_ zcNX!CKk^G(^bgmS@$K`dZG--!&0dEVhM`4#vi$cy DN|HQ? delta 192 zcmW;GF$w}P5Cza5-69d2be0l4$AXX*QmBPS*7YD^Z?K((u$3pUv-T|Zsl3AYvmYLR z2Bw&&$@+FVw(AkVej5%foGaiIx@K7xWqc45vMFS;@>c<;qIC)QdiFZ=<-OE4V( diff --git a/assets/voxygen/voxel/npc/turtle/male/foot_fl.vox b/assets/voxygen/voxel/npc/turtle/male/foot_fl.vox index 87a904a820c1c522fe40bcafb9595e812788bb56..2104c41c40ab04e802b5c86272ed189381703550 100644 GIT binary patch delta 245 zcmWlTK}!O05XIlje?!~Eb%j8pLj<8hA_xW@l010WmJAYQ(@)@Ch)#R;E_Cus_<;lu z!TwKvh3W0UZ{C}MH;k|DFZ0DmcJ~Y5eVj}w*apBXSx#!@z;fh*aEqc45vMFS;@>c<;qIC)QdiFZ=<-OE4V( diff --git a/assets/voxygen/voxel/npc/turtle/male/foot_fr.vox b/assets/voxygen/voxel/npc/turtle/male/foot_fr.vox index 87a904a820c1c522fe40bcafb9595e812788bb56..f9ccb3666a0528539991227bba7ab51dcafbbfec 100644 GIT binary patch delta 246 zcmWlTu}T9`5Jm6I+hANJ>k|YC79vOzFa!b-EDT9uv002@P&UCINFUH{TYJIEpYVf( z6vBH|eqnNV;BaT|T!x9wpTp|)sl5CK@Hoxq6nrMYB40fm*8|Iu2BD2|xynmwU1vlS zY#G=}f`3s2rin&nuMR;RqKZTj393}0qMS8|QsI1nxFDb*E`p2Sw+}a7dvEW6y^y@R zu<534o;`Nt5B6N$SZC6*esN;GMQT?C{XuFN9ofO~>oggk-`{m@G`zO??AEd@GtZOt F<9oT#J!${| delta 193 zcmW;GF$w}P5Cza5-69d2be0l4$AS=rE!09I>*77KN7zyjtUQ68wP&%P$}5aN`{D6t zV2XJ0VwYHQFk(j#2M904jLHmo-}-4i q0GcULq(GkVqc45vMFV9@6e*CuZ>xHdbJmoS#uzn(px%2eKl}kJbuk72 diff --git a/assets/voxygen/voxel/npc/turtle/male/head.vox b/assets/voxygen/voxel/npc/turtle/male/head.vox index 2b9a82f3e820cb9c1f41166de6dd63cbf165ca75..0340ffff6006d0e16585f3b0dea9cac34f6b0621 100644 GIT binary patch delta 601 zcmW-f&1w}v5QXcfdq!@+>*z)#ix3DZC}QLaE)vWt+yoOyRHAPnZUvX~3=$B6FA?xH z?jsm_b~7MkCE1o=XYp~WYO2oZ#SF85Yu(4=vyGo3@@{W=gvjutd(hvZNO1P)^YT*b zSmY}>-;?OTXb{n2BE@feE!z5DqjqISwIsJck^oJpG8fgsP)C&=LzAPd zW`L)jCegIKu&u^G?HFsN_8C*q%mLwAA0RfF*r?!YleRV*>PB5rdh=1;M@!TVv_5*{ zlRLMS%xpg^A9b>pBZi(?Nc9M)t-&O7m^d&3QFouT8WF0A9s2Y4y12i36|s_ti+~ke z{QjjcefLY(#dneT0Ly+o_P#xej#{qaO5&t{7LVWFjpv8=;_2xuHV>JgF@k4(x>S&)>spigeGb$4vs&KKGDWZn8~E6Dwvc( z!py@6Rn(mTP;h5?UM>}%nXr?7dh>f>4kSIOdCrmpR!)T5Ww3E$aHHmI1ZklzysQvP z4Gx>8r@Nnz5nmGV5)tIhc>!-i&wT~o zN6*=luQ2`@`1ogcz8&_bd+60~&&%N+z&y)K20krN<*UbjdtiAaAcid8SNR9CtpO1O zCsqg=@mj=zJ*+f*=tR&M3uibp^ti+sL(fPfpy$h}6Q8or0aJX6yeJ%h1 diff --git a/assets/voxygen/voxel/quadruped_small_central_manifest.ron b/assets/voxygen/voxel/quadruped_small_central_manifest.ron index bd4954de7a..66e16a7231 100644 --- a/assets/voxygen/voxel/quadruped_small_central_manifest.ron +++ b/assets/voxygen/voxel/quadruped_small_central_manifest.ron @@ -464,170 +464,170 @@ ), (Rat, Male):( head: ( - offset: (-3.5, 0.0, -3.0), - central: ("npc.frog.male.head"), + offset: (-4.5, 0.0, -3.0), + central: ("npc.rat.male.head"), ), chest: ( - offset: (-3.5, -5.0, -3.0), - central: ("npc.frog.male.chest"), + offset: (-3.5, -5.5, -3.5), + central: ("npc.rat.male.chest"), ), tail: ( - offset: (0.0, 0.0, 0.0), - central: ("armor.empty"), + offset: (-0.5, -12.0, -3.0), + central: ("npc.rat.male.tail"), ), ), (Rat, Female):( head: ( - offset: (-3.5, 0.0, -3.0), - central: ("npc.frog.male.head"), + offset: (-4.5, 0.0, -3.0), + central: ("npc.rat.male.head"), ), chest: ( - offset: (-3.5, -5.0, -3.0), - central: ("npc.frog.male.chest"), + offset: (-3.5, -5.5, -3.5), + central: ("npc.rat.male.chest"), ), tail: ( - offset: (0.0, 0.0, 0.0), - central: ("armor.empty"), + offset: (-0.5, -12.0, -3.0), + central: ("npc.rat.male.tail"), ), ), (Axolotl, Male):( head: ( - offset: (-3.5, 0.0, -3.0), - central: ("npc.frog.male.head"), + offset: (-5.5, 0.0, -3.0), + central: ("npc.axolotl.male.head"), ), chest: ( - offset: (-3.5, -5.0, -3.0), - central: ("npc.frog.male.chest"), + offset: (-2.5, -5.0, -2.5), + central: ("npc.axolotl.male.chest"), ), tail: ( - offset: (0.0, 0.0, 0.0), - central: ("armor.empty"), + offset: (-1.5, -10.0, -2.5), + central: ("npc.axolotl.male.tail"), ), ), (Axolotl, Female):( head: ( - offset: (-3.5, 0.0, -3.0), - central: ("npc.frog.male.head"), + offset: (-5.5, 0.0, -3.0), + central: ("npc.axolotl.male.head"), ), chest: ( - offset: (-3.5, -5.0, -3.0), - central: ("npc.frog.male.chest"), + offset: (-2.5, -5.0, -3.5), + central: ("npc.axolotl.male.chest"), ), tail: ( - offset: (0.0, 0.0, 0.0), - central: ("armor.empty"), + offset: (-1.5, -10.0, -2.5), + central: ("npc.axolotl.male.tail"), ), ), (Gecko, Male):( head: ( - offset: (-3.5, 0.0, -3.0), - central: ("npc.frog.male.head"), + offset: (-2.5, 0.0, -2.0), + central: ("npc.gecko.male.head"), ), chest: ( - offset: (-3.5, -5.0, -3.0), - central: ("npc.frog.male.chest"), + offset: (-2.5, -5.0, -1.5), + central: ("npc.gecko.male.chest"), ), tail: ( - offset: (0.0, 0.0, 0.0), - central: ("armor.empty"), + offset: (-1.5, -12.0, -1.5), + central: ("npc.gecko.male.tail"), ), ), (Gecko, Female):( head: ( - offset: (-3.5, 0.0, -3.0), - central: ("npc.frog.male.head"), + offset: (-2.5, 0.0, -2.0), + central: ("npc.gecko.male.head"), ), chest: ( - offset: (-3.5, -5.0, -3.0), + offset: (-2.5, -5.0, -1.5), central: ("npc.gecko.male.chest"), ), tail: ( - offset: (0.0, 0.0, 0.0), - central: ("armor.empty"), + offset: (-1.5, -12.0, -1.5), + central: ("npc.gecko.male.tail"), ), ), (Turtle, Male):( head: ( - offset: (-3.5, 0.0, -3.0), + offset: (-2.5, 0.0, -1.5), central: ("npc.turtle.male.head"), ), chest: ( - offset: (-3.5, -5.0, -3.0), + offset: (-6.5, -7.0, -4.0), central: ("npc.turtle.male.chest"), ), tail: ( - offset: (0.0, 0.0, 0.0), - central: ("armor.empty"), + offset: (-1.5, -6.0, -1.0), + central: ("npc.turtle.male.tail"), ), ), (Turtle, Female):( head: ( - offset: (-3.5, 0.0, -3.0), + offset: (-2.5, 0.0, -1.5), central: ("npc.turtle.male.head"), ), chest: ( - offset: (-3.5, -5.0, -3.0), + offset: (-6.5, -7.0, -4.0), central: ("npc.turtle.male.chest"), ), tail: ( - offset: (0.0, 0.0, 0.0), - central: ("armor.empty"), + offset: (-1.5, -6.0, -1.0), + central: ("npc.turtle.male.tail"), ), ), (Squirrel, Male):( head: ( - offset: (-3.5, 0.0, -3.0), + offset: (-2.5, 0.0, -2.5), central: ("npc.squirrel.male.head"), ), chest: ( - offset: (-3.5, -5.0, -3.0), + offset: (-2.5, -4.0, -2.5), central: ("npc.squirrel.male.chest"), ), tail: ( - offset: (0.0, 0.0, 0.0), - central: ("armor.empty"), + offset: (-2.5, -8.0, -2.0), + central: ("npc.squirrel.male.tail"), ), ), (Squirrel, Female):( head: ( - offset: (-3.5, 0.0, -3.0), + offset: (-2.5, 0.0, -2.5), central: ("npc.squirrel.male.head"), ), chest: ( - offset: (-3.5, -5.0, -3.0), + offset: (-2.5, -4.0, -2.5), central: ("npc.squirrel.male.chest"), ), tail: ( - offset: (0.0, 0.0, 0.0), - central: ("armor.empty"), + offset: (-2.5, -8.0, -2.0), + central: ("npc.squirrel.male.tail"), ), ), (Fungome, Male):( head: ( - offset: (-3.5, 0.0, -3.0), + offset: (-3.0, 0.0, -2.0), central: ("npc.fungome.male.head"), ), chest: ( - offset: (-3.5, -5.0, -3.0), + offset: (-7.0, -7.0, -4.0), central: ("npc.fungome.male.chest"), ), tail: ( - offset: (0.0, 0.0, 0.0), - central: ("armor.empty"), + offset: (-1.0, -5.0, -1.0), + central: ("npc.fungome.male.tail"), ), ), (Fungome, Female):( head: ( - offset: (-3.5, 0.0, -3.0), + offset: (-3.0, 0.0, -2.0), central: ("npc.fungome.male.head"), ), chest: ( - offset: (-3.5, -5.0, -3.0), + offset: (-7.0, -7.0, -4.0), central: ("npc.fungome.male.chest"), ), tail: ( - offset: (0.0, 0.0, 0.0), - central: ("armor.empty"), + offset: (-1.0, -5.0, -1.0), + central: ("npc.fungome.male.tail"), ), ), (Porcupine, Male):( diff --git a/assets/voxygen/voxel/quadruped_small_lateral_manifest.ron b/assets/voxygen/voxel/quadruped_small_lateral_manifest.ron index b7dea48055..1c91b5b8d1 100644 --- a/assets/voxygen/voxel/quadruped_small_lateral_manifest.ron +++ b/assets/voxygen/voxel/quadruped_small_lateral_manifest.ron @@ -595,217 +595,217 @@ ), (Rat, Male): ( left_front: ( - offset: (-2.5, -2.5, -4.0), + offset: (-1.5, -2.0, -4.0), lateral: ("npc.rat.male.foot_fl"), ), right_front: ( - offset: (-2.5, -2.5, -4.0), + offset: (-1.5, -2.0, -4.0), lateral: ("npc.rat.male.foot_fr"), ), left_back: ( - offset: (-2.5, -3.5, -4.0), + offset: (-1.5, -2.5, -6.0), lateral: ("npc.rat.male.foot_bl"), ), right_back: ( - offset: (-2.5, -3.5, -4.0), + offset: (-1.5, -2.5, -6.0), lateral: ("npc.rat.male.foot_br"), ), ), (Rat, Female): ( left_front: ( - offset: (-2.5, -2.5, -4.0), + offset: (-1.5, -2.0, -4.0), lateral: ("npc.rat.male.foot_fl"), ), right_front: ( - offset: (-2.5, -2.5, -4.0), + offset: (-1.5, -2.0, -4.0), lateral: ("npc.rat.male.foot_fr"), ), left_back: ( - offset: (-2.5, -3.5, -4.0), + offset: (-1.5, -2.5, -6.0), lateral: ("npc.rat.male.foot_bl"), ), right_back: ( - offset: (-2.5, -3.5, -4.0), + offset: (-1.5, -2.5, -6.0), lateral: ("npc.rat.male.foot_br"), ), ), (Axolotl, Male): ( left_front: ( - offset: (-2.5, -2.5, -4.0), + offset: (-5.5, -0.5, -3.0), lateral: ("npc.axolotl.male.foot_fl"), ), right_front: ( - offset: (-2.5, -2.5, -4.0), + offset: (-0.5, -0.5, -3.0), lateral: ("npc.axolotl.male.foot_fr"), ), left_back: ( - offset: (-2.5, -3.5, -4.0), + offset: (-5.5, -3.5, -3.0), lateral: ("npc.axolotl.male.foot_bl"), ), right_back: ( - offset: (-2.5, -3.5, -4.0), + offset: (-0.5, -3.5, -3.0), lateral: ("npc.axolotl.male.foot_br"), ), ), (Axolotl, Female): ( left_front: ( - offset: (-2.5, -2.5, -4.0), + offset: (-5.5, -0.5, -3.0), lateral: ("npc.axolotl.male.foot_fl"), ), right_front: ( - offset: (-2.5, -2.5, -4.0), + offset: (-0.5, -0.5, -3.0), lateral: ("npc.axolotl.male.foot_fr"), ), left_back: ( - offset: (-2.5, -3.5, -4.0), + offset: (-5.5, -3.5, -3.0), lateral: ("npc.axolotl.male.foot_bl"), ), right_back: ( - offset: (-2.5, -3.5, -4.0), + offset: (-0.5, -3.5, -3.0), lateral: ("npc.axolotl.male.foot_br"), ), ), (Gecko, Male): ( left_front: ( - offset: (-2.5, -2.5, -4.0), + offset: (-5.5, -1.0, -3.5), lateral: ("npc.gecko.male.foot_fl"), ), right_front: ( - offset: (-2.5, -2.5, -4.0), + offset: (-0.5, -1.0, -3.5), lateral: ("npc.gecko.male.foot_fr"), ), left_back: ( - offset: (-2.5, -3.5, -4.0), + offset: (-5.5, -4.0, -3.5), lateral: ("npc.gecko.male.foot_bl"), ), right_back: ( - offset: (-2.5, -3.5, -4.0), + offset: (-0.5, -4.0, -3.5), lateral: ("npc.gecko.male.foot_br"), ), ), (Gecko, Female): ( left_front: ( - offset: (-2.5, -2.5, -4.0), + offset: (-5.5, -1.0, -3.5), lateral: ("npc.gecko.male.foot_fl"), ), right_front: ( - offset: (-2.5, -2.5, -4.0), + offset: (-0.5, -1.0, -3.5), lateral: ("npc.gecko.male.foot_fr"), ), left_back: ( - offset: (-2.5, -3.5, -4.0), + offset: (-5.5, -4.0, -3.5), lateral: ("npc.gecko.male.foot_bl"), ), right_back: ( - offset: (-2.5, -3.5, -4.0), + offset: (-0.5, -4.0, -3.5), lateral: ("npc.gecko.male.foot_br"), ), ), (Turtle, Male): ( left_front: ( - offset: (-2.5, -2.5, -4.0), + offset: (-1.5, -0.5, -4.0), lateral: ("npc.turtle.male.foot_fl"), ), right_front: ( - offset: (-2.5, -2.5, -4.0), + offset: (-1.5, -0.5, -4.0), lateral: ("npc.turtle.male.foot_fr"), ), left_back: ( - offset: (-2.5, -3.5, -4.0), + offset: (-2.0, -2.5, -4.0), lateral: ("npc.turtle.male.foot_bl"), ), right_back: ( - offset: (-2.5, -3.5, -4.0), + offset: (-2.0, -2.5, -4.0), lateral: ("npc.turtle.male.foot_br"), ), ), (Turtle, Female): ( left_front: ( - offset: (-2.5, -2.5, -4.0), + offset: (-1.5, -0.5, -4.0), lateral: ("npc.turtle.male.foot_fl"), ), right_front: ( - offset: (-2.5, -2.5, -4.0), + offset: (-1.5, -0.5, -4.0), lateral: ("npc.turtle.male.foot_fr"), ), left_back: ( - offset: (-2.5, -3.5, -4.0), + offset: (-2.0, -2.5, -4.0), lateral: ("npc.turtle.male.foot_bl"), ), right_back: ( - offset: (-2.5, -3.5, -4.0), + offset: (-2.0, -2.5, -4.0), lateral: ("npc.turtle.male.foot_br"), ), ), (Squirrel, Male): ( left_front: ( - offset: (-2.5, -2.5, -4.0), + offset: (-1.5, -1.5, -4.0), lateral: ("npc.squirrel.male.foot_fl"), ), right_front: ( - offset: (-2.5, -2.5, -4.0), + offset: (-1.5, -1.5, -4.0), lateral: ("npc.squirrel.male.foot_fr"), ), left_back: ( - offset: (-2.5, -3.5, -4.0), + offset: (-1.5, -2.0, -5.0), lateral: ("npc.squirrel.male.foot_bl"), ), right_back: ( - offset: (-2.5, -3.5, -4.0), + offset: (-1.5, -2.0, -5.0), lateral: ("npc.squirrel.male.foot_br"), ), ), (Squirrel, Female): ( left_front: ( - offset: (-2.5, -2.5, -4.0), + offset: (-1.5, -1.5, -4.0), lateral: ("npc.squirrel.male.foot_fl"), ), right_front: ( - offset: (-2.5, -2.5, -4.0), + offset: (-1.5, -1.5, -4.0), lateral: ("npc.squirrel.male.foot_fr"), ), left_back: ( - offset: (-2.5, -3.5, -4.0), + offset: (-1.5, -2.0, -5.0), lateral: ("npc.squirrel.male.foot_bl"), ), right_back: ( - offset: (-2.5, -3.5, -4.0), + offset: (-1.5, -2.0, -5.0), lateral: ("npc.squirrel.male.foot_br"), ), ), (Fungome, Male): ( left_front: ( - offset: (-2.5, -2.5, -4.0), + offset: (-2.5, -0.5, -3.0), lateral: ("npc.fungome.male.foot_fl"), ), right_front: ( - offset: (-2.5, -2.5, -4.0), + offset: (-0.5, -0.5, -3.0), lateral: ("npc.fungome.male.foot_fr"), ), left_back: ( - offset: (-2.5, -3.5, -4.0), + offset: (-2.5, -1.0, -3.0), lateral: ("npc.fungome.male.foot_bl"), ), right_back: ( - offset: (-2.5, -3.5, -4.0), + offset: (-0.5, -1.0, -3.0), lateral: ("npc.fungome.male.foot_br"), ), ), (Fungome, Female): ( left_front: ( - offset: (-2.5, -2.5, -4.0), + offset: (-2.5, -0.5, -3.0), lateral: ("npc.fungome.male.foot_fl"), ), right_front: ( - offset: (-2.5, -2.5, -4.0), + offset: (-0.5, -0.5, -3.0), lateral: ("npc.fungome.male.foot_fr"), ), left_back: ( - offset: (-2.5, -3.5, -4.0), + offset: (-2.5, -1.0, -3.0), lateral: ("npc.fungome.male.foot_bl"), ), right_back: ( - offset: (-2.5, -3.5, -4.0), + offset: (-0.5, -1.0, -3.0), lateral: ("npc.fungome.male.foot_br"), ), ), From a06d75d5a26ccd0de5169524d6aa154969cb1b07 Mon Sep 17 00:00:00 2001 From: Snowram Date: Sun, 6 Sep 2020 19:44:24 +0200 Subject: [PATCH 22/28] Better quadmed legs/feet ratio --- assets/common/npc_names.json | 6 +- .../voxel/npc/catoblepas/male/foot_fl.vox | Bin 1984 -> 1968 bytes .../voxel/npc/catoblepas/male/foot_fr.vox | Bin 1984 -> 1968 bytes .../voxel/npc/catoblepas/male/leg_fl.vox | Bin 2224 -> 2280 bytes .../voxel/npc/catoblepas/male/leg_fr.vox | Bin 2224 -> 2280 bytes .../voxel/npc/grolgar/male/foot_bl.vox | Bin 1316 -> 1496 bytes .../voxel/npc/grolgar/male/foot_br.vox | Bin 1316 -> 1496 bytes .../voxel/npc/grolgar/male/foot_fl.vox | Bin 1564 -> 1912 bytes .../voxel/npc/grolgar/male/foot_fr.vox | Bin 1564 -> 1912 bytes .../voxygen/voxel/npc/grolgar/male/leg_bl.vox | Bin 1720 -> 1588 bytes .../voxygen/voxel/npc/grolgar/male/leg_br.vox | Bin 1720 -> 1588 bytes .../voxygen/voxel/npc/grolgar/male/leg_fl.vox | Bin 2048 -> 1872 bytes .../voxygen/voxel/npc/grolgar/male/leg_fr.vox | Bin 2048 -> 1872 bytes .../male/foot_bl.vox | Bin .../male/foot_br.vox | Bin .../male/foot_fl.vox | Bin .../male/foot_fr.vox | Bin .../{hirdrassil => hirdrasil}/male/head.vox | Bin .../{hirdrassil => hirdrasil}/male/jaw.vox | Bin .../{hirdrassil => hirdrasil}/male/leg_bl.vox | Bin .../{hirdrassil => hirdrasil}/male/leg_br.vox | Bin .../{hirdrassil => hirdrasil}/male/leg_fl.vox | Bin .../{hirdrassil => hirdrasil}/male/leg_fr.vox | Bin .../voxygen/voxel/npc/hirdrasil/male/neck.vox | Bin 0 -> 2800 bytes .../{hirdrassil => hirdrasil}/male/tail.vox | Bin .../male/torso_back.vox | Bin .../voxel/npc/hirdrasil/male/torso_front.vox | Bin 0 -> 3656 bytes .../male => hirdrasil}/torso_front.vox | Bin .../voxel/npc/hirdrassil/male/neck.vox | Bin 2784 -> 0 bytes .../voxygen/voxel/npc/lion/male/foot_bl.vox | Bin 1344 -> 1476 bytes .../voxygen/voxel/npc/lion/male/foot_br.vox | Bin 1344 -> 1476 bytes .../voxygen/voxel/npc/lion/male/foot_fl.vox | Bin 1308 -> 1428 bytes .../voxygen/voxel/npc/lion/male/foot_fr.vox | Bin 1308 -> 1428 bytes assets/voxygen/voxel/npc/lion/male/leg_bl.vox | Bin 1588 -> 1544 bytes assets/voxygen/voxel/npc/lion/male/leg_br.vox | Bin 1588 -> 1544 bytes assets/voxygen/voxel/npc/lion/male/leg_fl.vox | Bin 1528 -> 1440 bytes assets/voxygen/voxel/npc/lion/male/leg_fr.vox | Bin 1528 -> 1440 bytes .../voxygen/voxel/npc/tiger/male/foot_bl.vox | Bin 1328 -> 1512 bytes .../voxygen/voxel/npc/tiger/male/foot_br.vox | Bin 1328 -> 1512 bytes .../voxygen/voxel/npc/tiger/male/foot_fl.vox | Bin 1372 -> 1464 bytes .../voxygen/voxel/npc/tiger/male/foot_fr.vox | Bin 1372 -> 1464 bytes assets/voxygen/voxel/npc/tiger/male/head.vox | Bin 3220 -> 3220 bytes assets/voxygen/voxel/npc/tiger/male/jaw.vox | Bin 1240 -> 1240 bytes .../voxygen/voxel/npc/tiger/male/leg_bl.vox | Bin 1640 -> 1512 bytes .../voxygen/voxel/npc/tiger/male/leg_br.vox | Bin 1640 -> 1512 bytes .../voxygen/voxel/npc/tiger/male/leg_fl.vox | Bin 1636 -> 1580 bytes .../voxygen/voxel/npc/tiger/male/leg_fr.vox | Bin 1636 -> 1580 bytes assets/voxygen/voxel/npc/tiger/male/neck.vox | Bin 2124 -> 2424 bytes .../voxel/npc/tiger/male/torso_back.vox | Bin 4660 -> 5236 bytes .../voxel/npc/tiger/male/torso_front.vox | Bin 6196 -> 6196 bytes .../voxel/npc/tuskram/male/foot_bl.vox | Bin 1288 -> 1412 bytes .../voxel/npc/tuskram/male/foot_br.vox | Bin 1288 -> 1412 bytes .../voxel/npc/tuskram/male/foot_fl.vox | Bin 1348 -> 1500 bytes .../voxel/npc/tuskram/male/foot_fr.vox | Bin 1348 -> 1500 bytes .../voxygen/voxel/npc/tuskram/male/leg_bl.vox | Bin 1512 -> 1460 bytes .../voxygen/voxel/npc/tuskram/male/leg_br.vox | Bin 1512 -> 1460 bytes .../voxygen/voxel/npc/tuskram/male/leg_fl.vox | Bin 1528 -> 1432 bytes .../voxygen/voxel/npc/tuskram/male/leg_fr.vox | Bin 1528 -> 1432 bytes .../voxygen/voxel/npc/tuskram/male/neck.vox | Bin 1904 -> 2072 bytes .../voxel/npc/tuskram/male/torso_front.vox | Bin 5452 -> 5572 bytes .../quadruped_medium_central_manifest.ron | 36 ++-- .../quadruped_medium_lateral_manifest.ron | 180 +++++++++--------- common/src/comp/body/quadruped_medium.rs | 8 +- voxygen/src/anim/src/quadruped_medium/mod.rs | 78 ++++---- 64 files changed, 154 insertions(+), 154 deletions(-) rename assets/voxygen/voxel/npc/{hirdrassil => hirdrasil}/male/foot_bl.vox (100%) rename assets/voxygen/voxel/npc/{hirdrassil => hirdrasil}/male/foot_br.vox (100%) rename assets/voxygen/voxel/npc/{hirdrassil => hirdrasil}/male/foot_fl.vox (100%) rename assets/voxygen/voxel/npc/{hirdrassil => hirdrasil}/male/foot_fr.vox (100%) rename assets/voxygen/voxel/npc/{hirdrassil => hirdrasil}/male/head.vox (100%) rename assets/voxygen/voxel/npc/{hirdrassil => hirdrasil}/male/jaw.vox (100%) rename assets/voxygen/voxel/npc/{hirdrassil => hirdrasil}/male/leg_bl.vox (100%) rename assets/voxygen/voxel/npc/{hirdrassil => hirdrasil}/male/leg_br.vox (100%) rename assets/voxygen/voxel/npc/{hirdrassil => hirdrasil}/male/leg_fl.vox (100%) rename assets/voxygen/voxel/npc/{hirdrassil => hirdrasil}/male/leg_fr.vox (100%) create mode 100644 assets/voxygen/voxel/npc/hirdrasil/male/neck.vox rename assets/voxygen/voxel/npc/{hirdrassil => hirdrasil}/male/tail.vox (100%) rename assets/voxygen/voxel/npc/{hirdrassil => hirdrasil}/male/torso_back.vox (100%) create mode 100644 assets/voxygen/voxel/npc/hirdrasil/male/torso_front.vox rename assets/voxygen/voxel/npc/{hirdrassil/male => hirdrasil}/torso_front.vox (100%) delete mode 100644 assets/voxygen/voxel/npc/hirdrassil/male/neck.vox diff --git a/assets/common/npc_names.json b/assets/common/npc_names.json index 2484cb4486..fb5f7b2a76 100644 --- a/assets/common/npc_names.json +++ b/assets/common/npc_names.json @@ -291,9 +291,9 @@ "keyword": "deer", "generic": "Deer" }, - "hirdrassil": { - "keyword": "hirdrassil", - "generic": "Hirdrassil" + "hirdrasil": { + "keyword": "hirdrasil", + "generic": "Hirdrasil" } } }, diff --git a/assets/voxygen/voxel/npc/catoblepas/male/foot_fl.vox b/assets/voxygen/voxel/npc/catoblepas/male/foot_fl.vox index 5a5636c50fa9881c49700ad27866da2ebd8e0639..791e8d24a78516c616c8d3dcdb49ce89bfe91206 100644 GIT binary patch delta 926 zcmWlXv9T0E3`8Y$Yj*dXUq1p!<>OEoyEBDB5d_`^a53Ou5d>9Oc*H?8yffal)TbTT#nmh*Hh*={} zjkru68y*P!jCW$l%DW(yvy`WlE1YLKS2?FpJ0E8>MUB}Mp(c-kH}a~HOJMTY@Ic^a zyc0uI(X41zcSERVLaCNeL%3GD&T?G>8?RZ{kGiUh#uQ@2z#J5gni>?6$A$+2LzGsQ zE|pHBA#y0;2@eg6n~H`yWpPujXw7WVPfNsxcnr}{cY&XpzMQ6kSCwhv8&dnx;L_U!B{tJ%A!(1-bHk`$(z8}zc8jag`l+>EPd zHQ%1ZVAF9mS~)I(bDRxXcs1A|J|s_+UAZ8Wvcm9b8j4$-1xCC$Ic;l4!KW(b6*Wr`x3bLUJndWpq-6& zPPg+1AqK@U9R~+G7~jDy55{-Qs)J`aczbf<(!qLap`UTwxXkUUyfK{{W502c8XP^9f z`SbGn<@);Zhne+Hp9hD%eSiJ%eA5ce{-SJlXW4C=--&FC+uD+DC-(4L$f(K9Zv9u> z+U<5^+#MMltANE@aKaEg!LfpkY~>>!9v$#1V#rR+nQPcufH#qg*r!nVeuYqMJ>nP{ z`w%&4?~09@qlfe6#|&-gxIDHI(dap^f{~7>PZ$}`amj!?&3+6eAZ>_zw4pdhcthuK zZC4}`FrD3_u|!=3u(Xe2fm%!1K9VKUk1OFNeF-nAPnM8vLk1tN9zVNs4dkMefrZPO z&ONf>poXtpoAIt0jW)d5_4}vZ=RegBUdR9d diff --git a/assets/voxygen/voxel/npc/catoblepas/male/foot_fr.vox b/assets/voxygen/voxel/npc/catoblepas/male/foot_fr.vox index 43f33c484133ee434d1e59dd603773f8747927ce..286d47768d25d72bc533355d82d203464070cdf3 100644 GIT binary patch delta 926 zcmWlXy^$3`41^`MG_$+T)kOfQ91evsKZQXN1l|i^W5B^82&%B~h=XYOp3&8<9%)9> z?%$VRFRx$L*Y`inY`lG%kp2Ar`tJUwr!@NqB5f;eW!m(zN0d#Kjf9KX8(y=aW;2`Z zBKD3464X;4Xb|C#1R)=i?*yK{BYg?Z^ik>e@FJ;5DonVDz2PaD^@7B-~@&Cj1d`AAQLa~in_Xkhe@p1h2age#Zn`&1rOtOJdmJ(hh~IE z!UbH~Ax#MnF4$8%sG$^-YFBD`QCHe3@t#%{d3O^J>XD#;d#>=@9=RiO3eL#oB381> zWUAZ+dy<=Ya3&twi@eGuIE&b7nAdbK?yW5+j#?hY{k3i(61Xr_OhK$-f?|T=TNNv# zxHto5ZMn4_*0{J0ceJ-DV9};W8xd^@ooEyJYBONLDQdFOc;jDd_sFEs`g9Q1xwLQh zPPcssZNV9cAdXJ6pPk9q#@3Lf^%`MlkJ_^Zq^W^~3J5nqq5&$Q7QP{{?BCb(on!C* zdinG6`elCo_`}Tlr_Y0AZ{J@(+~49U&HfVJ?DDd!Hou&xO;@!i;!5h2Um}Vb-|W)= z(52n3B#Pfj6r3u-;!R{2f+sjtu!(y5(#@j-eufa)smcC`JqCEw)61HXH8QGa=E`hC zPcLdk)rd^qTTj)>;5}Ne%$`MLEYIqS8e&%Tm2CyH5jP)38&SD}!N?6r&J=(kMO$ET9uAIsMzRmFJA((<4(Id7Vd>^Tif~gID^t?l}DsZcnMWlDf znX`ps%rWLbJ+~#VCFPJ1!|#UQ3!s92iH)6&5!Q~l6UU4uu1cLYvmsVC%xf4I zajWjm1-;#fBBE_Lt}ULtBj`)kx*Q>(3P< s*^M~^Y|ObK<_CX9`f(z9AbP^xyZOP)370wN?Va&J;dZXyKjVG=1K71*jsO4v diff --git a/assets/voxygen/voxel/npc/catoblepas/male/leg_fl.vox b/assets/voxygen/voxel/npc/catoblepas/male/leg_fl.vox index 30f53292cb0d76617a54f1ed1bd9b6c2760b1e8a..2ca7b505258eae61a2261ad22f64852814a7eb9c 100644 GIT binary patch delta 1243 zcmWlYy|FDt41^_hOS9)3Fs_A*Nf0=g&zRk{s0YcM7;s(!5CB!ALJ)+(ca1JdJ*}S| z&HnxI-^a(V*ViAvMa2H)%ZZ79|M>Xf{TQkSq!?I<`<1qX~D zf&(Sd5FLJ4G!zZBg*AxQPEbIN4%AR*v<))6D@=3mc&E8GUj>w=x$h`*?T88yzCj3` zOmlR=_+fMX=#0+j@T19XbU?sO-Vl#Z4SD!lXcv6+epmFR=+n{ML~|3(Fuj#<_)*O+ z`>aBTb)geF!C|G|#t*|84#;pIx*4Xq339P+G(-KNKGxIkU5g@%0Gl!Fe@+2|$YG$l z3kW!e)eHl{)i4k`YzUoZm&nC8HatACVW43(!$5OK&y|f1sLAa&#Rk#PV1|hpU{QFH zu;62{r*#=*F5U<+a4rUc167Mx4p)mcEe3(ZN{ctLSQ9!>Ufc||KI2}jh`e`0;N&0x zn#CjGaB;XO`f2014Jr@*27Hi33C5msj+wzOJyTPww>=cdE3@gz7AGk~_(rEZ=9gc5*50GnF*%6^URX zQi(X{E`ny}>^?(5jBOwVq)Z?#c@^SSMffVT%e4yaQWAY;0H1Yc8i+erR_`1@&?MVT z2Lw%$CaG~nCQ~*rv7$J40|9_})?5a_IARJ@o^e4=b$Mc7L-QF z0NR`pQ6QK!s)J^%XN)B@WZt1s^R*Ht?1OLUahZBkZ<>0dJ^0m7Z*!*pRv?zgQazR? zQw+o!adXxatFUkY*bm?k%7ZmM5CdueMI)PcdY+ox9e_|PKexH-!TScp&r6d&mfP~M9YA3#!={U~Y)W>e zc%PipmeOWo!+ptpd-#g*OW4G^e1?2WPMl9qzao7q{U*?t7Xbxnv1D<%#|$8kD?OG4 zTm(sj%fw7zf&&2r5?ID|5J{dymv9AF$1>v5I`V9 z+obK%3LwD=UFz~AHqqf{YFQBrqI3yl!8NfB*XS*GSY85ldrtSf0?2bE)&edN0pVxl zG9|^)DQSQ16kH}FKnIlQfEBTobQ7+U;<>Hi8XZs*H^?=pV>NH*5mvOlws~#$;xa|+ zi%!(EfD1UFfCDBt6`eqbO{^tc!X;c5oq(&lyx@SUc5=3c1JUTZ?rj5N)DB?Q%%*8i zPg!5)%`P;H)ht%;1QyMOn$f`FC)U)<1*c{gnq5GbXmg9+$3y@ zG$hsrML`UF8(e6xEQ386Tn66<-QgUZW3ZHi&I~qvTqZaW8f^REB5+9#5DAxXzzSW# z-8=-W5jBB5mVgb;gXCDVW4j&8{9sWJE^yEV{5a^sLGgpa2fydR@5vdPSj&Uugu^P2 zm3c4{a)BtgI_7PSs7Zvi!OMXU%ul}d}2MgffX@z z(q7JmzKL!0jdq|NaPeS#4|eFm$R3|))q_obaMK5~dN3nifG9)_-@Mn8wm#84S+XZz N@kH~ye*esO`40$(bteD- delta 1188 zcmWlXz0nmp5Jm6pA8FoOoX?^Pi&QW%Mk9-2iD7e?7}mie2&zbj00@Kg4Ap2_Qun#H z`_J3Yx3@3X*N@*Nou580KKk+h+xz<;Hedh!_W8ehg`^LbDtl-4Rne=ecV(TG;|gLK zoDs{cmBh-N2j{`QU-#J;`^;52FK3@Yo+!TLi5xq5lf20o_evgR)s;NTOcKvsekCM9 z*Hx7yoB+h7?B(dw)g-Rv7nDgJbp-&?6agS=?8v0pyi!1uFFh!jEMkM2T|4_GNP(=0 znm98L6eY@ISLdz@RQM9Ag#u-5QPdPQMIB?AqAp-+oX!Mn?hqgp4T?tO4vNMg*0rLE z6|o|AXROF$rJ!-H3?K&kF(Aw5FWDK~(C;edcqu?I%Dshp?P z+XmKv1LGiu0|w?cG=|1Cw}EjU&_gLGaUzTwpdyG*tRAQWE^sFr1;rU~0bJw*AwU}u zK;}SD1K$TT!+#0^UKM;x3}N5ULkpScjbbhhtfud3VwFqSqzsfC+bYz&?8jy^T!0xc zPv&8uaB$X%GQ?D{4g{H&JgxvN9EdSOiiN;&qhg=}%4k%SSr3LsJB13Hi5Du20;~o= zI3ojVU;$7ZO8^J}4bGY~07TnV2W?<}aK^%A&1E3$18^_j@i+~QCxbM&Fz8LAs<}`` z!2^0RSWj94y-h20#hlOsJr2N$^@BF(OaW|d2>{2E51f4s@MCKNh-wW05iRQ6YA#Sn z6jDAfE3nqkX?bEZg**Tn*i0ceN=ldOd4_PyVirVVhHX-G(5itWI416@o`~b^;O*dT UleeGT$C>fKwtlW(zw2H71r%*=`2YX_ diff --git a/assets/voxygen/voxel/npc/grolgar/male/foot_bl.vox b/assets/voxygen/voxel/npc/grolgar/male/foot_bl.vox index 0d73b9b1b754254458e1732a742fd18b6530db8e..2a7a3d016543f19e6d0a33414f0b1fc714941eb0 100644 GIT binary patch delta 242 zcmWlSyA8rX6a?SrJ_sU55Yhw^oFj)0fB*>@V){U$151bs=)f(w0WvaLVH~V>w3@s3 zo_`nB`Pi*rBC>DV10`c$Evp&OU9Rm@r%B}2?|yfcP#bZg8j2}Q)YvT)Cl*pMhdtFQ z5kKO`q6%v)POHJhjol+YJhddegqQGmZ~SEmkKNM-kwG%YGg9VwE@~Mma~yWq*{2S4 Q$YogRR(*Ul!^uAO2l_V~5C8xG delta 60 zcmcb?y@X3J%s)b58Uq7^ucN0QkYW&+C@3z-0%Sx)MtME}i2#B5M9ce|&oEjrGVh*N KyqTT(A`<|TR}Osu diff --git a/assets/voxygen/voxel/npc/grolgar/male/foot_br.vox b/assets/voxygen/voxel/npc/grolgar/male/foot_br.vox index 950b33e69bb6d54b2ff557f6c3edc68f09998b2f..cab4c28e1928a18f7060cd8f5b5a120c23e76f6f 100644 GIT binary patch delta 241 zcmWlPyG_JU6b0|O_k9pVj+{~i$-WmkbN~cM$V*HgNOZ8$YAe_d+=3g}jBHzB9E{HB zXs(ZcPs8W?@_aF~*J*xZY (@PI7GulcO~GW$Lq?mx2B-BJsXaN!`wA@+^bWtlGb zuuO+5)8#JD&7GfB@I<rAvjb^Z+^Tr3I_NA)>r=Po=q4;@Vu57y@%syP*zd9d*SAj=xg1b-mSI>pv^#`KZ z@@g|c)s{7z4gqSm61C1XoemY6s13S7H*8r?vor6><>=7Y7$RVnZwTD!w{QgUHR5TY$h5pE;Ge60Fdb!4sAKZ%jQwG0D%jyvVpaUFiy_FI2jV}Ww1>yybteRzr3{k|0l8+4^QHm>-V?I?{D(!!!Lb~f7rZC AFaQ7m delta 537 zcmW-du}VZS5JhL^PTt#9u@*t_H%wk*VX?4kp~$+8_LgE}v)>?sh1gq*r61rg_$ij2 z7&zQJ;U<~P@9x{q=IVTP_+nW`o(qVtumH3s!;d*|yd7dhz2J)&oRZ^I|QE zRRN*u12rnhPHJ*NdJ9l`wc^zwif@`Q2{y1f5CY*7LczhP0m^7rf`im0I2SF!2kL_?f5yCawY-pSg?)JCg;Y9Esr8~HJ4WCEy<{&cf)@B5e!Epo~WSo@?FW?CZyn^7$Tg=v_OAqAI zR~9@X-tVfP)eZgg{P*$x@!j3iA7=LU^6G|RU%J_ctNT~yL%0ea!3pj@-CsQy3)dfr zvgyrcG+PDMZS{^b1qrrr&thvZ#Z0CRvOzX%pJGV@PPq0HA?Rc?55KT$fuETW>6@3& z0F|%Se07M1GZU;~3lLaodWjD4;##x#ylKYX#81c4A#!u&79g<9=@6N#5-%JA z1Xnt4rRD!Wk-d0$63<+}zg>QRlV2Zx>2v%8tW!(? delta 559 zcmW-dF-`+P3`PBI&+Kl9sA!Qm2AbW5f+A9Y0)#@&K!<2(atNdph@KjyxYLzW&R%B`YT2>)uCwL@LJiH1SA#mXKm)SJ*yBTm8k&QxW1t2a zY_vIF*jf-hTZ4Lj;fNfp*Ihykx)a1gc(p$9&iUS)JTxU+C0idJ<6QBze|r7M(|CK? J9=`L_{{WG)GUNaN diff --git a/assets/voxygen/voxel/npc/grolgar/male/leg_bl.vox b/assets/voxygen/voxel/npc/grolgar/male/leg_bl.vox index a3e85d4508e167309a74d07514209101f6a23bcd..c1076caf06dcca7ad1dae49488d76248fef3872b 100644 GIT binary patch delta 547 zcmWlWu~oz{5JYEZRwg-ui%6+MiU=ezRsGqX{k{CV zx_*9ox&4&%aDRS8^!;&tvt3|bUf<5|-b>OKB&TVJPpctCE_6B0jN|HoHrmHoXo81= z7;oxm>c~2L;f04Rht-gAm>!31)*v(i3Iqum3KaTg5fsSui++(o_=pSzS(a(YSh(o2 z7Nqe|!0%fN_`R&%#O(+m)3Bx?ed2IDDisTg1vORpDh@B^@nBO=F^}I>X3or+IWuQo z!^}|+9vu3O-xO{UhQlQ?k;pMf3(uO@?c z9iYKW4bB{#Ip$_eK&AlpV57m|i|)MRke-~FIB=%HE2;)%txgNmmHLqH~jO&=68 QI17KOP~f}#-1)Nq0qz|%zW@LL diff --git a/assets/voxygen/voxel/npc/grolgar/male/leg_br.vox b/assets/voxygen/voxel/npc/grolgar/male/leg_br.vox index c26d7422b3506d8119c700360cf56ac123ad8f6b..9303ac8ef06e9a8984e7b4753204fd11e178debc 100644 GIT binary patch delta 547 zcmW-dAyx!I3`DC^>BcN#6?V_jqmU~A$6L4xV$Oi!6gUtZizDzC@w=+hdFjmj+3vALfVo zVLmxzaCRCJ9-sgQU9~5VaMyE{$-r;nA%=oPp0#QeUr|etF8)ewZZaffaL8ziT=b(t zWAe^n(*Pwdp@z4#+1M;%2I0Xm3z&Y?)ImiZ3Ih7?5j|pY@e%mKL%krK=fKYyFeoH90KxJ2MtrZTf6~**{GR@< zZ(g1+cb}3TAI?vRzCUhmw=2x$_3iwgJtcjC>o^6@aaB;GCN~bN`(YKN9i|%|Qg{#~ z_>hMfZ~U&J4j#)YNMEM=vN3F#)s`7B2&!lRgP=kT20@t^4BEZ$ATeVMJ}~&eU|D=0 z%pc4j%m;~n%>sKPFabDtC~!NnfVdsEmpS0IWDekM`pq)tw&YP4d8l0#77Kl0QGD>p zEYyXE+O=h7Q_);AE}HSdLxHPk#-ncd9X0wJ!y8MqsWcXEoFN7kbx09|8#Sn1J2mwg zkUN*@bBjA4?mR1rbT;h_BCgILn$ZF^>X1eZ>ckMx0PRo9vxCgjn8H-Sic@V+y}w)_a9GhaxabX0^wex;)=*M6riP{6`|!r=O|sO zxrTLFaXI4}VAZmWCg{ot?gV$qk>Y%=kXK|ag_k_$< zc+kzq2Zs+9_S2#z{MQ+W)K(<4vK@~QZR7Az=iO=FEEVEgC={; z#VUr0C-va92ESwQVrUL#XHe9jQ)2eBSTAD8CT?OhG{}jMkAvwPbirb9d9yc3I8guj Hm+$-^-v>Yc delta 1007 zcmW-gIhGYM3`M2)WVxCE=!lec{BqJ^2MiIXVKc=RNZ1G|i(nxf*1+`-ZfUSfe)90= z_4l`rUp~FO{}~YS5 zp+0LEf1J*-N`_jBTFzQ=)U8IH8V}4Z=EO?HwK9z(EGV%Qb?}pcg^3kjF}9#B zj79DOipBRrxvXCHT*_WTjEq6o(=gbQIsVa^sCMa+E>xHx~#KJVvW2xNXU-gVuC<0dgl zfVSnbBo|2RyfFMlC@# zYMY{sT4E4*5O<#mf|&S|F^GeC5T0!7MBJp#MBHR2$$g9un(P@Iuims zv^20Gz>VG5$N-nNN-H6XxXJhJAJ;CN zxM&c<)($RL?-!U`)RYJL7zRf)!@x#p@Vx;~2>Yy7$5XWK3+(yyJ|P zKOqP{Pl88qHpoHpnM1Kk!LDN^GBfxO_?tMgDwgrP;}j%**Av0Q06W+*It8R)8o_G* I{P#n>0oIv6S^xk5 delta 1008 zcmW-fyO9t<3`8Y$k7mKR;w)U^*c}Hv44`nRgJhNza7YA~AP9sa2Hu?UR^QR~eEvLq zfA#p~)6<)u5%J;e`;VCT`{VKT{SxQt>$ms6wNnxQz^=v6y7IEbjRV#gv z)1vtb3Fsf9ms*Y$yT+Od6SMa48N*kN7b}#j=yA=PPcw7?MH(x$QoV!~!<0~oO$2OV zy37yLlfm>-Pihrf9*B?;wFM*sn^}{Yy{fP}`1!ym-uZDKtDbklfX0u4{j)8A#yxod zVDPhM(VPs|C4`EBVxU3&Vj0Bl3^Eopsn6q5AD8<$HLxIKLHB`*%2OO|L2@+W$ZH=v zXyjRtgIwcR(OdM^nc`$zXF+mhV)r%hL5<(|*q~NhOo{b~7Zy@lxA$&L0usy}3Tofw zAZ{^?7@Js6VyL<6?0jDvSVou`Y&PN3CgyDvq`80YUeEV$1k&Hs+xJ;G*(4?jsBL*H z;!RYI(;5uMhXi{dcp#V4$1!@Fa!;AM_r?`^~ADdpC+3wFGX|HbWb= z#88lfxSKnq4xadv8u*|OtjV!X#7*W*#7$0;9Mr&X{3hR%_kcgi9rS;8Ff>pTsK-`t lU-%ik&bU;;iwzzljNppsH(&9ZS5;-&7++JBnT|qu_qoRXx2i5xosQ*5(EV; zY{$ZehixOsmapSmmN3vje)zb!+o0|jte@pAP--A zIO{p<`9|o1j&A9!={ug}Ne)66UY|2LYx_<>f}m!voDMz`H0$ms31P8K;9=1#whjU5 zu@)45hZf}E5$k}A;5m>pJATWcSI~S+L_la|vf3TpPM^SB-Bj+*&g|@(lfDC*nv?V?SWa2}iO%oltkMNm-n!TEi zq9(pw(}`*t(H3-C&}TuP1${UML4i3w1SALwEbt*9K~P|c4*>~+0@H#%ixI*Hp$ji+ z!8Z)QE$OkO!;%hY5SZgZK!Tva0v`er1O=A(5Rf1!a4q>xEk}aTS<7R$6>F_nYsFeC z)>^R^9wZ0~Ebt*9K~Ug{2MLiqV@`=i~x`LCbz`25%L+fTp$XXPy}gqt*xV38%n1edU^y9Og6Ca{&2O%TEDG=+sA zxShR~78W)ZS_qaY6s+z12LwrzG_Rj`J6SAZgy745`OVDl%(>4qckaFW);Hh&@-HId z{;PK%ka+R)5pUjo=g#LYiO+#&a0_pL=bgKGNqpX)5&k{5BF>2tj}gz!5$84H!$gT& z&B5o!jPsoF;Xhr+M9U)0q6p$3jj%ZMtc! zX-<5sHE&X0wB?&d>Q6ovGWoRWrcwHfk5&5RMO(gUwEpJPMHAJYpKi6-{LQBeDK6UE z{fJ|l)if*jBT;Czeeq7b(=@YbX4A~(hpiT|u0||#TjsXx)-tzcZtG?v1|Jh^EOXHr+H<+AluVO8dp9E#EX!fAX=A$)`;>jnZFytkN$p+VV}K^*5g` znyB{tbgRYYZ$4c}anauH$2jt89_~h>&_~|PlNu6*h_X**PGwGIpX$2QTD%d1kBK$P zocQ9#7RTgcVog3u+}Pq+WuM%SwaPw~Ih8r_5vd;&EA^wqjV+GSkBL?KQKg@5MDx4s zlYS&ht<^SSyMOcPLW+wvHpam_+>Jz`56^Q_L!uDT*CX2R^fsrqPkmKrY{ck~#%TN0 z_NlLO^i9#Gd-TUK+dlEJCSP8(=~j#7{^fqU79WMiMx_4KkCl9R(WYB1N`L96tN181 zHlp=+UroA@sBUx8kFnj2g+!sZ`wlfE>Jp#Ch}iaKU(MM5#%+7EZ%W*BBL;u$n>qMM zaiPT^v@n-^$=Au=$@AnH-Ddn-@SMD{PI^{Jb&qnUpPPb+U=*F=fR!V&X0fo==|+J{=whcc;dhN z-uKSmfBe&@&VHJA`O!~)_&>ex(>%*3?Y(vD*8lCZf6{mTtj@=uesGTW-ukcSeE#L% z&;R(#KmTL@OYgpPzWv?X=NI05;r#5KXP-Lv%A;4#4Y_ra6;%P)TAeCNS8p2WZZ>#r|AOYtx4FS?8X literal 0 HcmV?d00001 diff --git a/assets/voxygen/voxel/npc/hirdrassil/male/torso_front.vox b/assets/voxygen/voxel/npc/hirdrasil/torso_front.vox similarity index 100% rename from assets/voxygen/voxel/npc/hirdrassil/male/torso_front.vox rename to assets/voxygen/voxel/npc/hirdrasil/torso_front.vox diff --git a/assets/voxygen/voxel/npc/hirdrassil/male/neck.vox b/assets/voxygen/voxel/npc/hirdrassil/male/neck.vox deleted file mode 100644 index ae433a7851439fd6fd4819789c2ccbf0a927de02..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 2784 zcmdUwy^CB`6u|HKyl-Y~#Lmho9)y`H5-hTWn2;qb>#o7b60@+Cl}!-A?X1eyN&yH6WgEMkPjm!=RNo1-8p*o-V2|UQVwqH9U{sP z^HT2a-QRttEBuDP==!}k?(cn?-CD{+DMch!38J}5(9~^!gpUg8z6$rzN~|2LBr->p zSQ>c_A%UJNlN?=g8H`0^sbCtTgO)m~D!Q&5LKPczG_jF~4CW7FQ+q$YQZRLVJ_aOu z^g80q?Zg-{MvPI@$hT#x(F5`LgZfVYYGrHS5Pgg-4Zl$vX`tpy0W*392Qg`Cf?v>u zcv&X4F!s!Xc-H9Tbu5Y3rJ542#OoN06V%un%cVmwPGZxHdWMbukqTn;9!|~PBmF{v zCOsy5mDU0*wK)XmV?i7wV{!U*`gI{!$fe(I3)vbt1Sqv6qlxQUoqnBuAs8n%NpBKL zo~{iX0uoyWz4u(CxRGy519#SgOl(Ph^f|()Vbm~c7&Y)=b9|QAz>>adf^BUg&pl<6 zp7g_AbM6NyW5H&9ep=a1`UCZ`b$p;cu{oS8`xe#CEeF2cf%*gYha89?7A(+_LXX0{5|wjK zVrSeZh#5VBfzDVrpgX#wCu0ZNX6L-hQZGsnC+1mlbu`!VCYSm0kUFW7?q z0O?>|q8m6d)?=}0w+lK1K80Yc-Nw7;U}ZpZ7YgSBIqfU^KCPSe*UcKhay;(z{6?eFimr^(Un zTkUv%uU&iTN_+mfXWQY+I~V#n+`ZY(K0a-)fA?*p>&buo;H~!d*@qWmpJXlXeemvo zTJK4EdEDH^V)4K2{c+d&wBpP6@3ivZ=wI)1`|Q{D+fTp$WB%3St8M4aop$-|<#uWJ z(uKI|r`Oxb*-5+e{+)JkdT_!2WBcWAwvWF0yq!GyvYmYWXtH0s@?zUPd}SJc^Ya(| HTPlA5>obH# diff --git a/assets/voxygen/voxel/npc/lion/male/foot_bl.vox b/assets/voxygen/voxel/npc/lion/male/foot_bl.vox index 111c15fea52a2b1f51de6b36c1d76e46369a2fb9..816e22ba2eb5c29b814fc75e7230665f4522649f 100644 GIT binary patch delta 434 zcmWlUy-fr$6olW*JbTSgav~t52pS-?cMTajNJ!}8Xn_RjxI7!|mz9=J@j3Kd`qV-V7Kk8C}*;bjY=lVoMY0UdB7EvS!AN z5@(d?G%DWP>l$Yn0v*I8;Y_R$24ydt9OOY_$S}A8+z3vAKC&l$#0lBUe%H_dv=Z{3 zyk}2s+BLER>5TNup4rLtEGMJ*t_-5AGT_Mt%Mgph_d)eh9bk1}^@popTPJ0&x-ktF zA1@AGyt7QvUiMlxY4OjvXMom;=Dg;-=H2E;w2}6ZXGS+_YpPA88%EjY&pod5AL+a* A^#A|> delta 301 zcmWlUyG?{K5QOKkCIEzV5h(>w0}`SA+mNAym_Dus5~Qnxgph!;2$-q=qvLBWJ diff --git a/assets/voxygen/voxel/npc/lion/male/foot_br.vox b/assets/voxygen/voxel/npc/lion/male/foot_br.vox index d0c02b7eb1182a3d791fc623fbfa52dbffcc3794..9bf9d7d207dcd44e7d0698458864400d1f91aabc 100644 GIT binary patch delta 433 zcmWkqyG;c_5F6XGcMFK%k&w~@6%g+3EoA6HLP8%$3nWOd3nUsKpfLOb%b%I`>E`$H z@9OaUbiDhDi22YSP4WGCxZN)-jxVq61Lr8>%>bj5(Zrac*q|6ROVQIhG8!`8nbBoV zbCfutL}PJg&a+?QB!fT)F-f=+6GEdQVc(D#G?eHJPJokO6F5K)(%K9;m$jUQHb8?= zmjSAg+GH@Y0oiE?*0g4NW{xs|;{M|P;@Ms{vP{ve;?l*XiwhSQF8=V+prupR2GcXF zE?@n4_0HPG)fcjswSinG(;2Gw>X12D{WI13)t&aTm;H^Z&uWv^SFq0dbC2u%2d-c$ AegFUf delta 300 zcmWkpIZgyI5Uit30NP+9QXaq?kO+Hb3>jL8`NzJ21Zm$vKuW-~2&l1Cs>^M)e{X)S zk1x-syH5b~v7bV?|2W>BuOd#bZ~eC?IS+wUn}o)|r2=2!!a#CzwZxXyF1*WZ?uaJG z6virzNsUb$?XZo-=4N49oTMg=RmOQ!VNr3_$fbd<_)5uW7#j+CoGXQe`>-=C#k;9m pLL1ePA4dQH diff --git a/assets/voxygen/voxel/npc/lion/male/foot_fl.vox b/assets/voxygen/voxel/npc/lion/male/foot_fl.vox index bbb281ac9449df61f35666f0f558292b88c1a6f9..4dec3fe598c19ae16cae74bb9e58891b56431568 100644 GIT binary patch delta 385 zcmWlUOG*Sm5JV#)v%1^Q!dbcXDlY4%f*_+y@gCz91Q7n>5#-Cth$QRx^84!W z@_4-a0Wk0Dg9|>t4!5TZ!}0a4K5>5no-GPPLJgrK&>3iQjX+H^5{-!uC1$v$dlZ~m z>?;^iFmvx0oWl}1DK?4TN$)d3O!GS?N!t=dNL)cwRg&&X-0N=ilAzfW^b5i;KgHk65Ox*eljft`4pvxO%Z! cs}Ecou{pc7z&1%U&D`uUYqMwTe>c3&eGJ8vBfedxIjvf%pkOW9lbN&l($ws_vTZ znz!?hv(3ZZ?(#h%`nKMh;`C*6u`d?8$EW%|Cax(?iK^#{W+BZmM0 diff --git a/assets/voxygen/voxel/npc/lion/male/foot_fr.vox b/assets/voxygen/voxel/npc/lion/male/foot_fr.vox index 312dde3f5bb83a09e0d438099481319fcec973ae..fee64f149164b60492a4eb496995ab3799cf3d57 100644 GIT binary patch delta 384 zcmWlTK}rQN5JbDGIx|rb`75_x#bqXm3W9vy3Ety-1wn)l-ogu7vv^c>s?y2t<@eR$ zu`IzusOcIwI}RH5zhvUNk$W+hhl@FJS%2eBV!=rgBhEwneLT1 zqr_lwuSCy%Ug9i6pn=#(cqaygMkC?Wkq**>A=p8>NEhjc>7u&SFuf<8XQ%9=Y(SYrabBF4PQI5-EMC6&^5SsWWI%f^{>0*JZNTbmox(am cd#=9c^Qg}2lmTj|5vrG0cd8$+e>b?!f9tFzZ~y=R delta 286 zcmW-bK}tk15JbDGIwHE7m0K?%{O!1ru5eCFdcp0}|!tGe!hL`S6 zcUAIs{&BW>xZ7R6N5t6HTc{a$YzSL;#YkVYqQfFadMRuYwBRmL-g zij}oyc$QsaSE7nJiy9)E6hnghFzA#96pgYbW8Y{2OH`GZGmQr*(ZfrT(UE9i4A9w+ w!=|t~n2oR&oC!JSOl1=^!#$8yhT+dgj{BSIt^NLEnx^BjEXSYMuTT8y55eCfaR2}S diff --git a/assets/voxygen/voxel/npc/lion/male/leg_bl.vox b/assets/voxygen/voxel/npc/lion/male/leg_bl.vox index 1f02772c67ee9ec9fa2edb56082769cf5145a955..0a9b2482998dcdf87d80b6890d3030fc0611a1f5 100644 GIT binary patch delta 521 zcmWlVv5^%)3`Eu4(&GFeFi8UgV|I4Ipo%&!3NrXE5s(OkKu8w=kEwbkX{OaH?Vrcb z$Mf5lm-oM_>i)Ps6Y6cMzOL6#kN*Xy;edDW^8I!F6$$4DNOc+H+BPw@oZ4#cyOv5P zq9y6J$gM5wvUP^Mq9;wFNjuS9jkpnm2FlB2OuQwZmRE>n^HJXH9aG1r!10wBAL=$k z_)OC~-X1ehwks=83ZBnk%7t>5gDC=t5ri5X-ig)J;HGYxC(DDDsOrym-dK>bjsHOo7>1K0s$Y4@)rv}4e(Am-4@-XCF0cH4mXo9BE^f27q X9wJ!B6|jju&=SFYpgXSLAN=TlwW}}B delta 566 zcmW-ev2h(S3`DUDkmukRp#t250|z9JQlJ@)tX3TS)D^f9t1uOy!0&W37?8kncY*tJ zd%xXZo?ajRM#TOx9!c@gBc8|G&)aq3D}qvdBVK>KjSq3)`%T!#={!z_r=pf3N2twE ztxzthPwO}{YPgOOZYx}8`hXaK0Jw(aZPmyIuyu?g=!7&! zW`el{F>>`!WnHE%W64qjh|I=zlCo4AZ-o-VlZ`W@)-?z@XAA&QKxiqi@j RWCzBA$An@B_kW+d)qme5GyVVo diff --git a/assets/voxygen/voxel/npc/lion/male/leg_br.vox b/assets/voxygen/voxel/npc/lion/male/leg_br.vox index 791de7c1e33ed650db4461e50450dc473731c4be..f1d6bc499a3eb64771209f42501714475c6622c5 100644 GIT binary patch delta 521 zcmWlV!I2d)3`Eu4(s21fa3l>596U3I169GzZ8T_gXpnek2WoO_h)*u&MB%1zUnTZni25$$ z!R|Y5>NbzYqj~bF?yYV{#t)4j{4^c+u9{O&LN(iHc^LW7=-Psg`X8TjFP#7Y delta 565 zcmWkrIZ^~M5Nk=@9)jf$oAU|+0((3VP(>~K6@pE90Uv>fk&_@#m8#uxAF}52^mDqs zys_% zcuEIi7i)+)pctTg6}QfHK=@)sbWsKeQO-RS8i8$E#)zmc(77fYVGdC{A`KnNG-{X3 zp&jsy$lOEeSVx$TY|h&e^c`<)Mp~h~fLo8%VAWxj1U_S~Rn{u1(TTETOXaT=u8)vWV&rNDo~9#CE{8fVMQ770WiR O!p;05`!Sfkd!c5Jy4U3v5C{%pJHK5<*Zz@W#)cw%apb zyN})e_;9*;kBE7w_YQG++h3orET^aE`hu+#aWvNHM+c%2cG_uYR46LtJm52E04jkI z!~`)&R1qCQqcA1c5(B|O6QFzOx$FYZE$D(FT`-VctlDBa4^GyQ? z`0#Y|5fSsY-P^^_+tu~?!okz?OZ&!=ig-O9VFu9wG!Q%dCoyOblm;z3Xv1OYo*ZO0 zIWI1qY17iEoQkz6YGalum8M*~vUX`};&$%B=EAy5)x$2rG3yj;EW1z!J-}Q|s?I=d zfwG5}GuFYV_QlIKlh_)ujqqHUAdN+1lZSVo2@nTa6EY5YE^c!2V2!0itFN(PoiH#A zj93ODCsYSmtxB~5#c`PwO++1}m(o2n7Cp}%q7Ta8X$(0#a3(oKt`4AZ zg^Ri4fVt4@G6##DP#3gMnB=ipK+0(fO0cz}+ny8@?&!sVEH zbpYqq+1m>$eYpcQ6E%eDV8y&*UNNuePt~dFQYCdIbq<_^0F_;(q79-Yd5gG3+y>MV ux<%I#ID2Ovpfax(qbWZ)b!b|sDes1RS|0Ci_o)Am#%{O!ef|95xBmcnMkBB5~hewz?@NNAQprb z+GcQ@NDgfcNO_=<$R2nY;91s5aqX?T|H;JCGKv59@&E><=zpnzu$blXVbvF-m7- z<2D(|TrpS7l}Y764}oYy@+FL<>$DaZ!6vbVl9xy}zh7eC-f=O$*?=Y=LUtyLq)BRs h@*qt(r-fyXN*3Q;Cl5-lyB9Xa&F43If$tAor+;AiOw#^BEBj_xndv{C-?rA9ogqm)HFl&aH@d1B``?RYoXQ$h9FO6*DpxWV|uG zW6pH1#0e!Pi}%cVu4|lR5LiL1Bo+}JvNj|fI}!^MQ|V@K0k{&J0xL*gguV!U$bGpl zc7`UPNoW<+LD^h3S7oGUX^&il^ei_TI&+i_C>v4iZ_Q(wWbwgLsj?8&gX-YwU~5{d zPW$@xwK1*H9NN6oe71R~HK=VgbmlbBHyL1ec=wLAx_zwGE7P34;ts>1!=a;r!-m!z YHR)QzFCPA;(NnI|b$XuT=N6aw50qpn{r~^~ delta 286 zcmW-by-fo_6olvJ?b$MsBN77YAS1b52Y^I?3^5&C0j_}ri7t@nhnRpOJm-}@y-zc{ zPy2WEz1zP$9dADYJlr21GjQ{87Bc}tjySj zj*6v<->%pRS5a&6tQOmiIk>LA$8!QpOV+SOrnXYkiB4Sz(sE%++u@VsVRv!K^2#+>GFdWN0DIDd&e@%4pqj%qm%i%YwZ|zz_?QCr Y!9fRKe+(r)@p&+G5Kb?6`J#{Y4vy(6RsaA1 delta 286 zcmW-by-fo_6olvJ?b$MsBN77YAS1b52Y^I?3^5&C0j_}ri7t@nhnRpOJm-}@y-zc{ zPy2WEz1zP$9dADYJlr21GjQ{MZ6g>28~Q81{9NuC6m^XF_H1kwC9@X zbH!e9&d54Ttf+BDwP#eFz4R^4G6V*Q%@<*cs1SUKwa}1QObjKw)PBK|A?Oe%jYwy> zC=Q90X+N|8`J9%Z23k}85LHTpk)G#?$SI`fn;WJNxXMI10mTc77g*Dp#q-h_bpX|~ tI)vK6>c?BNRz~xzd2w^DIcIHT5Z!zGk}J?BVU6y5_n)B~_MZc8^B>hcC#L`a delta 328 zcmWlTyHNu{5JdYkdq+WG$O2O?VaVWiWdI%}u*u*8Pz*R!5d$WUf*~0CjIP(yyYso+ z{9W%}Urzfk08fYGbAa)=yE{)Yr?>axJ+}yWjB3I+3m*s_atO<0($8ai5hYDbd0q$qzJIz7TU4>ia(go+&Rp{-WSpw`9YOfwa-Tj(zKDlFyr zZILlh7>w7Z;!uUj?JT!5i-XERS=UItdLT=zOH_{7QWuk0A*@)r`#RbK~iXT`eqfVf@ybhuI t%%0WR>f$zl=3MjO=3;x}_ic#o-acgodLz2?-M{bE&+jhi^XCcI`48xOC$sAp|#hfox4P zw^iA2L9h})XJu#zG0Sixg~a#)mxU}#mSw@kn3!c*jQY)JOpMu=%ijxrBb&bD>UHiv z=bZb#p7WfC9b4|}JZX&Cw03ASWS;qqG24cQ2cYY}Dg3Sd7x&#iJaliq;h$lRamGY% zOb#F#lM-wTlU-qwhXWkp1Ttf1P4?EL03zdL4OC=jia`$oh#-M%idYl{>k%&s)+=IQ zj58+e3`)k<5(5E5kZci|l&oVO@QxUWj(ISPMdyo#_eG4Je8w&mjRXo~Daj5x;6VTp zB#=RAEah2Buxw>n&Nh5u>C;k|rBB<)_)Fq7xUe=`OCIoy15Cm6Z8L#fg2LH`bv8Oj z4jka<$YGorm(94h4d-q4Ab<#1Fd}Bd2G$SM8|;<%oe zNcdm`i#}s#Y}l8KK?FQu9-AAqzyS{eh#-LsN>C%u6b@Zn!va^h>_Na6;e?My(Zw}t zu(1wpSl2pQBo{k?XdNZFl<}3;)oZYEu2DEwS>T*QBi41S3ld`#5a~ z$2fopn3OmOv24Zz^#ytft_s1`5xmX;saUjuI&~L`fdJTKkcUyvuuIgLn3LQ=Hm)aZ z{-K@wcF6c(4p;Ui`Y_aLuv559mjpC(j4;BM(m48I;XZrIXI9qX|#IBKNT;yy;?ytzZNv@*?n2QH($i*&+*T}OzKEn~K zJP4i~kUV=g{UILkfw=)cNKHGE2O{u^aUuru8L9Yu&~u{aM9+zy6Fnz-PV}5A!*$Q+ zfqqlPl|R8X&%2c9mptqYm&9rXpDdf`mt0G(P4t`Smt1@aUuImwHJc7_b@3jN=h)kk z2Xmp)D|-W8`O5mlUClZ^(I;`ni7}T4&z>71B#r}fK?Dgqzf6Cb z{xbb#`pXrcK+bp`tOLQ#J zvE{T|rE34qh0jX(w=6G`8uhze^*6^Q+=C7}>Potxw`e@v!nz*X@GykoR|M?ev z{Exq>`FnNfk~VL=OAkM^TBCe7)RT^fH_mrgyQm6smZwEkAj+107erx&T`%qp3I zAhWk7bM~_`S6el0lhLewMstrFef~A0yw~WKF{2sSt*;m@-!w%V_D$39vorMl%eQI$ zsL|FFMvq)Ddg?vqZf#S?o-QpI?bV9OezotPsjj1K>OD74OWwLevmP{B@GNVeG+J}T z$b60cN3zU`sWKO5>c}0_b^fjvz5k_lX~XAq!Wdl!zXyK?C!RFA@FSx)&Kte`I(EO& zv7y^^dPA#T-ZEXsc1_Xq!$!xy*`mXb+^XllF)M+W z8vj<8MjvR`+?J`DJ!85Sw@=fOo-VDp^LBl4X^)P7cdjnH+@(Lf-K!7YU8J9~=j1t~ zcYb5^r{5Wk?CI9&v1PjY>N@@XkK45W#c4YF%b9xpy*c_o^E8YePtxb{M~%)NGFsPT zuJ?avy}7CXefQjcQ~w>aZ&hzsi+blx)#{$9+TM4IwlDer`(L(fnSQwPj216BtJO!I z)10w6dh6##?>}JlN_V$*gM@NUgv+#uOUOlcy zUp%bYJ7?+LUoF(-;W--b?7T_;W?plx`?tNL{kx^7PMz1-FDCVai*M@3zrCg}JaI&K zKX*nOe|AONUc09L{(gOAB$I*uC3nr}!(ZR1??cYl|BCYpUVqO%iJQSsiZ%V87Q4Ri Ir_VS40Xl)Y;s5{u literal 3220 zcma)-eazNX8ON`4&UIdXH;EAN@G8&)D9=L^d5M=GgMj<~Js=swbbio*D+`yDQ zGnLZF5kw3~BBaJxbCNP(YyCmaG3Vx-BiGuRbFNkYwOU(i{&V&DLH{wWXIz}~JLg<) z-|Kr__vZEYO+6+eYnKnKW07Y*BeHQ|a23n-zhV5}`mfw~|KPyA<;M9aFOpMihZO5d zV>e3G&QjHhRgu6xWUXV49nFa~b+l+(b8Ksgbt>W8Df^dFg%tmi=1`|f_h{BmEV1o< zu6;-d`;hCTRX1qt_@M2iv5ql!qKlo9v>QX}B$wMUhK^666E(I|jGf>)_qknS=&H{h z)m(>W4Y^Y^cauwXilv(rn^D`*Yn>WjA=W`tt*W&q?4lDLxoBfgJH@9{>b0Gt>xS5z z7h>X$c#CK|@Fu&^Ely7s7f-57`14&&*d%5pRv#Pe0)pR|Ix&%3RANhQjj5eoKBb%m z-ep%#Wsf*)khf~-6yaPQHqi&8NUqU?EB2#na^y^_P8Cu&;y(uR2-@*r)AEU&Gk3n* z3ZdKb+O3GSMIIUhHCA#ZUe!(l=h)z)xgEe>@vYRQ<@0VOhol8e zz=awVP0!?*b_Ykiq3R}2{aw|K%{$gW9D&#p`Y|c_`nFQv_I#HTHa<2IMWd?Z7+;ST$UrPC-&THs9!Z z{Ceu4@Hq)}LPAjZ2A4ts-vZxD$DJ|D<)#%!-_}T{utlU}BbKIGgCPl(a6`%FKf7=x2H$!|69%OLF5cdSbvX`4sxE zVqd|B%43`SvhWrhGT0U7O(wQXeKU0~)Vrd-6+S9zR>6ykJ}K0yBJK*DD{L0ed+Jbu zYhhLuNB`6CSzHR@vLYE{oNJ~;~Nh~cZ8G=T>m3@Hh zIK-AqB#}v?B&5(7nZXh{Q@&da`BtF2`EG?&TG%C^(!xi@TG31`r@7@KlJJXNnip_@ z9~(&391DwRzV}qDm_^gPDWVj-yW=28SK%D}0(yGC!DP?3;##BJn6NU#? zuqQ5I*a?F{@gI@I4`TvPa|Uwajb|t*KRk&an+O(x?}Tk-4?z6fHSwTF zO#{9nq71*(%vk&ZoQx0GcNJa|c z;YmOgiHL_+4n2pSi+%i$zghG5 z>cAyix8^Q;_@N~>w0DhNIxt|Djy!Cajz3`wFFkG}mi5^9ty694)3dDa^kS1$(PT%< zYXEO@YzxJgUh$s$|120 zN5vjFFZR@X=x&%`lehQU^r3!RaB-PU+%?*I4^FWDvr}x&TX)#l2gRm8i|u1#ORtE@ z*YLlum>eB$a$&R`xMQT9yK9WS|D}m$t3PK)MeH*2d*si^(I>^u|5)seb7F75&i690 zLj$+jiPb&!^7@f>XzMV0VNmSwH^`%WF+qZqDo!CFmuD-g${{F{}w(G?acJP;@?e+J@+Xptq2EpS= z@;v;g*qOazEBfSm{(D!-P5JM<=k}ZOpFHkX>+c<7{Zoe9lD^@#Y0)jVY0m$j|Gatg z>_-bv+w3`KY{`M=Z2bQ5_SVnE-hV*sm6jrcx%a+2<)WfBDCRtig{G>Ty1^zY$~E!*SkxQ_Gvao5zShmk>Fnl7!N uq$z0`L6ghOU^7G0SF{8p=sP#LwbR@W@t+-B-jcTw`L$&Na@Tx+&;A2%MF*Dv delta 154 zcmWlQ!4bkh3=vh!iKX<-#$b|NrKhtUHA`$A)Rn%bM_kF34f!R%f0vdB3f416EhiA8&-c+k^~?zJ diff --git a/assets/voxygen/voxel/npc/tiger/male/leg_bl.vox b/assets/voxygen/voxel/npc/tiger/male/leg_bl.vox index 3519108d8688f8093ed64b0f8992c25213279d03..70283ab4bc108b668f6784e687c35c728b537a9b 100644 GIT binary patch delta 489 zcmXYt!AS){5JbDGdcF((AWX%ByZaC7K@b(etM>`uXJG_pU@8V-7(T&;+Nsyw6g~5E z{JA_o-alP^RMqYE>5ikmN7cjW<>vSYe2otOdU}32ed@1T^^UL`zg4Q;s*7^%LUtWu zIJF5mwIp!EO}}euFk3pWF6|}lk~VWjB1lsfLE2(16*yXr5*@1HX1WY_PxkGZR*AcAAIo5Oyj#3k0zj5Vyw~NrN#_$ NIFXw=`g--Te*vv`EUy3n delta 618 zcmWlW%aIf@5JW4pN}qu>f&-51f$p9IaDX6|J>i24m@5|G2<~9On!%GIGE_>{H|y>F z+tcI6*Ow1}BI5J&{R>xo?-Aebub-awgHr%1-hr2&ulJ9};QR*8nkp}49?pI!<8<{S za&ul`9|Cp^2|J3vDYB+hr8>^D&`ec>~GKvJ2sM$EL@k6QYa@k_RgA$8((Ezk-IQHmFM4odaD1a$v0F0 diff --git a/assets/voxygen/voxel/npc/tiger/male/leg_br.vox b/assets/voxygen/voxel/npc/tiger/male/leg_br.vox index 5ce0a2aedc3fd1f0fa14589511502c64ca37da61..88c6f0dffc3a10206b11903f17e9811860f064bd 100644 GIT binary patch delta 488 zcmXYt!A%1}5Cpq>W_?IN4y3|^WBmXgNC=F?oBsviEQo*%NQEFA24x9LrJb6YTebIe zb-FyhJiXq0NqV^5KXT}INYDGj-PKw6HSGR*eLL*GeeO!15NWlw#99kzTo@9~0+kjQ zUU;$F+S2So1}-1h$gAuN+xM|&aVlOM&%|rRn~Hfchbp|ib2D$|?ahPPps!3T_fa-E zJDVEHc(OToLO8teI%ZALK-4rEZ$1DG95OPc+6++ylZje zP+glwt%eNh4>ixwQ*P2Wmp1>NI=v=M%H|21%cz@vQ#U)Kr$HXm9)uW#80>R`dhp!i I=RMc`2T0B=Hvj+t delta 617 zcmWlW&5;!`420D!`RBos0|ye}z|6b@aDbwgy%2;0cvm7I5yByX4TI0F>ayIH#m&ODU;aK@?X zN9N|d(mo927#499cgfyYsxL=-9BB@2D`G$n3T0R2h-y96PHUdpcQsa2Uy*%DwX|Wlwl_ z=Y-?4HV`mRH|~{SoKXnc@9A2IFnqKD$472p=e0BUzPa3S9Pyx9WSer$(CnGITp)GY zK%zs@#q5CvL7p8~BkKqIJM5;^=JdAb$$4{Ct|?!@E}tF=>f@k{tCd}l<5 yP^`K!!>xKUig{%f^Bag^#>O&=rRy?Q8t3fB+!<4`lk2Q2bAL=u<==mLSN{QI?l$}Y diff --git a/assets/voxygen/voxel/npc/tiger/male/leg_fl.vox b/assets/voxygen/voxel/npc/tiger/male/leg_fl.vox index 692358cb4cba29cea3d115ddbee37a702faeb6e9..8d9a9399bba077fab351464ee73f775069b614d6 100644 GIT binary patch delta 542 zcmWlVF?JR)5Q9h3*tbTtv>#||8UzOFW+Au|LOgx>IZ->mL=6?_Hvyv+_hKgP~fRe zU6)E%NvEX4(q4uGTQkyeFP& zW8fnVubi%20i_T)_+&;Q2-?914X>bsP6z^Tc;A9imPbxiFIQvMm^EgNSre)W)r4xg zYRsBYO;?Q>8mPGg>E1l3t%28A0i|(CgXxSt8ncWB_SkY`sSM0G$iQsuYKnVY=`lSh ztVyWJh$ki!lX=KpF delta 594 zcmW-dy_Hol41_f^vh2rMf{h5-9;krC_6Gb!oP{=Azzc~p;)Af zQV(g9?1TmtBg93n2r2V==hF zyEmhq5Dv2;T1i==Bg>mN_pdrf&?0Gk*{3iZHo}`}-L?t4UnX(owgPEGCKPh7nbJi; pCZGxV46e!f0e}zSVHyiPz!ka>$s2?TgnMD^;ft|@`um=5^FIN_F}wf( diff --git a/assets/voxygen/voxel/npc/tiger/male/leg_fr.vox b/assets/voxygen/voxel/npc/tiger/male/leg_fr.vox index 8dd4f55da642e9fc4f7a3eaf8ddeb7dde11d462a..31acc72faae43e4420db0a7be7fee8dc9f88a772 100644 GIT binary patch delta 542 zcmWkqJyKpV5Yx}vegzE`DY*(1wkbkpQZOWwTfB{2q=i}3}Q~Y|ry}Nv~c>VMCbkDOC@z){cX68mIli8fBzqO^ZAy!Zo zQj@emHb5PUE^&gJ0TBYCY)8 z)&i{(9v~ZHSwtB`E;1*gtcW^Ao8z$&Z41RwcQ}wa$U5!W_xv!Mbz8yO7?+&94rrUO zQ}!7i6xU7r@Ujy)hLP-`Jj@|~r_aEI1V2PSdK!S2fK51}FP+*w27RUtpqpAVsak>T zp!LO@!A<}NONUv9vW9s@R&QQhKXrD|L(=%NjX-zU2oKXbR$S}VB+h=BLfViCgS{QryVk}Yre(-yK0pDFQqW}N^ diff --git a/assets/voxygen/voxel/npc/tiger/male/neck.vox b/assets/voxygen/voxel/npc/tiger/male/neck.vox index cf3f3839f71b80f881f67271c05b0399141020fb..65f16c39328c127bfe8b18dd5efcbdd1884ccee2 100644 GIT binary patch literal 2424 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 TGo7E*HxvJ~zK;@r`t|NVeB^wK literal 4660 zcma)3|86ld=Hi-T(5fMQ|mP8OD64ifU1QGso^*N7!iq)pTa%$;ND*p4l{PKlmHaPM}rV^*78+f7pKT_g!yH9)@uq z`f(Yiu?+Lr(^6|Sj_pv!*-GcE^llhNahSWpTq$lGhoy5v-<3h?+#qyukb4>AksstP z(dD@rO+|~!4v8NB5O`J`Arln-ZZjhLdeE?4$xV}ml zhhZ7l2$XqNMq`%*Py+c;{yq~3AP#V~S0-{R_H?}&$i2Pb({vG4HT z1vr4~2u~4zV@`eac@(`LMG1WbQxxAti{7FiWzT+aC$MDZDzS+UoF$E8i$y^8)hWCe|CC+#AL@Mfgvgv-Hhwv(apWm2-u@a4x}TV4M=UmU8Fk#&C^} z3RpaQ6PQcFmxR9CZ;y?+xiof>{LJJWzkMob4!_|cG0yBuoUv%nf-8BCT^c&fj<^Qq z@T)YPg0-g9d+a3c%B{g)c5YmWkH?l_J%iIRm#~?!ZCFdhp>U^3-4Yx22W$s^r|i%(`9GHzWmGut@ZE9Vw>-oz+j?xexmZWyQOHqvqou~1xIUq? zg!U5J@sYa58P7ew`aV?ONkzLg^sc7P*GQ95sM6QT+1ujEc8XKUt6Xlt>r z=)MNuSMCt+`dF}E$?Gh=$sS()$gsz-$7J%Hd^WAVpvd%rO zQuCOTn!!V!GaqZBkvEmRbFNE;dRWNSDqSeKizVSJdkT5Txe}>oV9Al%8^}+ApBVZ= zEiBZPfIY!h0Z-t*LQN||jgGMw?#cL7Xqg<2@RG&%g&L3}J$YWq%St^F)(SNvQ=2os z7C6e(>x{-q+uM3^%;i24lN{YBH!Y*%91_^T4c{fUI)Ht+E6oZ<{>Vw?z40Lz)#@~pjmjbynzJ@H^?+?pY&{zBO-Hq`7o2F-axW3{1dbG$Cts4ZbA`AtkIoWYC3KylXUrb_ zPw=0ptBG%vz=vO?iRWv}@+CzROXfJ#9jWw?7jaPNgYXK_M0k-4uLF-)OnmKS=IDh! z(1*;J;(;*{NWdWLj5Fg*_OTXdZb1lz0N(Dn@oj$Xc3+p_l z0kQ%ZGQ?+W!~%BaeQB61pOKDdz$Jq?3?FxCV6q*ucW9*yv4ic%y=Bm_aBtTyg^{)WBuSnLKEB8a}b`ud=_5xyzB*6-dJyIkQv6qhS!V_RdN#h%5UWLl>*r6xHmgYMwb+&FhPF z{#8a#z1!$%`;316MWcC#(G&IpnK0bNe^GJP~ZL1GS$tW(*wrnG1?z#f2AF`&*%$3HTvpdqi?>%?~O(u zpFUlm+`LGizUCx-{MLa!GGlb#w-)Ndx1Xqwd~>nhvfk*fD~vw54XhU})$N-mboaHZ z^x&Nr>g;vv^x$2W>#INfhW`E8?RxGRi}aEUSLl{6uhKiWt8UgIrnTqk&MPj~ZBvVM`$fz2vF5|oY&FEsC`RZl5d6URd*0dl#S15O-}g_`7oMKb zKfO7n@4bDl{+v6HJZto=-x>YOAB^tazDl3mvqoQk{&M~B&s%lpqx1E#UoX&?-dUpW z=?a~JkNfa*-yKGu*=6+dN%N`x-+krTpYVVA;uCdhVxdm0n5P>i=jnCpPtfaD|Ns84 zS+hoevhI+czxo;7u=gQdvS*3D@k^uc-e~l>RjYJza#HU)W0zjpzpQ4@Ze6%@p&okz ztecEJuoUeqU#{Of>wsRmVZYw-=)=1BmQ(fZ-<+k#W|rvwl`B8Nf7{n=-LUm7-FcVl z{ZAa$J-<4lKYsZ&{n_u2>lg0btCv1>NVojr72W#caoxCaqkdpiO{VF;)gL$d{%=3V f_dfdiU+ZMyT%LVe-xfb@t<8Vd+MMCfK5zaD4;xBj diff --git a/assets/voxygen/voxel/npc/tiger/male/torso_front.vox b/assets/voxygen/voxel/npc/tiger/male/torso_front.vox index 9ed832769a4b4fe9443f5904eca42e2747742891..b4b74fd4475d0cb69fb88d3a9e97dfa10e76317c 100644 GIT binary patch literal 6196 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 literal 6196 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 LZ3+JA>%)Ho`I)5Z diff --git a/assets/voxygen/voxel/npc/tuskram/male/foot_bl.vox b/assets/voxygen/voxel/npc/tuskram/male/foot_bl.vox index a0675eabfcaef3145f653239700e2b15a1aeefe4..7db7b3b9df623cb7212e51b41422afa84440aa6f 100644 GIT binary patch delta 393 zcmWlU%T2^U5JanL?D6mkf>79%5b^<50tqb}!k#!-wr{?0AOaF0L7qo?uA1)Z*7)c4 z`)>O0CEdXJ^D;gf!#V9A>uLxnnjEb`8JY|Mbtn*? z0r-J-MD-Pp)5` zezCU7f=Z*(z`L$WrCIqCv{2VTW?Y|i?9MCF#s=Eda-l%IeAQ; z98c%&LvAr|M{*y6ma}?+sh!kEaBt9O2{ZJZ z2U{0Mu6BaBUu+`;xJFRB)Nr|4rHWc;!leJ4t|5%kC_|tJdf*Q?5?+>zeQi#85W3LC R<3bm+{JaMBZuP!-oPWRrA$b4* diff --git a/assets/voxygen/voxel/npc/tuskram/male/foot_br.vox b/assets/voxygen/voxel/npc/tuskram/male/foot_br.vox index 2988cb31b19c19fd5904f890e1473880f309c65d..48daa1c6e6f83b9759b55868912cfb37234d86ed 100644 GIT binary patch delta 393 zcmWlVO-{rx7(;ERO~cP2I0`coLS4W}AfaK7Fe?^S+g&#-H~|;og1kn0wPX29qW;`| z-)$eK^TV&Cm&5pq=&P6B$IH|GzF`$0(hZzHFXN*ztkeFnu7-f3$bk^rRqEnY9z|B_EDdx9Is*p|Tr$wX2Osi+FQ^)qv?XdhsBuxF+vwuc S_%q}MU&!I@`FPMDCwBkB*)X~Q delta 265 zcmW-byA1+C3`A#UcL@%PpafbVKg0`X}%kz7JR1vEknltclHvGmsV__Kb@ zpUreWbjufj-MZb|;hTX|+iw<;*pew`X1Yt?e(b|mMu`Jp!e?L@Ic6EbawEzp$Fe35>EDOZCsisaH&};tcpeN=MSKG9i#}xUkY`gB SbCq?uSFZW|>v8+Ov&lcm@*$4^ diff --git a/assets/voxygen/voxel/npc/tuskram/male/foot_fl.vox b/assets/voxygen/voxel/npc/tuskram/male/foot_fl.vox index 85dcd5043d882b2f7a7ac63b89f0cb59fb02cc3d..fb214e857234e77abb8bb7aaf5dc514e69cbf81d 100644 GIT binary patch delta 458 zcmWlTAyULZ6hwdbpGh(cW)&9C1+d5!fTI>XCVDFqmos1}?!grh9D>8}B3^aR^mHdb zhrg@i%k%m6Ga?=zPESbuejIPM1LpktcKXtO74Z&o%!Y)>xCorl6D<&hJ1`^^h{_!p z63Tua@F3}uAd6kGt63>FwXKPXLI{S0vY#s+B+rHf8E^MQmH70MsEX;DE*iN=xmdX- zDkmNMt_e}d3wa^mN|!l6?wSy_OO*$;Co1Dz8K~VcP#(G=HLUWm+5=rQMtUQ?k!&Oz syFJpw$3#B$L?t{V=*|=469dztXgq3spfS=IY5ZJc1n;(f-|M>k16Gwg`~Uy| delta 305 zcmW-ayHNu{5JdYkhXFXk!6gJTpfF_s9wi9j?5#a{ia`#EkOBb^0KupS<89BUr}yvX z=X&@4c6j&#@bbKWjo|UTyFV={4j-R;ut&gCKgCf23q~~+jDaYkjJh;zMlqC{-7g#r z%8jq$YZyD~7cFi}`M7r-JT07nHpCOY+YUCw}^xCd82a0m{=f5oqQb|>2} zKfAxH{mb+5_A??L9}Z7M{C@0jE<1+f>)YW=<0|4E$~YyAaGZs7bdv>9xI@Ayh{_!j zMj7Xc8IsP1QuK;mon+Ce3#FovB@#v%=gJHzPYFZGoVl5lnVrp~O7b>&ONKYeTf$J9 zH|C?H5rutesnYp=>B_QYmgbR0RDMt?sLfE;mRY+;#?+*V-9-7sTV{A<%iXFeCgQ?O<(!Cs{|ytE4G$m9@!?hj_KoTB({$hH8zVbLkjI iQmatY^mN{wH>cxdosQF0XL#p`eCCXGIOg{+Z|ee2`zK-m diff --git a/assets/voxygen/voxel/npc/tuskram/male/leg_bl.vox b/assets/voxygen/voxel/npc/tuskram/male/leg_bl.vox index 128e7bd0ebca8b873dacc2d1232ac557d5468143..a04cf113014e3af359e920fdc77df26c5f28f499 100644 GIT binary patch delta 418 zcmWlVtyu&?5Jao0dlzw-Q&>_#A^^vCKoY2#aTfyyO%4za0T2f7#QVCc|E72U4nK$E z^V8|}Q_{oT{UbqNAIF>X72@>rdjIZAN_qoZGuCi45-pcjN`uO@JVK;t+Fr4TVtPFT zDm0|1H#LQstbm+lh%?HWO3u>>kB|Tr&4mXyv1w8*LsYX=L#|{sY}QKEwb3 diff --git a/assets/voxygen/voxel/npc/tuskram/male/leg_br.vox b/assets/voxygen/voxel/npc/tuskram/male/leg_br.vox index de20ec4be45f4003033fa422639c7f55c4b4bc7e..a32879c7a1f46e4381aed02e970a92ad138323eb 100644 GIT binary patch delta 414 zcmWlVu~7s;5CbL6++n;yy@g9Em~Q|c^*|C>yX$=nIN0O>$&dkI&={(fG&4HY{T{v# z$EU~h?T4iMyVC=YKHrZwmn+Em`Q`NHe@l7=wnnV!XeL@NtrS{bk!Q)n_KZEsUJg87 z75su1K1efDxXCJI$XRyCMmtlANloAS=?PT`%soucTkA7A$$^5!>6 delta 467 zcmW-dv2h(S3`BPqxI51%&?s{1BGiDwAK1=3k}6OIB(q#AA2TV9I`8q28?Rn!W*bjuI-0gdqU(q?Bh9i_WHhT>G!y`ZIpJDW z)V)vl2`BQ#?7-|8u47a+J=-i`E6f9G03E^`IUsc|2T*8j!?`vI7pYMqOsxR25iDS7 zs%HQQrunP`d6)^y$Q|aqQpOy$0q{)F3XonEfXmB`pZOIvztJoAys&f{LMfvh0+9kB T8_j3~)Bv0VygqM#ecS&50=+&@ diff --git a/assets/voxygen/voxel/npc/tuskram/male/leg_fl.vox b/assets/voxygen/voxel/npc/tuskram/male/leg_fl.vox index 63d3fc488bfedfa668e633944e1538a584d277fe..3fa9788982a400edd2a1d22c18ba0fd9dbe38a65 100644 GIT binary patch delta 389 zcmWlVu~9@p3_~r+{}UX^MWnPscma^yFb4%t!v4)Jp#c(xK4^;q2zfuyNNZawkN*ze zhvUoh<^HRx9v@CmPueXw7K4N7JL< zm%o>X@852pe^u3&$Lm)@{rUOu>HdM__T%~buCrA20^}M_4W(wKx?NqWQPC`GNa{Lc z1gB~0(mIu8%0LVHM&97tD3gbnP|vW#J-wVeqRdibAY_p<%*u2vJz8ekI#cU#Ydt)c zG)$QY=Y{%$fu)-PsU7Xs-B$Rur*UuFOb&X1Kz6W=cpuT7!y5!5)4&#{!EML&hOw=e z)=?O7?ZX9EE5i;pJBD?jTiFByg3mt9!wx2bX`Mf?5rNM;_^;)MvJX8Wmi8%Ji!D_P gIKOKf!hmQLo5&c8F~rx|3^fm!VMgQe_NtHVA5P>!j{pDw diff --git a/assets/voxygen/voxel/npc/tuskram/male/leg_fr.vox b/assets/voxygen/voxel/npc/tuskram/male/leg_fr.vox index 07c851adef3045bef6184f5abe36b79d7ee781c0..13ef677f4a712901f88d88f268eae9d7dfdab7fa 100644 GIT binary patch delta 388 zcmWlVAyNcE5Cp5LdlzwmIECda$P<9MAPziVm|1s*4`2xX!L#@Pl3bBd)jeG^z593g zJ{(`3FZW-P9v@Cmh(11#ch?)t<@N1!_TG}t5NX<)v4(?!3oUJtH`^ojEKsN+Q1MWi zS?cm|;}tR)a>(JGQJ{pob0rvpG%5r$vTJ8bwHcx!jEA@g*QV5TsG-7n)o>LH)>L!W z^wi{gMoqql-Q;^Kyh07hd(TR5Du#;&s^+j!Eo{FKUI;JzjfJnpLqLUxfO^^7`|Qf> R$^$D4qP24G`t$4C{s$O_GjIR^ delta 485 zcmWlVyHNx&5JabYq}4807-!*<3Jz6g03LM^1GXgZ0>Hwd$OA$m2u$7@t)5TMNAq>~ zI~<>%&bOZt@o;x~gyQ$(cyqbJIKRA}ezb=o-hdrL8N(SfVL7@LJySicX=&K%#uqHu zTJS6JO1|P3>@o$?gJcQ9653yuI!3BL!c}pVwoys1kEDL$TVE> zYgeh%!bvVxv<>ajBSBfIZ`j)mZzHr}ub|<>y6_l*fElEH(B5EWyEc<}5=(xhSV0@w zm&uK*Y+W==FMzyO7C}Q}WdjQzDfrl;r>Wcfb0P6DqxC&vQ|M^j!3l%Y1*c;}yA4xl Y8hI~HvrG~pw#atI+1vtg53a&N2si-WjP$wQ zt3P*-{P*RrSGO;pp5FW%V|;k`_>nNYjPd#L+xv&R;fEbBV8YYaZ;yY3;P(%d7Jk(t`8WeGRcEodLyj2Fv;O>P2z%@LxmJSFPHf+ja%n0eGU{H57@)PcvM3Ca4%LYUn0r^TN*4#A+5y z{G2e=fLroVh?|L<>1h0fku*T2E&`{xp)O5s!Vq<7 zPf?dnOV@%XH>G1(dzg7sx40ntt+TCTl8>TRx?NNhiz4(r**ev{uvrK>SpbHDTy)jK z3yDR{mHNsKsJjkt4j&`U1fI If7gTm1F`Obxc~qF delta 884 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 Xv+*+dGykpZTgBcy=gt0GXw!cIhYdKc literal 5452 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 C1}EPD diff --git a/assets/voxygen/voxel/quadruped_medium_central_manifest.ron b/assets/voxygen/voxel/quadruped_medium_central_manifest.ron index 3c50063065..5fb291e362 100644 --- a/assets/voxygen/voxel/quadruped_medium_central_manifest.ron +++ b/assets/voxygen/voxel/quadruped_medium_central_manifest.ron @@ -125,7 +125,7 @@ central: ("npc.tuskram.male.head"), ), neck: ( - offset: (-4.0, -4.0, -3.5), + offset: (-4.0, -5.0, -3.5), central: ("npc.tuskram.male.neck"), ), jaw: ( @@ -155,7 +155,7 @@ central: ("npc.tuskram.male.head"), ), neck: ( - offset: (-4.0, -4.0, -3.5), + offset: (-4.0, -5.0, -3.5), central: ("npc.tuskram.male.neck"), ), jaw: ( @@ -301,7 +301,7 @@ ), (Tiger, Male): ( head: ( - offset: (-5.5, 0.0, -5.0), + offset: (-5.5, -1.0, -5.0), central: ("npc.tiger.male.head"), ), neck: ( @@ -331,7 +331,7 @@ ), (Tiger, Female): ( head: ( - offset: (-5.5, 0.0, -5.0), + offset: (-5.5, -1.0, -5.0), central: ("npc.tiger.male.head"), ), neck: ( @@ -719,26 +719,26 @@ central: ("npc.deer.male.tail"), ), ), - (Hirdrassil, Male): ( + (Hirdrasil, Male): ( head: ( offset: (-9.0, -12.0, 0.0), - central: ("npc.hirdrassil.male.head"), + central: ("npc.hirdrasil.male.head"), ), neck: ( offset: (-4.0, -4.0, -6.0), - central: ("npc.hirdrassil.male.neck"), + central: ("npc.hirdrasil.male.neck"), ), jaw: ( offset: (-1.0, 0.0, -7.0), - central: ("npc.hirdrassil.male.jaw"), + central: ("npc.hirdrasil.male.jaw"), ), torso_front: ( offset: (-4.0, -10.0, -5.5), - central: ("npc.hirdrassil.male.torso_front"), + central: ("npc.hirdrasil.male.torso_front"), ), torso_back: ( offset: (-4.0, -11.0, -4.0), - central: ("npc.hirdrassil.male.torso_back"), + central: ("npc.hirdrasil.male.torso_back"), ), ears: ( offset: (0.0, 0.0, 0.0), @@ -746,29 +746,29 @@ ), tail: ( offset: (-2.0, -2.0, 0.0), - central: ("npc.hirdrassil.male.tail"), + central: ("npc.hirdrasil.male.tail"), ), ), - (Hirdrassil, Female): ( + (Hirdrasil, Female): ( head: ( offset: (-9.0, -12.0, 0.0), - central: ("npc.hirdrassil.male.head"), + central: ("npc.hirdrasil.male.head"), ), neck: ( offset: (-4.0, -4.0, -6.0), - central: ("npc.hirdrassil.male.neck"), + central: ("npc.hirdrasil.male.neck"), ), jaw: ( offset: (-1.0, 0.0, -7.0), - central: ("npc.hirdrassil.male.jaw"), + central: ("npc.hirdrasil.male.jaw"), ), torso_front: ( offset: (-4.0, -10.0, -5.5), - central: ("npc.hirdrassil.male.torso_front"), + central: ("npc.hirdrasil.male.torso_front"), ), torso_back: ( offset: (-4.0, -11.0, -4.0), - central: ("npc.hirdrassil.male.torso_back"), + central: ("npc.hirdrasil.male.torso_back"), ), ears: ( offset: (0.0, 0.0, 0.0), @@ -776,7 +776,7 @@ ), tail: ( offset: (-2.0, -2.0, 0.0), - central: ("npc.hirdrassil.male.tail"), + central: ("npc.hirdrasil.male.tail"), ), ), }) diff --git a/assets/voxygen/voxel/quadruped_medium_lateral_manifest.ron b/assets/voxygen/voxel/quadruped_medium_lateral_manifest.ron index 3eefeef7c1..a00fa3b1b8 100644 --- a/assets/voxygen/voxel/quadruped_medium_lateral_manifest.ron +++ b/assets/voxygen/voxel/quadruped_medium_lateral_manifest.ron @@ -1,69 +1,69 @@ ({ (Grolgar, Male): ( leg_fl: ( - offset: (-2.5, -5.0, -10.0),//these are done very case by case + offset: (-2.5, -4.5, -4.0),//these are done very case by case lateral: ("npc.grolgar.male.leg_fl"), ), leg_fr: ( - offset: (-2.5, -5.0, -10.0), + offset: (-2.5, -4.5, -4.0), lateral: ("npc.grolgar.male.leg_fr"), ), leg_bl: ( - offset: (-2.0, -3.5, -5.0), + offset: (-2.5, -3.5, -3.5), lateral: ("npc.grolgar.male.leg_bl"), ), leg_br: ( - offset: (-2.0, -3.5, -5.0), + offset: (-2.0, -3.5, -3.5), lateral: ("npc.grolgar.male.leg_br"), ), foot_fl: ( - offset: (-2.5, -2.0, -6.0),//y pivot should be -1/4 of the y dimension of the model + offset: (-2.5, -4.5, -8.0),//y pivot should be -1/4 of the y dimension of the model lateral: ("npc.grolgar.male.foot_fl"), ), foot_fr: ( - offset: (-2.5, -2.0, -6.0),//y pivot should be -1/4 of the y dimension of the model + offset: (-2.5, -4.5, -8.0),//y pivot should be -1/4 of the y dimension of the model lateral: ("npc.grolgar.male.foot_fr"), ), foot_bl: ( - offset: (-2.5, -2.0, -4.0),//y pivot should be -1/4 of the y dimension of the model + offset: (-2.5, -2.0, -8.0),//y pivot should be -1/4 of the y dimension of the model lateral: ("npc.grolgar.male.foot_bl"), ), foot_br: ( - offset: (-2.5, -2.0, -4.0),//y pivot should be -1/4 of the y dimension of the model + offset: (-2.5, -2.0, -8.0),//y pivot should be -1/4 of the y dimension of the model lateral: ("npc.grolgar.male.foot_br"), ), ), (Grolgar, Female): ( leg_fl: ( - offset: (-2.5, -5.0, -10.0), + offset: (-2.5, -4.5, -4.0),//these are done very case by case lateral: ("npc.grolgar.male.leg_fl"), ), leg_fr: ( - offset: (-2.5, -5.0, -10.0), + offset: (-2.5, -4.5, -4.0), lateral: ("npc.grolgar.male.leg_fr"), ), leg_bl: ( - offset: (-2.0, -3.5, -5.0), + offset: (-2.5, -3.5, -3.5), lateral: ("npc.grolgar.male.leg_bl"), ), leg_br: ( - offset: (-2.0, -3.5, -5.0), + offset: (-2.0, -3.5, -3.5), lateral: ("npc.grolgar.male.leg_br"), ), foot_fl: ( - offset: (-2.5, -2.0, -6.0), + offset: (-2.5, -4.5, -8.0),//y pivot should be -1/4 of the y dimension of the model lateral: ("npc.grolgar.male.foot_fl"), ), foot_fr: ( - offset: (-2.5, -2.0, -6.0), + offset: (-2.5, -4.5, -8.0),//y pivot should be -1/4 of the y dimension of the model lateral: ("npc.grolgar.male.foot_fr"), ), foot_bl: ( - offset: (-2.5, -2.0, -4.0), + offset: (-2.5, -2.0, -8.0),//y pivot should be -1/4 of the y dimension of the model lateral: ("npc.grolgar.male.foot_bl"), ), foot_br: ( - offset: (-2.5, -2.0, -4.0), + offset: (-2.5, -2.0, -8.0),//y pivot should be -1/4 of the y dimension of the model lateral: ("npc.grolgar.male.foot_br"), ), ), @@ -137,137 +137,137 @@ ), (Tuskram, Male): ( leg_fl: ( - offset: (-2.0, -2.5, -10.0), + offset: (-2.0, -2.5, -3.0), lateral: ("npc.tuskram.male.leg_fl"), ), leg_fr: ( - offset: (-2.0, -2.5, -10.0), + offset: (-2.0, -2.5, -3.0), lateral: ("npc.tuskram.male.leg_fr"), ), leg_bl: ( - offset: (-2.0, -2.5, -4.0), + offset: (-2.0, -2.5, -3.0), lateral: ("npc.tuskram.male.leg_bl"), ), leg_br: ( - offset: (-2.0, -2.5, -4.0), + offset: (-2.0, -2.5, -3.0), lateral: ("npc.tuskram.male.leg_br"), ), foot_fl: ( - offset: (-2.5, -2.0, -5.0), + offset: (-2.5, -2.0, -8.0), lateral: ("npc.tuskram.male.foot_fl"), ), foot_fr: ( - offset: (-2.5, -2.0, -5.0), + offset: (-2.5, -2.0, -8.0), lateral: ("npc.tuskram.male.foot_fr"), ), foot_bl: ( - offset: (-1.5, -1.5, -6.0), + offset: (-1.5, -1.5, -8.0), lateral: ("npc.tuskram.male.foot_bl"), ), foot_br: ( - offset: (-1.5, -1.5, -6.0), + offset: (-1.5, -1.5, -8.0), lateral: ("npc.tuskram.male.foot_br"), ), ), (Tuskram, Female): ( leg_fl: ( - offset: (-2.0, -2.5, -10.0), + offset: (-2.0, -2.5, -3.0), lateral: ("npc.tuskram.male.leg_fl"), ), leg_fr: ( - offset: (-2.0, -2.5, -10.0), + offset: (-2.0, -2.5, -3.0), lateral: ("npc.tuskram.male.leg_fr"), ), leg_bl: ( - offset: (-2.0, -2.5, -4.0), + offset: (-2.0, -2.5, -3.0), lateral: ("npc.tuskram.male.leg_bl"), ), leg_br: ( - offset: (-2.0, -2.5, -4.0), + offset: (-2.0, -2.5, -3.0), lateral: ("npc.tuskram.male.leg_br"), ), foot_fl: ( - offset: (-2.5, -2.0, -5.0), + offset: (-2.5, -2.0, -8.0), lateral: ("npc.tuskram.male.foot_fl"), ), foot_fr: ( - offset: (-2.5, -2.0, -5.0), + offset: (-2.5, -2.0, -8.0), lateral: ("npc.tuskram.male.foot_fr"), ), foot_bl: ( - offset: (-1.5, -1.5, -6.0), + offset: (-1.5, -1.5, -8.0), lateral: ("npc.tuskram.male.foot_bl"), ), foot_br: ( - offset: (-1.5, -1.5, -6.0), + offset: (-1.5, -1.5, -8.0), lateral: ("npc.tuskram.male.foot_br"), ), ), (Lion, Male): ( leg_fl: ( - offset: (-2.0, -2.5, -7.5), + offset: (-2.0, -2.5, -3.5), lateral: ("npc.lion.male.leg_fl"), ), leg_fr: ( - offset: (-2.0, -2.5, -7.5), + offset: (-2.0, -2.5, -3.5), lateral: ("npc.lion.male.leg_fr"), ), leg_bl: ( - offset: (-2.0, -3.0, -6.0), + offset: (-2.0, -3.0, -3.5), lateral: ("npc.lion.male.leg_bl"), ), leg_br: ( - offset: (-2.0, -3.0, -6.0), + offset: (-2.0, -3.0, -3.5), lateral: ("npc.lion.male.leg_br"), ), foot_fl: ( - offset: (-2.5, -2.0, -5.0), + offset: (-2.5, -2.0, -8.0), lateral: ("npc.lion.male.foot_fl"), ), foot_fr: ( - offset: (-2.5, -2.0, -5.0), + offset: (-2.5, -2.0, -8.0), lateral: ("npc.lion.male.foot_fr"), ), foot_bl: ( - offset: (-2.5, -2.0, -6.0), + offset: (-2.5, -2.0, -8.0), lateral: ("npc.lion.male.foot_bl"), ), foot_br: ( - offset: (-2.5, -2.0, -6.0), + offset: (-2.5, -2.0, -8.0), lateral: ("npc.lion.male.foot_br"), ), ), (Lion, Female): ( leg_fl: ( - offset: (-2.0, -2.5, -7.5), + offset: (-2.0, -2.5, -3.5), lateral: ("npc.lion.male.leg_fl"), ), leg_fr: ( - offset: (-2.0, -2.5, -7.5), + offset: (-2.0, -2.5, -3.5), lateral: ("npc.lion.male.leg_fr"), ), leg_bl: ( - offset: (-2.0, -3.0, -6.0), + offset: (-2.0, -3.0, -3.5), lateral: ("npc.lion.male.leg_bl"), ), leg_br: ( - offset: (-2.0, -3.0, -6.0), + offset: (-2.0, -3.0, -3.5), lateral: ("npc.lion.male.leg_br"), ), foot_fl: ( - offset: (-2.5, -2.0, -5.0), + offset: (-2.5, -2.0, -8.0), lateral: ("npc.lion.male.foot_fl"), ), foot_fr: ( - offset: (-2.5, -2.0, -5.0), + offset: (-2.5, -2.0, -8.0), lateral: ("npc.lion.male.foot_fr"), ), foot_bl: ( - offset: (-2.5, -2.0, -6.0), + offset: (-2.5, -2.0, -8.0), lateral: ("npc.lion.male.foot_bl"), ), foot_br: ( - offset: (-2.5, -2.0, -6.0), + offset: (-2.5, -2.0, -8.0), lateral: ("npc.lion.male.foot_br"), ), ), @@ -341,69 +341,69 @@ ), (Tiger, Male): ( leg_fl: ( - offset: (-2.0, -3.0, -10.0), + offset: (-2.0, -3.0, -4.0), lateral: ("npc.tiger.male.leg_fl"), ), leg_fr: ( - offset: (-2.0, -3.0, -10.0), + offset: (-2.0, -3.0, -4.0), lateral: ("npc.tiger.male.leg_fr"), ), leg_bl: ( - offset: (-2.0, -3.0, -10.0), + offset: (-2.0, -3.0, -3.0), lateral: ("npc.tiger.male.leg_bl"), ), leg_br: ( - offset: (-2.0, -3.0, -10.0), + offset: (-2.0, -3.0, -3.0), lateral: ("npc.tiger.male.leg_br"), ), foot_fl: ( - offset: (-2.5, -2.0, -6.0), + offset: (-2.5, -2.0, -7.0), lateral: ("npc.tiger.male.foot_fl"), ), foot_fr: ( - offset: (-2.5, -2.0, -6.0), + offset: (-2.5, -2.0, -7.0), lateral: ("npc.tiger.male.foot_fr"), ), foot_bl: ( - offset: (-2.5, -2.0, -6.0), + offset: (-2.5, -2.0, -8.0), lateral: ("npc.tiger.male.foot_bl"), ), foot_br: ( - offset: (-2.5, -2.0, -6.0), + offset: (-2.5, -2.0, -8.0), lateral: ("npc.tiger.male.foot_br"), ), ), (Tiger, Female): ( leg_fl: ( - offset: (-2.0, -3.0, -10.0), + offset: (-2.0, -3.0, -4.0), lateral: ("npc.tiger.male.leg_fl"), ), leg_fr: ( - offset: (-2.0, -3.0, -10.0), + offset: (-2.0, -3.0, -4.0), lateral: ("npc.tiger.male.leg_fr"), ), leg_bl: ( - offset: (-2.0, -3.0, -10.0), + offset: (-2.0, -3.0, -3.0), lateral: ("npc.tiger.male.leg_bl"), ), leg_br: ( - offset: (-2.0, -3.0, -10.0), + offset: (-2.0, -3.0, -3.0), lateral: ("npc.tiger.male.leg_br"), ), foot_fl: ( - offset: (-2.5, -2.0, -6.0), + offset: (-2.5, -2.0, -7.0), lateral: ("npc.tiger.male.foot_fl"), ), foot_fr: ( - offset: (-2.5, -2.0, -6.0), + offset: (-2.5, -2.0, -7.0), lateral: ("npc.tiger.male.foot_fr"), ), foot_bl: ( - offset: (-2.5, -2.0, -6.0), + offset: (-2.5, -2.0, -8.0), lateral: ("npc.tiger.male.foot_bl"), ), foot_br: ( - offset: (-2.5, -2.0, -6.0), + offset: (-2.5, -2.0, -8.0), lateral: ("npc.tiger.male.foot_br"), ), ), @@ -613,11 +613,11 @@ ), (Catoblepas, Male): ( leg_fl: ( - offset: (-2.5, -4.0, -4.5), + offset: (-2.5, -4.0, -5.0), lateral: ("npc.catoblepas.male.leg_fl"), ), leg_fr: ( - offset: (-2.5, -4.0, -4.5), + offset: (-2.5, -4.0, -5.0), lateral: ("npc.catoblepas.male.leg_fr"), ), leg_bl: ( @@ -629,11 +629,11 @@ lateral: ("npc.catoblepas.male.leg_br"), ), foot_fl: ( - offset: (-3.0, -7.0, -11.0), + offset: (-3.0, -3.0, -9.0), lateral: ("npc.catoblepas.male.foot_fl"), ), foot_fr: ( - offset: (-3.0, -7.0, -11.0), + offset: (-3.0, -3.0, -9.0), lateral: ("npc.catoblepas.male.foot_fr"), ), foot_bl: ( @@ -647,11 +647,11 @@ ), (Catoblepas, Female): ( leg_fl: ( - offset: (-2.5, -4.0, -4.5), + offset: (-2.5, -4.0, -5.0), lateral: ("npc.catoblepas.male.leg_fl"), ), leg_fr: ( - offset: (-2.5, -4.0, -4.5), + offset: (-2.5, -4.0, -5.0), lateral: ("npc.catoblepas.male.leg_fr"), ), leg_bl: ( @@ -663,11 +663,11 @@ lateral: ("npc.catoblepas.male.leg_br"), ), foot_fl: ( - offset: (-3.0, -7.0, -11.0), + offset: (-3.0, -3.0, -9.0), lateral: ("npc.catoblepas.male.foot_fl"), ), foot_fr: ( - offset: (-3.0, -7.0, -11.0), + offset: (-3.0, -3.0, -9.0), lateral: ("npc.catoblepas.male.foot_fr"), ), foot_bl: ( @@ -815,72 +815,72 @@ lateral: ("npc.deer.female.foot_br"), ), ), - (Hirdrassil, Male): ( + (Hirdrasil, Male): ( leg_fl: ( offset: (-1.5, -3.0, -4.0), - lateral: ("npc.hirdrassil.male.leg_fl"), + lateral: ("npc.hirdrasil.male.leg_fl"), ), leg_fr: ( offset: (-1.5, -3.0, -4.0), - lateral: ("npc.hirdrassil.male.leg_fr"), + lateral: ("npc.hirdrasil.male.leg_fr"), ), leg_bl: ( offset: (-2.0, -2.5, -5.0), - lateral: ("npc.hirdrassil.male.leg_bl"), + lateral: ("npc.hirdrasil.male.leg_bl"), ), leg_br: ( offset: (-2.0, -2.5, -5.0), - lateral: ("npc.hirdrassil.male.leg_br"), + lateral: ("npc.hirdrasil.male.leg_br"), ), foot_fl: ( offset: (-2.0, -1.0, -9.0), - lateral: ("npc.hirdrassil.male.foot_fl"), + lateral: ("npc.hirdrasil.male.foot_fl"), ), foot_fr: ( offset: (-2.0, -1.0, -9.0), - lateral: ("npc.hirdrassil.male.foot_fr"), + lateral: ("npc.hirdrasil.male.foot_fr"), ), foot_bl: ( offset: (-2.0, -2.5, -7.0), - lateral: ("npc.hirdrassil.male.foot_bl"), + lateral: ("npc.hirdrasil.male.foot_bl"), ), foot_br: ( offset: (-2.0, -2.5, -7.0), - lateral: ("npc.hirdrassil.male.foot_br"), + lateral: ("npc.hirdrasil.male.foot_br"), ), ), - (Hirdrassil, Female): ( + (Hirdrasil, Female): ( leg_fl: ( offset: (-1.5, -3.0, -4.0), - lateral: ("npc.hirdrassil.male.leg_fl"), + lateral: ("npc.hirdrasil.male.leg_fl"), ), leg_fr: ( offset: (-1.5, -3.0, -4.0), - lateral: ("npc.hirdrassil.male.leg_fr"), + lateral: ("npc.hirdrasil.male.leg_fr"), ), leg_bl: ( offset: (-2.0, -2.5, -5.0), - lateral: ("npc.hirdrassil.male.leg_bl"), + lateral: ("npc.hirdrasil.male.leg_bl"), ), leg_br: ( offset: (-2.0, -2.5, -5.0), - lateral: ("npc.hirdrassil.male.leg_br"), + lateral: ("npc.hirdrasil.male.leg_br"), ), foot_fl: ( offset: (-2.0, -1.0, -9.0), - lateral: ("npc.hirdrassil.male.foot_fl"), + lateral: ("npc.hirdrasil.male.foot_fl"), ), foot_fr: ( offset: (-2.0, -1.0, -9.0), - lateral: ("npc.hirdrassil.male.foot_fr"), + lateral: ("npc.hirdrasil.male.foot_fr"), ), foot_bl: ( offset: (-2.0, -2.5, -7.0), - lateral: ("npc.hirdrassil.male.foot_bl"), + lateral: ("npc.hirdrasil.male.foot_bl"), ), foot_br: ( offset: (-2.0, -2.5, -7.0), - lateral: ("npc.hirdrassil.male.foot_br"), + lateral: ("npc.hirdrasil.male.foot_br"), ), ), }) diff --git a/common/src/comp/body/quadruped_medium.rs b/common/src/comp/body/quadruped_medium.rs index 25f144292b..17c662e239 100644 --- a/common/src/comp/body/quadruped_medium.rs +++ b/common/src/comp/body/quadruped_medium.rs @@ -44,7 +44,7 @@ pub enum Species { Catoblepas = 11, Bonerattler = 12, Deer = 13, - Hirdrassil = 14, + Hirdrasil = 14, } /// Data representing per-species generic data. @@ -64,7 +64,7 @@ pub struct AllSpecies { pub catoblepas: SpeciesMeta, pub bonerattler: SpeciesMeta, pub deer: SpeciesMeta, - pub hirdrassil: SpeciesMeta, + pub hirdrasil: SpeciesMeta, } impl<'a, SpeciesMeta> core::ops::Index<&'a Species> for AllSpecies { @@ -85,7 +85,7 @@ impl<'a, SpeciesMeta> core::ops::Index<&'a Species> for AllSpecies Species::Catoblepas => &self.catoblepas, Species::Bonerattler => &self.bonerattler, Species::Deer => &self.deer, - Species::Hirdrassil => &self.hirdrassil, + Species::Hirdrasil => &self.hirdrasil, } } } @@ -103,7 +103,7 @@ pub const ALL_SPECIES: [Species; 13] = [ Species::Catoblepas, Species::Bonerattler, Species::Deer, - Species::Hirdrassil, + Species::Hirdrasil, ]; impl<'a, SpeciesMeta: 'a> IntoIterator for &'a AllSpecies { diff --git a/voxygen/src/anim/src/quadruped_medium/mod.rs b/voxygen/src/anim/src/quadruped_medium/mod.rs index 0ed951dca2..7985b40f70 100644 --- a/voxygen/src/anim/src/quadruped_medium/mod.rs +++ b/voxygen/src/anim/src/quadruped_medium/mod.rs @@ -148,7 +148,7 @@ impl<'a> From<&'a Body> for SkeletonAttr { (Bonerattler, _) => (-1.0, 2.5), (Deer, Male) => (0.5, 3.5), (Deer, Female) => (0.5, 3.5), - (Hirdrassil, _) => (0.0, 5.0), + (Hirdrasil, _) => (0.0, 5.0), }, neck: match (body.species, body.body_type) { (Grolgar, _) => (1.0, -1.0), @@ -163,7 +163,7 @@ impl<'a> From<&'a Body> for SkeletonAttr { (Catoblepas, _) => (19.5, -2.0), (Bonerattler, _) => (7.0, -1.5), (Deer, _) => (-0.5, 1.0), - (Hirdrassil, _) => (-1.0, 0.5), + (Hirdrasil, _) => (-1.0, 0.5), }, jaw: match (body.species, body.body_type) { (Grolgar, _) => (7.0, 1.5), @@ -178,7 +178,7 @@ impl<'a> From<&'a Body> for SkeletonAttr { (Catoblepas, _) => (1.0, -4.0), (Bonerattler, _) => (3.0, -3.0), (Deer, _) => (3.5, 2.0), - (Hirdrassil, _) => (2.5, 2.5), + (Hirdrasil, _) => (2.5, 2.5), }, tail: match (body.species, body.body_type) { (Grolgar, _) => (-11.5, -0.5), @@ -193,22 +193,22 @@ impl<'a> From<&'a Body> for SkeletonAttr { (Catoblepas, _) => (-8.5, -2.0), (Bonerattler, _) => (-10.0, 1.5), (Deer, _) => (-8.5, 0.5), - (Hirdrassil, _) => (-11.0, 2.0), + (Hirdrasil, _) => (-11.0, 2.0), }, torso_front: match (body.species, body.body_type) { (Grolgar, _) => (10.0, 13.0), (Saber, _) => (14.0, 14.0), (Tuskram, _) => (10.0, 14.5), - (Lion, _) => (10.0, 14.0), + (Lion, _) => (10.0, 12.5), (Tarasque, _) => (11.5, 18.5), - (Tiger, _) => (10.0, 14.0), + (Tiger, _) => (10.0, 13.0), (Wolf, _) => (12.0, 13.0), (Frostfang, _) => (9.0, 11.5), (Mouflon, _) => (11.0, 13.5), (Catoblepas, _) => (7.5, 19.5), (Bonerattler, _) => (6.0, 12.5), (Deer, _) => (11.0, 13.5), - (Hirdrassil, _) => (11.0, 14.5), + (Hirdrasil, _) => (11.0, 14.5), }, torso_back: match (body.species, body.body_type) { (Grolgar, _) => (-10.0, 1.5), @@ -216,14 +216,14 @@ impl<'a> From<&'a Body> for SkeletonAttr { (Tuskram, _) => (-12.5, -2.0), (Lion, _) => (-12.0, -0.5), (Tarasque, _) => (-14.0, -1.0), - (Tiger, _) => (-13.0, 0.0), + (Tiger, _) => (-13.0, -0.5), (Wolf, _) => (-12.5, 1.0), (Frostfang, _) => (-10.5, 0.0), (Mouflon, _) => (-8.5, -0.5), (Catoblepas, _) => (-8.5, -4.5), (Bonerattler, _) => (-5.0, 0.0), (Deer, _) => (-9.0, 0.5), - (Hirdrassil, _) => (-9.0, -0.5), + (Hirdrasil, _) => (-9.0, -0.5), }, ears: match (body.species, body.body_type) { (Grolgar, _) => (5.0, 8.0), @@ -238,67 +238,67 @@ impl<'a> From<&'a Body> for SkeletonAttr { (Catoblepas, _) => (11.0, -3.0), (Bonerattler, _) => (2.0, 3.5), (Deer, _) => (2.5, 5.0), - (Hirdrassil, _) => (2.5, 5.0), + (Hirdrasil, _) => (2.5, 5.0), }, leg_f: match (body.species, body.body_type) { - (Grolgar, _) => (7.0, -2.0, 2.0), + (Grolgar, _) => (7.5, -5.5, -1.0), (Saber, _) => (7.0, -4.0, -3.5), - (Tuskram, _) => (6.0, -6.5, -0.5), - (Lion, _) => (6.5, -6.5, -2.0), + (Tuskram, _) => (6.0, -6.5, -4.0), + (Lion, _) => (6.5, -6.5, -1.5), (Tarasque, _) => (7.0, -8.0, -6.0), - (Tiger, _) => (6.0, -5.0, 1.0), + (Tiger, _) => (6.0, -6.0, -1.5), (Wolf, _) => (4.5, -6.5, -1.5), (Frostfang, _) => (5.5, -5.5, -2.0), (Mouflon, _) => (4.0, -5.0, -4.0), - (Catoblepas, _) => (7.0, 2.0, -6.0), + (Catoblepas, _) => (7.0, 2.0, -5.0), (Bonerattler, _) => (5.5, 5.0, -4.0), (Deer, _) => (3.5, -4.5, -3.5), - (Hirdrassil, _) => (4.5, -5.0, -2.5), + (Hirdrasil, _) => (4.5, -5.0, -2.5), }, leg_b: match (body.species, body.body_type) { - (Grolgar, _) => (6.0, -6.5, -5.5), + (Grolgar, _) => (6.0, -6.5, -4.0), (Saber, _) => (6.0, -7.0, -3.5), - (Tuskram, _) => (5.0, -5.5, -3.5), - (Lion, _) => (6.0, -6.0, -2.0), + (Tuskram, _) => (5.0, -4.5, -2.5), + (Lion, _) => (6.0, -5.0, -1.5), (Tarasque, _) => (6.0, -6.5, -6.5), - (Tiger, _) => (6.0, -7.5, 1.0), + (Tiger, _) => (6.0, -7.0, -1.0), (Wolf, _) => (5.0, -6.5, -3.0), (Frostfang, _) => (3.5, -4.5, -2.0), (Mouflon, _) => (3.5, -8.0, -3.5), (Catoblepas, _) => (6.0, -2.5, -2.5), (Bonerattler, _) => (6.0, -8.0, -4.0), (Deer, _) => (3.0, -6.5, -3.5), - (Hirdrassil, _) => (4.0, -6.5, -3.0), + (Hirdrasil, _) => (4.0, -6.5, -3.0), }, feet_f: match (body.species, body.body_type) { - (Grolgar, _) => (0.0, -3.0, -9.0), + (Grolgar, _) => (0.0, 0.0, -4.0), (Saber, _) => (1.0, -3.5, -2.5), - (Tuskram, _) => (0.5, 0.5, -9.0), - (Lion, _) => (0.0, 0.0, -7.0), + (Tuskram, _) => (0.5, 0.5, -3.0), + (Lion, _) => (0.5, 0.5, -3.5), (Tarasque, _) => (1.0, 0.0, -3.0), - (Tiger, _) => (0.5, 0.0, -9.0), + (Tiger, _) => (0.5, 0.0, -4.5), (Wolf, _) => (0.5, 0.0, -2.0), (Frostfang, _) => (0.5, 1.5, -3.5), (Mouflon, _) => (-0.5, -0.5, -3.0), - (Catoblepas, _) => (1.0, 4.0, -3.0), + (Catoblepas, _) => (1.0, 0.0, -6.0), (Bonerattler, _) => (-0.5, -3.0, -2.5), (Deer, _) => (-0.5, -0.5, -2.5), - (Hirdrassil, _) => (-0.5, -3.0, -3.5), + (Hirdrasil, _) => (-0.5, -3.0, -3.5), }, feet_b: match (body.species, body.body_type) { - (Grolgar, _) => (0.0, -1.0, -5.0), + (Grolgar, _) => (0.5, -1.5, -3.0), (Saber, _) => (1.0, -1.0, -1.0), - (Tuskram, _) => (0.5, 0.0, -3.5), - (Lion, _) => (0.5, 0.5, -5.5), + (Tuskram, _) => (0.5,-1.0, -2.5), + (Lion, _) => (0.5, -1.0, -3.0), (Tarasque, _) => (1.5, -1.0, -2.5), - (Tiger, _) => (1.0, 0.5, -8.0), + (Tiger, _) => (0.5, -1.0, -4.0), (Wolf, _) => (0.0, -1.0, -1.5), (Frostfang, _) => (0.0, -1.5, -3.5), (Mouflon, _) => (-1.0, 0.0, -0.5), (Catoblepas, _) => (0.5, 0.5, -4.0), (Bonerattler, _) => (0.0, 3.0, -2.5), (Deer, _) => (-1.0, -0.5, -2.0), - (Hirdrassil, _) => (-1.0, -2.0, -4.5), + (Hirdrasil, _) => (-1.0, -2.0, -4.5), }, scaler: match (body.species, body.body_type) { (Grolgar, _) => (1.3), @@ -313,7 +313,7 @@ impl<'a> From<&'a Body> for SkeletonAttr { (Catoblepas, _) => (1.3), (Bonerattler, _) => (1.0), (Deer, _) => (1.0), - (Hirdrassil, _) => (1.0), + (Hirdrasil, _) => (1.0), }, startangle: match (body.species, body.body_type) { //changes the default angle of front feet @@ -326,10 +326,10 @@ impl<'a> From<&'a Body> for SkeletonAttr { (Wolf, _) => (0.0), (Frostfang, _) => (0.0), (Mouflon, _) => (0.0), - (Catoblepas, _) => (0.2), + (Catoblepas, _) => (-0.5), (Bonerattler, _) => (-0.7), (Deer, _) => (0.0), - (Hirdrassil, _) => (0.0), + (Hirdrasil, _) => (0.0), }, tempo: match (body.species, body.body_type) { (Grolgar, _) => (0.95), @@ -344,7 +344,7 @@ impl<'a> From<&'a Body> for SkeletonAttr { (Catoblepas, _) => (0.8), (Bonerattler, _) => (1.0), (Deer, _) => (0.85), - (Hirdrassil, _) => (0.85), + (Hirdrasil, _) => (0.85), }, spring: match (body.species, body.body_type) { (Grolgar, _) => (1.0), @@ -355,17 +355,17 @@ impl<'a> From<&'a Body> for SkeletonAttr { (Tiger, _) => (1.0), (Wolf, _) => (1.2), (Frostfang, _) => (1.0), - (Mouflon, _) => (0.6), + (Mouflon, _) => (0.9), (Catoblepas, _) => (0.7), (Bonerattler, _) => (1.1), (Deer, _) => (0.9), - (Hirdrassil, _) => (1.1), + (Hirdrasil, _) => (1.1), }, feed: match (body.species, body.body_type) { (Tuskram, _) => (true, 0.5), (Mouflon, _) => (true, 1.0), (Deer, _) => (true, 1.0), - (Hirdrassil, _) => (true, 0.9), + (Hirdrasil, _) => (true, 0.9), (_, _) => (false, 0.0), }, } From 1f8329c98a52cad07dedd46bb801476f81ff616c Mon Sep 17 00:00:00 2001 From: jshipsey Date: Tue, 15 Sep 2020 23:17:56 -0400 Subject: [PATCH 23/28] spawn tweaks, improved odonto --- assets/common/npc_names.json | 6 +- .../male/chest_back.vox | Bin .../male/chest_front.vox | Bin .../male/foot_l.vox | Bin .../male/foot_r.vox | Bin .../male/hand_l.vox | Bin .../male/hand_r.vox | Bin .../{odontotyrannos => odonto}/male/head.vox | Bin .../{odontotyrannos => odonto}/male/jaw.vox | Bin .../{odontotyrannos => odonto}/male/leg_l.vox | Bin .../{odontotyrannos => odonto}/male/leg_r.vox | Bin .../male/tail_back.vox | Bin .../male/tail_front.vox | Bin .../voxel/theropod_central_manifest.ron | 32 +++++------ .../voxel/theropod_lateral_manifest.ron | 32 +++++------ common/src/comp/agent.rs | 2 +- common/src/comp/body/theropod.rs | 8 +-- server/src/events/entity_manipulation.rs | 4 +- voxygen/src/anim/src/quadruped_medium/feed.rs | 18 +++--- voxygen/src/anim/src/quadruped_medium/idle.rs | 2 +- voxygen/src/anim/src/quadruped_medium/mod.rs | 7 ++- voxygen/src/anim/src/theropod/idle.rs | 4 +- voxygen/src/anim/src/theropod/mod.rs | 20 +++---- voxygen/src/scene/figure/load.rs | 54 +++--------------- world/src/lib.rs | 6 +- 25 files changed, 80 insertions(+), 115 deletions(-) rename assets/voxygen/voxel/npc/{odontotyrannos => odonto}/male/chest_back.vox (100%) rename assets/voxygen/voxel/npc/{odontotyrannos => odonto}/male/chest_front.vox (100%) rename assets/voxygen/voxel/npc/{odontotyrannos => odonto}/male/foot_l.vox (100%) rename assets/voxygen/voxel/npc/{odontotyrannos => odonto}/male/foot_r.vox (100%) rename assets/voxygen/voxel/npc/{odontotyrannos => odonto}/male/hand_l.vox (100%) rename assets/voxygen/voxel/npc/{odontotyrannos => odonto}/male/hand_r.vox (100%) rename assets/voxygen/voxel/npc/{odontotyrannos => odonto}/male/head.vox (100%) rename assets/voxygen/voxel/npc/{odontotyrannos => odonto}/male/jaw.vox (100%) rename assets/voxygen/voxel/npc/{odontotyrannos => odonto}/male/leg_l.vox (100%) rename assets/voxygen/voxel/npc/{odontotyrannos => odonto}/male/leg_r.vox (100%) rename assets/voxygen/voxel/npc/{odontotyrannos => odonto}/male/tail_back.vox (100%) rename assets/voxygen/voxel/npc/{odontotyrannos => odonto}/male/tail_front.vox (100%) diff --git a/assets/common/npc_names.json b/assets/common/npc_names.json index fb5f7b2a76..657d073103 100644 --- a/assets/common/npc_names.json +++ b/assets/common/npc_names.json @@ -602,9 +602,9 @@ "keyword": "archaeos", "generic": "Archaeos" }, - "odontotyrannos": { - "keyword": "odontotyrannos", - "generic": "Odontotyrannos" + "odonto": { + "keyword": "odonto", + "generic": "Odonto" } } }, diff --git a/assets/voxygen/voxel/npc/odontotyrannos/male/chest_back.vox b/assets/voxygen/voxel/npc/odonto/male/chest_back.vox similarity index 100% rename from assets/voxygen/voxel/npc/odontotyrannos/male/chest_back.vox rename to assets/voxygen/voxel/npc/odonto/male/chest_back.vox diff --git a/assets/voxygen/voxel/npc/odontotyrannos/male/chest_front.vox b/assets/voxygen/voxel/npc/odonto/male/chest_front.vox similarity index 100% rename from assets/voxygen/voxel/npc/odontotyrannos/male/chest_front.vox rename to assets/voxygen/voxel/npc/odonto/male/chest_front.vox diff --git a/assets/voxygen/voxel/npc/odontotyrannos/male/foot_l.vox b/assets/voxygen/voxel/npc/odonto/male/foot_l.vox similarity index 100% rename from assets/voxygen/voxel/npc/odontotyrannos/male/foot_l.vox rename to assets/voxygen/voxel/npc/odonto/male/foot_l.vox diff --git a/assets/voxygen/voxel/npc/odontotyrannos/male/foot_r.vox b/assets/voxygen/voxel/npc/odonto/male/foot_r.vox similarity index 100% rename from assets/voxygen/voxel/npc/odontotyrannos/male/foot_r.vox rename to assets/voxygen/voxel/npc/odonto/male/foot_r.vox diff --git a/assets/voxygen/voxel/npc/odontotyrannos/male/hand_l.vox b/assets/voxygen/voxel/npc/odonto/male/hand_l.vox similarity index 100% rename from assets/voxygen/voxel/npc/odontotyrannos/male/hand_l.vox rename to assets/voxygen/voxel/npc/odonto/male/hand_l.vox diff --git a/assets/voxygen/voxel/npc/odontotyrannos/male/hand_r.vox b/assets/voxygen/voxel/npc/odonto/male/hand_r.vox similarity index 100% rename from assets/voxygen/voxel/npc/odontotyrannos/male/hand_r.vox rename to assets/voxygen/voxel/npc/odonto/male/hand_r.vox diff --git a/assets/voxygen/voxel/npc/odontotyrannos/male/head.vox b/assets/voxygen/voxel/npc/odonto/male/head.vox similarity index 100% rename from assets/voxygen/voxel/npc/odontotyrannos/male/head.vox rename to assets/voxygen/voxel/npc/odonto/male/head.vox diff --git a/assets/voxygen/voxel/npc/odontotyrannos/male/jaw.vox b/assets/voxygen/voxel/npc/odonto/male/jaw.vox similarity index 100% rename from assets/voxygen/voxel/npc/odontotyrannos/male/jaw.vox rename to assets/voxygen/voxel/npc/odonto/male/jaw.vox diff --git a/assets/voxygen/voxel/npc/odontotyrannos/male/leg_l.vox b/assets/voxygen/voxel/npc/odonto/male/leg_l.vox similarity index 100% rename from assets/voxygen/voxel/npc/odontotyrannos/male/leg_l.vox rename to assets/voxygen/voxel/npc/odonto/male/leg_l.vox diff --git a/assets/voxygen/voxel/npc/odontotyrannos/male/leg_r.vox b/assets/voxygen/voxel/npc/odonto/male/leg_r.vox similarity index 100% rename from assets/voxygen/voxel/npc/odontotyrannos/male/leg_r.vox rename to assets/voxygen/voxel/npc/odonto/male/leg_r.vox diff --git a/assets/voxygen/voxel/npc/odontotyrannos/male/tail_back.vox b/assets/voxygen/voxel/npc/odonto/male/tail_back.vox similarity index 100% rename from assets/voxygen/voxel/npc/odontotyrannos/male/tail_back.vox rename to assets/voxygen/voxel/npc/odonto/male/tail_back.vox diff --git a/assets/voxygen/voxel/npc/odontotyrannos/male/tail_front.vox b/assets/voxygen/voxel/npc/odonto/male/tail_front.vox similarity index 100% rename from assets/voxygen/voxel/npc/odontotyrannos/male/tail_front.vox rename to assets/voxygen/voxel/npc/odonto/male/tail_front.vox diff --git a/assets/voxygen/voxel/theropod_central_manifest.ron b/assets/voxygen/voxel/theropod_central_manifest.ron index f0bc769355..01d2f7a1d5 100644 --- a/assets/voxygen/voxel/theropod_central_manifest.ron +++ b/assets/voxygen/voxel/theropod_central_manifest.ron @@ -59,14 +59,14 @@ central: ("npc.archaeos.male.tail_back"), ), ), - (Odontotyrannos, Male): ( + (Odonto, Male): ( head: ( offset: (-10.5, 0.0, -8.0), - central: ("npc.odontotyrannos.male.head"), + central: ("npc.odonto.male.head"), ), jaw: ( offset: (-6.5, 0.0, -3.0), - central: ("npc.odontotyrannos.male.jaw"), + central: ("npc.odonto.male.jaw"), ), neck: ( offset: (0.0, 0.0, 0.0), @@ -74,29 +74,29 @@ ), chest_front: ( offset: (-5.5, -5.0, -6.0), - central: ("npc.odontotyrannos.male.chest_front"), + central: ("npc.odonto.male.chest_front"), ), chest_back: ( offset: (-6.5, -8.0, -8.5), - central: ("npc.odontotyrannos.male.chest_back"), + central: ("npc.odonto.male.chest_back"), ), tail_front: ( offset: (-3.5, -8.0, -5.5), - central: ("npc.odontotyrannos.male.tail_front"), + central: ("npc.odonto.male.tail_front"), ), tail_back: ( - offset: (-2.5, -23.0, -3.0), - central: ("npc.odontotyrannos.male.tail_back"), + offset: (-2.5, -19.0, -5.0), + central: ("npc.odonto.male.tail_back"), ), ), - (Odontotyrannos, Female): ( + (Odonto, Female): ( head: ( offset: (-10.5, 0.0, -8.0), - central: ("npc.odontotyrannos.male.head"), + central: ("npc.odonto.male.head"), ), jaw: ( offset: (-6.5, 0.0, -3.0), - central: ("npc.odontotyrannos.male.jaw"), + central: ("npc.odonto.male.jaw"), ), neck: ( offset: (0.0, 0.0, 0.0), @@ -104,19 +104,19 @@ ), chest_front: ( offset: (-5.5, -5.0, -6.0), - central: ("npc.odontotyrannos.male.chest_front"), + central: ("npc.odonto.male.chest_front"), ), chest_back: ( offset: (-6.5, -8.0, -8.5), - central: ("npc.odontotyrannos.male.chest_back"), + central: ("npc.odonto.male.chest_back"), ), tail_front: ( offset: (-3.5, -8.0, -5.5), - central: ("npc.odontotyrannos.male.tail_front"), + central: ("npc.odonto.male.tail_front"), ), tail_back: ( - offset: (-2.5, -8.0, -3.0), - central: ("npc.odontotyrannos.male.tail_back"), + offset: (-2.5, -19.0, -5.0), + central: ("npc.odonto.male.tail_back"), ), ), }) diff --git a/assets/voxygen/voxel/theropod_lateral_manifest.ron b/assets/voxygen/voxel/theropod_lateral_manifest.ron index ca4cc8cd0f..39603e4a41 100644 --- a/assets/voxygen/voxel/theropod_lateral_manifest.ron +++ b/assets/voxygen/voxel/theropod_lateral_manifest.ron @@ -51,56 +51,56 @@ lateral: ("npc.archaeos.male.foot_r"), ), ), - (Odontotyrannos, Male): ( + (Odonto, Male): ( hand_l: ( offset: (-3.0, -3.0, -7.0), - lateral: ("npc.odontotyrannos.male.hand_l"), + lateral: ("npc.odonto.male.hand_l"), ), hand_r: ( offset: (0.0, -3.0, -7.0), - lateral: ("npc.odontotyrannos.male.hand_r"), + lateral: ("npc.odonto.male.hand_r"), ), leg_l: ( offset: (-7.0, -4.5, -4.0), - lateral: ("npc.odontotyrannos.male.leg_l"), + lateral: ("npc.odonto.male.leg_l"), ), leg_r: ( offset: (0.0, -4.5, -4.0), - lateral: ("npc.odontotyrannos.male.leg_r"), + lateral: ("npc.odonto.male.leg_r"), ), foot_l: ( - offset: (-14.0, -1.0, -8.0), - lateral: ("npc.odontotyrannos.male.foot_l"), + offset: (-8.0, -1.0, -8.0), + lateral: ("npc.odonto.male.foot_l"), ), foot_r: ( offset: (-6.0, -1.0, -8.0), - lateral: ("npc.odontotyrannos.male.foot_r"), + lateral: ("npc.odonto.male.foot_r"), ), ), - (Odontotyrannos, Female): ( + (Odonto, Female): ( hand_l: ( offset: (-3.0, -3.0, -7.0), - lateral: ("npc.odontotyrannos.male.hand_l"), + lateral: ("npc.odonto.male.hand_l"), ), hand_r: ( offset: (0.0, -3.0, -7.0), - lateral: ("npc.odontotyrannos.male.hand_r"), + lateral: ("npc.odonto.male.hand_r"), ), leg_l: ( offset: (-7.0, -4.5, -4.0), - lateral: ("npc.odontotyrannos.male.leg_l"), + lateral: ("npc.odonto.male.leg_l"), ), leg_r: ( offset: (0.0, -4.5, -4.0), - lateral: ("npc.odontotyrannos.male.leg_r"), + lateral: ("npc.odonto.male.leg_r"), ), foot_l: ( - offset: (-14.0, -1.0, -8.0), - lateral: ("npc.odontotyrannos.male.foot_l"), + offset: (-8.0, -1.0, -8.0), + lateral: ("npc.odonto.male.foot_l"), ), foot_r: ( offset: (-6.0, -1.0, -8.0), - lateral: ("npc.odontotyrannos.male.foot_r"), + lateral: ("npc.odonto.male.foot_r"), ), ), }) diff --git a/common/src/comp/agent.rs b/common/src/comp/agent.rs index 1fc7b53371..fbccf28c87 100644 --- a/common/src/comp/agent.rs +++ b/common/src/comp/agent.rs @@ -1,5 +1,5 @@ use crate::{ - comp::{humanoid, quadruped_low, quadruped_medium, quadruped_small, theropod, Body}, + comp::{humanoid, quadruped_low, quadruped_medium, quadruped_small, Body}, path::Chaser, sync::Uid, }; diff --git a/common/src/comp/body/theropod.rs b/common/src/comp/body/theropod.rs index 446034a128..e7d2ac75f6 100644 --- a/common/src/comp/body/theropod.rs +++ b/common/src/comp/body/theropod.rs @@ -29,14 +29,14 @@ impl From for super::Body { #[repr(u32)] pub enum Species { Archaeos = 0, - Odontotyrannos = 1, + Odonto = 1, } /// Data representing per-species generic data. #[derive(Clone, Debug, Serialize, Deserialize)] pub struct AllSpecies { pub archaeos: SpeciesMeta, - pub odontotyrannos: SpeciesMeta, + pub odonto: SpeciesMeta, } impl<'a, SpeciesMeta> core::ops::Index<&'a Species> for AllSpecies { @@ -46,12 +46,12 @@ impl<'a, SpeciesMeta> core::ops::Index<&'a Species> for AllSpecies fn index(&self, &index: &'a Species) -> &Self::Output { match index { Species::Archaeos => &self.archaeos, - Species::Odontotyrannos => &self.odontotyrannos, + Species::Odonto => &self.odonto, } } } -pub const ALL_SPECIES: [Species; 2] = [Species::Archaeos, Species::Odontotyrannos]; +pub const ALL_SPECIES: [Species; 2] = [Species::Archaeos, Species::Odonto]; impl<'a, SpeciesMeta: 'a> IntoIterator for &'a AllSpecies { type IntoIter = std::iter::Copied>; diff --git a/server/src/events/entity_manipulation.rs b/server/src/events/entity_manipulation.rs index cef530ce5d..88428fc3d7 100644 --- a/server/src/events/entity_manipulation.rs +++ b/server/src/events/entity_manipulation.rs @@ -317,7 +317,9 @@ pub fn handle_destroy(server: &mut Server, entity: EcsEntity, cause: HealthSourc 7 => "common.loot_tables.loot_table_weapon_rare", _ => "common.loot_tables.loot_table", }, - Some(common::comp::Body::Theropod(_)) => "common.loot_tables.loot_table_animal_parts", + Some(common::comp::Body::Theropod(_)) => { + "common.loot_tables.loot_table_animal_parts" + }, Some(common::comp::Body::Dragon(_)) => "common.loot_tables.loot_table_weapon_rare", Some(common::comp::Body::QuadrupedLow(_)) => match rng.gen_range(0, 3) { 0 => "common.loot_tables.loot_table_food", diff --git a/voxygen/src/anim/src/quadruped_medium/feed.rs b/voxygen/src/anim/src/quadruped_medium/feed.rs index bef398b5fa..4788b37b62 100644 --- a/voxygen/src/anim/src/quadruped_medium/feed.rs +++ b/voxygen/src/anim/src/quadruped_medium/feed.rs @@ -61,9 +61,10 @@ impl Animation for FeedAnimation { skeleton_attr.head.0, skeleton_attr.head.1 + slower * 0.2, ); - next.head.orientation = - Quaternion::rotation_z(0.3 * look.x) - * Quaternion::rotation_x(fast * 0.05 + faster * 0.08 + 0.8 * skeleton_attr.feed.1 * transition); + next.head.orientation = Quaternion::rotation_z(0.3 * look.x) + * Quaternion::rotation_x( + fast * 0.05 + faster * 0.08 + 0.8 * skeleton_attr.feed.1 * transition, + ); next.head.scale = Vec3::one(); next.neck.position = Vec3::new( @@ -71,7 +72,8 @@ impl Animation for FeedAnimation { skeleton_attr.neck.0, skeleton_attr.neck.1 + slower * 0.1 - 4.0 * transition, ); - next.neck.orientation =Quaternion::rotation_x(-2.5 * skeleton_attr.feed.1 * transition); + next.neck.orientation = + Quaternion::rotation_x(-2.5 * skeleton_attr.feed.1 * transition); next.neck.scale = Vec3::one() * 1.02; next.jaw.position = Vec3::new( @@ -90,7 +92,7 @@ impl Animation for FeedAnimation { next.head.orientation = Quaternion::rotation_z(0.3 * look.x) * Quaternion::rotation_x(0.3 * look.y); next.head.scale = Vec3::one(); - + next.neck.position = Vec3::new( 0.0, skeleton_attr.neck.0, @@ -98,14 +100,14 @@ impl Animation for FeedAnimation { ); next.neck.orientation = Quaternion::rotation_z(0.0) * Quaternion::rotation_x(0.0); next.neck.scale = Vec3::one() * 1.02; - + next.jaw.position = Vec3::new( 0.0, skeleton_attr.jaw.0 - slower * 0.12, skeleton_attr.jaw.1 + slow * 0.2 + 0.5, ); next.jaw.orientation = Quaternion::rotation_x(slow * 0.05 - 0.08); - next.jaw.scale = Vec3::one() * 1.02; + next.jaw.scale = Vec3::one() * 1.02; } next.tail.position = Vec3::new(0.0, skeleton_attr.tail.0, skeleton_attr.tail.1); @@ -202,4 +204,4 @@ impl Animation for FeedAnimation { next } -} \ No newline at end of file +} diff --git a/voxygen/src/anim/src/quadruped_medium/idle.rs b/voxygen/src/anim/src/quadruped_medium/idle.rs index 5da26b09e6..3285ba2bcb 100644 --- a/voxygen/src/anim/src/quadruped_medium/idle.rs +++ b/voxygen/src/anim/src/quadruped_medium/idle.rs @@ -170,4 +170,4 @@ impl Animation for IdleAnimation { next } -} \ No newline at end of file +} diff --git a/voxygen/src/anim/src/quadruped_medium/mod.rs b/voxygen/src/anim/src/quadruped_medium/mod.rs index 7985b40f70..5212b1377a 100644 --- a/voxygen/src/anim/src/quadruped_medium/mod.rs +++ b/voxygen/src/anim/src/quadruped_medium/mod.rs @@ -6,7 +6,8 @@ pub mod run; // Reexports pub use self::{ - alpha::AlphaAnimation, feed::FeedAnimation, idle::IdleAnimation, jump::JumpAnimation, run::RunAnimation, + alpha::AlphaAnimation, feed::FeedAnimation, idle::IdleAnimation, jump::JumpAnimation, + run::RunAnimation, }; use super::{make_bone, vek::*, FigureBoneData, Skeleton}; @@ -288,7 +289,7 @@ impl<'a> From<&'a Body> for SkeletonAttr { feet_b: match (body.species, body.body_type) { (Grolgar, _) => (0.5, -1.5, -3.0), (Saber, _) => (1.0, -1.0, -1.0), - (Tuskram, _) => (0.5,-1.0, -2.5), + (Tuskram, _) => (0.5, -1.0, -2.5), (Lion, _) => (0.5, -1.0, -3.0), (Tarasque, _) => (1.5, -1.0, -2.5), (Tiger, _) => (0.5, -1.0, -4.0), @@ -370,4 +371,4 @@ impl<'a> From<&'a Body> for SkeletonAttr { }, } } -} \ No newline at end of file +} diff --git a/voxygen/src/anim/src/theropod/idle.rs b/voxygen/src/anim/src/theropod/idle.rs index b37857e31e..cce7b1bbf4 100644 --- a/voxygen/src/anim/src/theropod/idle.rs +++ b/voxygen/src/anim/src/theropod/idle.rs @@ -115,7 +115,7 @@ impl Animation for IdleAnimation { next.foot_l.position = Vec3::new( -skeleton_attr.foot.0, skeleton_attr.foot.1, - skeleton_attr.foot.2 + breathe * -0.35, + skeleton_attr.foot.2 + breathe * -0.15, ); next.foot_l.orientation = Quaternion::rotation_z(0.0); next.foot_l.scale = Vec3::one() * 1.02; @@ -123,7 +123,7 @@ impl Animation for IdleAnimation { next.foot_r.position = Vec3::new( skeleton_attr.foot.0, skeleton_attr.foot.1, - skeleton_attr.foot.2 + breathe * -0.45, + skeleton_attr.foot.2 + breathe * -0.15, ); next.foot_r.orientation = Quaternion::rotation_z(0.0); next.foot_r.scale = Vec3::one() * 1.02; diff --git a/voxygen/src/anim/src/theropod/mod.rs b/voxygen/src/anim/src/theropod/mod.rs index d14642c740..24c1796f3b 100644 --- a/voxygen/src/anim/src/theropod/mod.rs +++ b/voxygen/src/anim/src/theropod/mod.rs @@ -116,43 +116,43 @@ impl<'a> From<&'a Body> for SkeletonAttr { Self { head: match (body.species, body.body_type) { (Archaeos, _) => (8.0, 4.0), - (Odontotyrannos, _) => (-2.5, 3.0), + (Odonto, _) => (-1.0, 5.0), }, jaw: match (body.species, body.body_type) { (Archaeos, _) => (1.0, -7.0), - (Odontotyrannos, _) => (1.0, -7.0), + (Odonto, _) => (2.0, -7.0), }, neck: match (body.species, body.body_type) { (Archaeos, _) => (4.5, -2.0), - (Odontotyrannos, _) => (4.5, -2.0), + (Odonto, _) => (4.5, -2.0), }, chest_front: match (body.species, body.body_type) { (Archaeos, _) => (0.0, 20.0), - (Odontotyrannos, _) => (0.0, 9.0), + (Odonto, _) => (0.0, 13.0), }, chest_back: match (body.species, body.body_type) { (Archaeos, _) => (-5.5, -1.0), - (Odontotyrannos, _) => (-5.0, 2.0), + (Odonto, _) => (-5.0, 2.0), }, tail_front: match (body.species, body.body_type) { (Archaeos, _) => (-9.0, -1.5), - (Odontotyrannos, _) => (-8.0, -1.0), + (Odonto, _) => (-7.0, -1.0), }, tail_back: match (body.species, body.body_type) { (Archaeos, _) => (-8.0, -0.5), - (Odontotyrannos, _) => (-12.0, -1.5), + (Odonto, _) => (-8.0, 0.5), }, hand: match (body.species, body.body_type) { (Archaeos, _) => (3.0, 0.0, -4.0), - (Odontotyrannos, _) => (3.5, 3.0, -4.0), + (Odonto, _) => (3.5, 3.0, -4.0), }, leg: match (body.species, body.body_type) { (Archaeos, _) => (4.5, -3.0, -4.0), - (Odontotyrannos, _) => (5.5, -2.5, -2.0), + (Odonto, _) => (5.5, -2.5, -4.0), }, foot: match (body.species, body.body_type) { (Archaeos, _) => (1.0, -0.5, -7.0), - (Odontotyrannos, _) => (-1.0, -6.5, -3.0), + (Odonto, _) => (2.0, -6.5, -3.0), }, } } diff --git a/voxygen/src/scene/figure/load.rs b/voxygen/src/scene/figure/load.rs index f541e79c1e..1d77fe0f0f 100644 --- a/voxygen/src/scene/figure/load.rs +++ b/voxygen/src/scene/figure/load.rs @@ -1916,11 +1916,7 @@ impl TheropodCentralSpec { (central, Vec3::from(spec.chest_back.offset)) } - fn mesh_tail_front( - &self, - species: TSpecies, - body_type: TBodyType, - ) -> BoneMeshes { + fn mesh_tail_front(&self, species: TSpecies, body_type: TBodyType) -> BoneMeshes { let spec = match self.0.get(&(species, body_type)) { Some(spec) => spec, None => { @@ -1936,11 +1932,7 @@ impl TheropodCentralSpec { (central, Vec3::from(spec.tail_front.offset)) } - fn mesh_tail_back( - &self, - species: TSpecies, - body_type: TBodyType, - ) -> BoneMeshes { + fn mesh_tail_back(&self, species: TSpecies, body_type: TBodyType) -> BoneMeshes { let spec = match self.0.get(&(species, body_type)) { Some(spec) => spec, None => { @@ -1957,11 +1949,7 @@ impl TheropodCentralSpec { } } impl TheropodLateralSpec { - fn mesh_hand_l( - &self, - species: TSpecies, - body_type: TBodyType, - ) -> BoneMeshes { + fn mesh_hand_l(&self, species: TSpecies, body_type: TBodyType) -> BoneMeshes { let spec = match self.0.get(&(species, body_type)) { Some(spec) => spec, None => { @@ -1977,11 +1965,7 @@ impl TheropodLateralSpec { (lateral, Vec3::from(spec.hand_l.offset)) } - fn mesh_hand_r( - &self, - species: TSpecies, - body_type: TBodyType, - ) -> BoneMeshes { + fn mesh_hand_r(&self, species: TSpecies, body_type: TBodyType) -> BoneMeshes { let spec = match self.0.get(&(species, body_type)) { Some(spec) => spec, None => { @@ -1997,11 +1981,7 @@ impl TheropodLateralSpec { (lateral, Vec3::from(spec.hand_r.offset)) } - fn mesh_leg_l( - &self, - species: TSpecies, - body_type: TBodyType, - ) -> BoneMeshes { + fn mesh_leg_l(&self, species: TSpecies, body_type: TBodyType) -> BoneMeshes { let spec = match self.0.get(&(species, body_type)) { Some(spec) => spec, None => { @@ -2017,11 +1997,7 @@ impl TheropodLateralSpec { (lateral, Vec3::from(spec.leg_l.offset)) } - fn mesh_leg_r( - &self, - species: TSpecies, - body_type: TBodyType, - ) -> BoneMeshes { + fn mesh_leg_r(&self, species: TSpecies, body_type: TBodyType) -> BoneMeshes { let spec = match self.0.get(&(species, body_type)) { Some(spec) => spec, None => { @@ -2037,11 +2013,7 @@ impl TheropodLateralSpec { (lateral, Vec3::from(spec.leg_r.offset)) } - fn mesh_foot_l( - &self, - species: TSpecies, - body_type: TBodyType, - ) -> BoneMeshes { + fn mesh_foot_l(&self, species: TSpecies, body_type: TBodyType) -> BoneMeshes { let spec = match self.0.get(&(species, body_type)) { Some(spec) => spec, None => { @@ -2057,11 +2029,7 @@ impl TheropodLateralSpec { (lateral, Vec3::from(spec.foot_l.offset)) } - fn mesh_foot_r( - &self, - species: TSpecies, - body_type: TBodyType, - ) -> BoneMeshes { + fn mesh_foot_r(&self, species: TSpecies, body_type: TBodyType) -> BoneMeshes { let spec = match self.0.get(&(species, body_type)) { Some(spec) => spec, None => { @@ -3103,11 +3071,7 @@ impl GolemCentralSpec { (central, Vec3::from(spec.torso_upper.offset)) } - pub fn mesh_torso_lower( - &self, - species: GSpecies, - body_type: GBodyType, - ) -> BoneMeshes { + pub fn mesh_torso_lower(&self, species: GSpecies, body_type: GBodyType) -> BoneMeshes { let spec = match self.0.get(&(species, body_type)) { Some(spec) => spec, None => { diff --git a/world/src/lib.rs b/world/src/lib.rs index e698f714e8..d7147bc736 100644 --- a/world/src/lib.rs +++ b/world/src/lib.rs @@ -35,7 +35,7 @@ use crate::{ util::{Grid, Sampler}, }; use common::{ - comp::{self, bird_medium, quadruped_low, quadruped_medium, quadruped_small, theropod}, + comp::{self, bird_medium, quadruped_low, quadruped_medium, quadruped_small}, generation::{ChunkSupplement, EntityInfo}, msg::server::WorldMapMsg, terrain::{Block, BlockKind, TerrainChunk, TerrainChunkMeta, TerrainChunkSize}, @@ -256,10 +256,6 @@ impl World { comp::Body::BirdMedium(bird_medium::Body::random()) }, 2 => { - is_hostile = true; - comp::Body::Theropod(theropod::Body::random()) - }, - 3 => { match quadlow { comp::Body::QuadrupedLow(quadruped_low) => { match quadruped_low.species { From ee4f57fc3c5138567502e5274c7a67da0e1da205 Mon Sep 17 00:00:00 2001 From: jshipsey Date: Thu, 17 Sep 2020 21:59:05 -0400 Subject: [PATCH 24/28] minor anim fix --- voxygen/src/anim/Cargo.toml | 2 +- voxygen/src/anim/src/quadruped_medium/run.rs | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/voxygen/src/anim/Cargo.toml b/voxygen/src/anim/Cargo.toml index 10869c6cc3..75bb0ecbe3 100644 --- a/voxygen/src/anim/Cargo.toml +++ b/voxygen/src/anim/Cargo.toml @@ -8,7 +8,7 @@ version = "0.7.0" name = "voxygen_anim" # Uncomment to use animation hot reloading # Note: this breaks `cargo test` -crate-type = ["lib", "cdylib"] +# crate-type = ["lib", "cdylib"] [features] be-dyn-lib = [] diff --git a/voxygen/src/anim/src/quadruped_medium/run.rs b/voxygen/src/anim/src/quadruped_medium/run.rs index 7a725af36a..b6e9473754 100644 --- a/voxygen/src/anim/src/quadruped_medium/run.rs +++ b/voxygen/src/anim/src/quadruped_medium/run.rs @@ -71,10 +71,10 @@ impl Animation for RunAnimation { .sin(); //1.9 //FR let foot2a = (anim_time as f32 * (16.0) * lab as f32 * speedmult + shift2).sin(); //1.2 - let foot2b = (anim_time as f32 * (16.0) * lab as f32 * speedmult + 1.57 + shift2).sin(); //1.6 + let foot2b = (anim_time as f32 * (16.0) * lab as f32 * speedmult + 1.1 + shift2).sin(); //1.6 //BL let foot3a = (anim_time as f32 * (16.0) * lab as f32 * speedmult + shift3).sin(); //0.0 - let foot3b = (anim_time as f32 * (16.0) * lab as f32 * speedmult + 1.57 + shift3).sin(); //0.4 + let foot3b = (anim_time as f32 * (16.0) * lab as f32 * speedmult + 1.1 + shift3).sin(); //0.4 //BR let foot4a = (anim_time as f32 * (16.0) * lab as f32 * speedmult + 0.0 + canceler * 0.05 + shift4) From 8433f37e9064b3f9242c6331cd97fe109379a70e Mon Sep 17 00:00:00 2001 From: jshipsey Date: Thu, 17 Sep 2020 22:18:29 -0400 Subject: [PATCH 25/28] finish odonto --- assets/voxygen/voxel/npc/odonto/male/neck.vox | Bin 0 -> 5624 bytes .../voxygen/voxel/theropod_central_manifest.ron | 8 ++++---- voxygen/src/anim/src/quadruped_medium/run.rs | 4 ++-- voxygen/src/anim/src/theropod/mod.rs | 4 ++-- 4 files changed, 8 insertions(+), 8 deletions(-) create mode 100644 assets/voxygen/voxel/npc/odonto/male/neck.vox diff --git a/assets/voxygen/voxel/npc/odonto/male/neck.vox b/assets/voxygen/voxel/npc/odonto/male/neck.vox new file mode 100644 index 0000000000000000000000000000000000000000..e102ce64ed1900249af6892edddad122dc0968da GIT binary patch literal 5624 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 QuM;Lr&~f9&X`BE54_+g(w*UYD literal 0 HcmV?d00001 diff --git a/assets/voxygen/voxel/theropod_central_manifest.ron b/assets/voxygen/voxel/theropod_central_manifest.ron index 01d2f7a1d5..07f30ec257 100644 --- a/assets/voxygen/voxel/theropod_central_manifest.ron +++ b/assets/voxygen/voxel/theropod_central_manifest.ron @@ -69,8 +69,8 @@ central: ("npc.odonto.male.jaw"), ), neck: ( - offset: (0.0, 0.0, 0.0), - central: ("armor.empty"), + offset: (-5.5, 0.0, -6.5), + central: ("npc.odonto.male.neck"), ), chest_front: ( offset: (-5.5, -5.0, -6.0), @@ -99,8 +99,8 @@ central: ("npc.odonto.male.jaw"), ), neck: ( - offset: (0.0, 0.0, 0.0), - central: ("armor.empty"), + offset: (-5.5, 0.0, -6.5), + central: ("npc.odonto.male.neck"), ), chest_front: ( offset: (-5.5, -5.0, -6.0), diff --git a/voxygen/src/anim/src/quadruped_medium/run.rs b/voxygen/src/anim/src/quadruped_medium/run.rs index b6e9473754..e4e4d2ca4a 100644 --- a/voxygen/src/anim/src/quadruped_medium/run.rs +++ b/voxygen/src/anim/src/quadruped_medium/run.rs @@ -67,14 +67,14 @@ impl Animation for RunAnimation { (anim_time as f32 * (16.0) * lab as f32 * speedmult + 0.0 + canceler * 0.05 + shift1) .sin(); //1.5 let foot1b = - (anim_time as f32 * (16.0) * lab as f32 * speedmult + 1.57 + canceler * 0.05 + shift1) + (anim_time as f32 * (16.0) * lab as f32 * speedmult + 1.1 + canceler * 0.05 + shift1) .sin(); //1.9 //FR let foot2a = (anim_time as f32 * (16.0) * lab as f32 * speedmult + shift2).sin(); //1.2 let foot2b = (anim_time as f32 * (16.0) * lab as f32 * speedmult + 1.1 + shift2).sin(); //1.6 //BL let foot3a = (anim_time as f32 * (16.0) * lab as f32 * speedmult + shift3).sin(); //0.0 - let foot3b = (anim_time as f32 * (16.0) * lab as f32 * speedmult + 1.1 + shift3).sin(); //0.4 + let foot3b = (anim_time as f32 * (16.0) * lab as f32 * speedmult + 1.57 + shift3).sin(); //0.4 //BR let foot4a = (anim_time as f32 * (16.0) * lab as f32 * speedmult + 0.0 + canceler * 0.05 + shift4) diff --git a/voxygen/src/anim/src/theropod/mod.rs b/voxygen/src/anim/src/theropod/mod.rs index 24c1796f3b..459661de77 100644 --- a/voxygen/src/anim/src/theropod/mod.rs +++ b/voxygen/src/anim/src/theropod/mod.rs @@ -116,7 +116,7 @@ impl<'a> From<&'a Body> for SkeletonAttr { Self { head: match (body.species, body.body_type) { (Archaeos, _) => (8.0, 4.0), - (Odonto, _) => (-1.0, 5.0), + (Odonto, _) => (6.0, 5.0), }, jaw: match (body.species, body.body_type) { (Archaeos, _) => (1.0, -7.0), @@ -124,7 +124,7 @@ impl<'a> From<&'a Body> for SkeletonAttr { }, neck: match (body.species, body.body_type) { (Archaeos, _) => (4.5, -2.0), - (Odonto, _) => (4.5, -2.0), + (Odonto, _) => (3.0, -3.0), }, chest_front: match (body.species, body.body_type) { (Archaeos, _) => (0.0, 20.0), From 58bca3636e1d3cb7b9fcf8f17ffa440af997368f Mon Sep 17 00:00:00 2001 From: jshipsey Date: Thu, 17 Sep 2020 22:41:40 -0400 Subject: [PATCH 26/28] rebase --- assets/common/items/armor/starter/glider.ron | 2 +- common/src/loadout_builder.rs | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/assets/common/items/armor/starter/glider.ron b/assets/common/items/armor/starter/glider.ron index 1fbc908b57..087f4b16b5 100644 --- a/assets/common/items/armor/starter/glider.ron +++ b/assets/common/items/armor/starter/glider.ron @@ -1,4 +1,4 @@ -Item( +ItemDef( name: "Swift Glider", description: "Thank goodness for big pockets", kind: Glider( diff --git a/common/src/loadout_builder.rs b/common/src/loadout_builder.rs index 6ce34b0e8e..24d41c39ab 100644 --- a/common/src/loadout_builder.rs +++ b/common/src/loadout_builder.rs @@ -55,7 +55,7 @@ impl LoadoutBuilder { .lantern(Some(Item::new_from_asset_expect( "common.items.armor.starter.lantern", ))) - .glider(Some(ItemAsset::load_expect_cloned( + .glider(Some(Item::new_from_asset_expect( "common.items.armor.starter.glider", ))) } From abc678695be7ff8ebc9c76b4029e6922e3b9c3a0 Mon Sep 17 00:00:00 2001 From: jshipsey Date: Thu, 17 Sep 2020 22:58:02 -0400 Subject: [PATCH 27/28] clippy --- common/src/comp/agent.rs | 4 +--- voxygen/src/anim/src/golem/shockwave.rs | 6 +++--- 2 files changed, 4 insertions(+), 6 deletions(-) diff --git a/common/src/comp/agent.rs b/common/src/comp/agent.rs index fbccf28c87..8deb64be8a 100644 --- a/common/src/comp/agent.rs +++ b/common/src/comp/agent.rs @@ -124,9 +124,7 @@ impl<'a> From<&'a Body> for Psyche { Body::BipedLarge(_) => 1.0, Body::Object(_) => 1.0, Body::Golem(_) => 1.0, - Body::Theropod(theropod) => match theropod.species { - _ => 0.4, - }, + Body::Theropod(_) => 1.0, Body::Dragon(_) => 1.0, }, } diff --git a/voxygen/src/anim/src/golem/shockwave.rs b/voxygen/src/anim/src/golem/shockwave.rs index 85731ebdf1..4268214e01 100644 --- a/voxygen/src/anim/src/golem/shockwave.rs +++ b/voxygen/src/anim/src/golem/shockwave.rs @@ -37,7 +37,7 @@ impl Animation for ShockwaveAnimation { + 1.0; next.head.position = Vec3::new(0.0, skeleton_attr.head.0, skeleton_attr.head.1) * 1.02; next.head.orientation = - Quaternion::rotation_z((-twist * 2.0).max(-3.14)) * Quaternion::rotation_x(0.0); + Quaternion::rotation_z((-twist * 2.0).max(-PI)) * Quaternion::rotation_x(0.0); next.head.scale = Vec3::one() * 1.02; next.upper_torso.position = Vec3::new( @@ -46,7 +46,7 @@ impl Animation for ShockwaveAnimation { skeleton_attr.upper_torso.1 + slower * -3.0 + breathe * 1.0, ) / 8.0; next.upper_torso.orientation = - Quaternion::rotation_z((twist * 2.0).min(3.14)) * Quaternion::rotation_x(0.0); + Quaternion::rotation_z((twist * 2.0).min(PI)) * Quaternion::rotation_x(0.0); next.upper_torso.scale = Vec3::one() / 8.0; next.lower_torso.position = Vec3::new( @@ -55,7 +55,7 @@ impl Animation for ShockwaveAnimation { skeleton_attr.lower_torso.1 + slower * 1.0, ); next.lower_torso.orientation = - Quaternion::rotation_z((-twist * 2.0).max(-3.14)) * Quaternion::rotation_x(0.0); + Quaternion::rotation_z((-twist * 2.0).max(-PI)) * Quaternion::rotation_x(0.0); next.lower_torso.scale = Vec3::one(); next.shoulder_l.position = Vec3::new( From 69f14b564d2ede17f656c0a4529a3fe04266e9de Mon Sep 17 00:00:00 2001 From: Snowram Date: Fri, 18 Sep 2020 18:45:03 +0200 Subject: [PATCH 28/28] Addresses comments --- common/src/comp/body/critter.rs | 99 ------------------- .../src/persistence/character/conversions.rs | 2 + .../audio/sfx/event_mapper/movement/mod.rs | 2 +- 3 files changed, 3 insertions(+), 100 deletions(-) delete mode 100644 common/src/comp/body/critter.rs diff --git a/common/src/comp/body/critter.rs b/common/src/comp/body/critter.rs deleted file mode 100644 index c3d0115693..0000000000 --- a/common/src/comp/body/critter.rs +++ /dev/null @@ -1,99 +0,0 @@ -use crate::{make_case_elim, make_proj_elim}; -use rand::{seq::SliceRandom, thread_rng}; -use serde::{Deserialize, Serialize}; - -make_proj_elim!( - body, - #[derive(Copy, Clone, Debug, PartialEq, Eq, Hash, Serialize, Deserialize)] - pub struct Body { - pub species: Species, - pub body_type: BodyType, - } -); - -impl Body { - pub fn random() -> Self { - let mut rng = thread_rng(); - let species = *(&ALL_SPECIES).choose(&mut rng).unwrap(); - Self::random_with(&mut rng, &species) - } - - #[inline] - pub fn random_with(rng: &mut impl rand::Rng, &species: &Species) -> Self { - let body_type = *(&ALL_BODY_TYPES).choose(rng).unwrap(); - Self { species, body_type } - } -} - -impl From for super::Body { - fn from(body: Body) -> Self { super::Body::Critter(body) } -} - -make_case_elim!( - species, - #[derive(Copy, Clone, Debug, PartialEq, Eq, Hash, Serialize, Deserialize)] - #[repr(u32)] - pub enum Species { - Rat = 0, - Axolotl = 1, - Gecko = 2, - Turtle = 3, - Squirrel = 4, - Fungome = 5, - } -); - -/// Data representing per-species generic data. -#[derive(Clone, Debug, Serialize, Deserialize)] -pub struct AllSpecies { - pub rat: SpeciesMeta, - pub axolotl: SpeciesMeta, - pub gecko: SpeciesMeta, - pub turtle: SpeciesMeta, - pub squirrel: SpeciesMeta, - pub fungome: SpeciesMeta, -} - -impl<'a, SpeciesMeta> core::ops::Index<&'a Species> for AllSpecies { - type Output = SpeciesMeta; - - #[inline] - fn index(&self, &index: &'a Species) -> &Self::Output { - match index { - Species::Rat => &self.rat, - Species::Axolotl => &self.axolotl, - Species::Gecko => &self.gecko, - Species::Turtle => &self.turtle, - Species::Squirrel => &self.squirrel, - Species::Fungome => &self.fungome, - } - } -} - -pub const ALL_SPECIES: [Species; 6] = [ - Species::Rat, - Species::Axolotl, - Species::Gecko, - Species::Turtle, - Species::Squirrel, - Species::Fungome, -]; - -impl<'a, SpeciesMeta: 'a> IntoIterator for &'a AllSpecies { - type IntoIter = std::iter::Copied>; - type Item = Species; - - fn into_iter(self) -> Self::IntoIter { ALL_SPECIES.iter().copied() } -} - -make_case_elim!( - body_type, - #[derive(Copy, Clone, Debug, PartialEq, Eq, Hash, Serialize, Deserialize)] - #[repr(u32)] - pub enum BodyType { - Female = 0, - Male = 1, - } -); - -pub const ALL_BODY_TYPES: [BodyType; 2] = [BodyType::Female, BodyType::Male]; diff --git a/server/src/persistence/character/conversions.rs b/server/src/persistence/character/conversions.rs index 310a3a79b6..fea9f8af05 100644 --- a/server/src/persistence/character/conversions.rs +++ b/server/src/persistence/character/conversions.rs @@ -43,6 +43,7 @@ pub fn convert_items_to_database_items( ("neck", loadout.neck.as_ref()), ("head", loadout.head.as_ref()), ("tabard", loadout.tabard.as_ref()), + ("glider", loadout.glider.as_ref()), ]; let loadout = loadout @@ -254,6 +255,7 @@ pub fn convert_loadout_from_database_items(database_items: &[Item]) -> Result loadout = loadout.neck(Some(item)), "head" => loadout = loadout.head(Some(item)), "tabard" => loadout = loadout.tabard(Some(item)), + "glider" => loadout = loadout.glider(Some(item)), _ => { return Err(Error::ConversionError(format!( "Unknown loadout position on item: {}", diff --git a/voxygen/src/audio/sfx/event_mapper/movement/mod.rs b/voxygen/src/audio/sfx/event_mapper/movement/mod.rs index f551987ebb..85c10f1a6d 100644 --- a/voxygen/src/audio/sfx/event_mapper/movement/mod.rs +++ b/voxygen/src/audio/sfx/event_mapper/movement/mod.rs @@ -75,7 +75,7 @@ impl EventMapper for MovementEventMapper { | Body::BirdMedium(_) | Body::BirdSmall(_) | Body::BipedLarge(_) => Self::map_non_humanoid_movement_event(physics, vel.0), - _ => SfxEvent::Idle, // Ignore fish, critters, etc... + _ => SfxEvent::Idle, // Ignore fish, etc... }; // Check for SFX config entry for this movement