From 308045cfc9a9c5a233b1acff41c08839360f3156 Mon Sep 17 00:00:00 2001 From: jshipsey Date: Mon, 1 Mar 2021 17:37:47 -0500 Subject: [PATCH] final asset corrections, fix glider anim --- .../armor/{twigflowers => twigsflowers}/belt.ron | 0 .../armor/{twigflowers => twigsflowers}/chest.ron | 0 .../armor/{twigflowers => twigsflowers}/foot.ron | 0 .../armor/{twigflowers => twigsflowers}/hand.ron | 0 .../armor/{twigflowers => twigsflowers}/pants.ron | 0 .../armor/{twigflowers => twigsflowers}/shoulder.ron | 0 assets/voxygen/item_image_manifest.ron | 8 ++++---- assets/voxygen/voxel/armor/cultist/shoulder.vox | 3 +++ .../pants/{grayscale_pants.vox => grayscale.vox} | 0 .../2021-03-01-053817_armor-reorganization/up.sql | 12 ++++++------ voxygen/anim/src/character/gliding.rs | 10 ++++++---- voxygen/anim/src/character/jump.rs | 2 +- voxygen/anim/src/character/stand.rs | 4 ++-- 13 files changed, 22 insertions(+), 17 deletions(-) rename assets/common/items/armor/{twigflowers => twigsflowers}/belt.ron (100%) rename assets/common/items/armor/{twigflowers => twigsflowers}/chest.ron (100%) rename assets/common/items/armor/{twigflowers => twigsflowers}/foot.ron (100%) rename assets/common/items/armor/{twigflowers => twigsflowers}/hand.ron (100%) rename assets/common/items/armor/{twigflowers => twigsflowers}/pants.ron (100%) rename assets/common/items/armor/{twigflowers => twigsflowers}/shoulder.ron (100%) create mode 100644 assets/voxygen/voxel/armor/cultist/shoulder.vox rename assets/voxygen/voxel/armor/misc/pants/{grayscale_pants.vox => grayscale.vox} (100%) diff --git a/assets/common/items/armor/twigflowers/belt.ron b/assets/common/items/armor/twigsflowers/belt.ron similarity index 100% rename from assets/common/items/armor/twigflowers/belt.ron rename to assets/common/items/armor/twigsflowers/belt.ron diff --git a/assets/common/items/armor/twigflowers/chest.ron b/assets/common/items/armor/twigsflowers/chest.ron similarity index 100% rename from assets/common/items/armor/twigflowers/chest.ron rename to assets/common/items/armor/twigsflowers/chest.ron diff --git a/assets/common/items/armor/twigflowers/foot.ron b/assets/common/items/armor/twigsflowers/foot.ron similarity index 100% rename from assets/common/items/armor/twigflowers/foot.ron rename to assets/common/items/armor/twigsflowers/foot.ron diff --git a/assets/common/items/armor/twigflowers/hand.ron b/assets/common/items/armor/twigsflowers/hand.ron similarity index 100% rename from assets/common/items/armor/twigflowers/hand.ron rename to assets/common/items/armor/twigsflowers/hand.ron diff --git a/assets/common/items/armor/twigflowers/pants.ron b/assets/common/items/armor/twigsflowers/pants.ron similarity index 100% rename from assets/common/items/armor/twigflowers/pants.ron rename to assets/common/items/armor/twigsflowers/pants.ron diff --git a/assets/common/items/armor/twigflowers/shoulder.ron b/assets/common/items/armor/twigsflowers/shoulder.ron similarity index 100% rename from assets/common/items/armor/twigflowers/shoulder.ron rename to assets/common/items/armor/twigsflowers/shoulder.ron diff --git a/assets/voxygen/item_image_manifest.ron b/assets/voxygen/item_image_manifest.ron index cb65368e4c..256e70decb 100644 --- a/assets/voxygen/item_image_manifest.ron +++ b/assets/voxygen/item_image_manifest.ron @@ -1259,7 +1259,7 @@ ), //Leather Armor Armor(Shoulder("Leather")): VoxTrans( - "voxel.armor.shoulder.leather_right-1", + "voxel.armor.leather.shoulder", (0.0, 0.0, 0.0), (-90.0, 130.0, 0.0), 1.2, ), //Agile Armor @@ -1425,7 +1425,7 @@ (0.0, -1.0, 0.0), (-90.0, 135.0, 0.0), 1.0, ), Armor(Shoulder("Twigs")): VoxTrans( - "voxel.armor.twigs.shoulders", + "voxel.armor.twigs.shoulder", (0.0, 0.0, 0.0), (-90.0, 130.0, 0.0), 1.2, ), //TwigsLeaves Set @@ -1467,7 +1467,7 @@ (0.0, 0.0, 0.0), (-90.0, 180.0, 0.0), 1.4, ), Armor(Foot("TwigsFlowers")): VoxTrans( - "voxel.armor.fotwigsflowersot.foot", + "voxel.armor.twigsflowers.foot", (0.0, 0.0, 0.0), (-95.0, 140.0, 0.0), 1.1, ), Armor(Hand("TwigsFlowers")): VoxTrans( @@ -1609,7 +1609,7 @@ (0.0, -2.0, 0.0), (-90.0, 180.0, 0.0), 1.0, ), Armor(Back("Backpack")): VoxTrans( - "voxel.armor.misc.backpack", + "voxel.armor.misc.back.backpack", (0.0, 0.0, 0.0), (-90.0, 0.0, 0.0), 1.0, ), Armor(Back("BackpackBlue")): VoxTrans( diff --git a/assets/voxygen/voxel/armor/cultist/shoulder.vox b/assets/voxygen/voxel/armor/cultist/shoulder.vox new file mode 100644 index 0000000000..3b379f41ea --- /dev/null +++ b/assets/voxygen/voxel/armor/cultist/shoulder.vox @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4bc9b9f841bb61199dc69e3ca52c83a38cab00b36e5a4fa7eaae33312b26383d +size 1388 diff --git a/assets/voxygen/voxel/armor/misc/pants/grayscale_pants.vox b/assets/voxygen/voxel/armor/misc/pants/grayscale.vox similarity index 100% rename from assets/voxygen/voxel/armor/misc/pants/grayscale_pants.vox rename to assets/voxygen/voxel/armor/misc/pants/grayscale.vox diff --git a/server/src/migrations/2021-03-01-053817_armor-reorganization/up.sql b/server/src/migrations/2021-03-01-053817_armor-reorganization/up.sql index d829868d03..9394ceb4c1 100644 --- a/server/src/migrations/2021-03-01-053817_armor-reorganization/up.sql +++ b/server/src/migrations/2021-03-01-053817_armor-reorganization/up.sql @@ -47,7 +47,7 @@ SET item_definition_id = 'common.items.armor.tarasque.belt' WHERE item_definitio UPDATE item SET item_definition_id = 'common.items.armor.twigs.belt' WHERE item_definition_id = 'common.items.armor.belt.twig'; UPDATE item -SET item_definition_id = 'common.items.armor.twigflowers.belt' WHERE item_definition_id = 'common.items.armor.belt.twigsflowers'; +SET item_definition_id = 'common.items.armor.twigsflowers.belt' WHERE item_definition_id = 'common.items.armor.belt.twigsflowers'; UPDATE item SET item_definition_id = 'common.items.armor.twigsleaves.belt' WHERE item_definition_id = 'common.items.armor.belt.twigsleaves'; UPDATE item @@ -91,7 +91,7 @@ SET item_definition_id = 'common.items.armor.tarasque.chest' WHERE item_definiti UPDATE item SET item_definition_id = 'common.items.armor.twigs.chest' WHERE item_definition_id = 'common.items.armor.chest.twig'; UPDATE item -SET item_definition_id = 'common.items.armor.twigflowers.chest' WHERE item_definition_id = 'common.items.armor.chest.twigsflowers'; +SET item_definition_id = 'common.items.armor.twigsflowers.chest' WHERE item_definition_id = 'common.items.armor.chest.twigsflowers'; UPDATE item SET item_definition_id = 'common.items.armor.twigsleaves.chest' WHERE item_definition_id = 'common.items.armor.chest.twigsleaves'; UPDATE item @@ -155,7 +155,7 @@ SET item_definition_id = 'common.items.armor.tarasque.foot' WHERE item_definitio UPDATE item SET item_definition_id = 'common.items.armor.twigs.foot' WHERE item_definition_id = 'common.items.armor.foot.twig'; UPDATE item -SET item_definition_id = 'common.items.armor.twigflowers.foot' WHERE item_definition_id = 'common.items.armor.foot.twigsflowers'; +SET item_definition_id = 'common.items.armor.twigsflowers.foot' WHERE item_definition_id = 'common.items.armor.foot.twigsflowers'; UPDATE item SET item_definition_id = 'common.items.armor.twigsleaves.foot' WHERE item_definition_id = 'common.items.armor.foot.twigsleaves'; UPDATE item @@ -197,7 +197,7 @@ SET item_definition_id = 'common.items.armor.tarasque.hand' WHERE item_definitio UPDATE item SET item_definition_id = 'common.items.armor.twigs.hand' WHERE item_definition_id = 'common.items.armor.hand.twig'; UPDATE item -SET item_definition_id = 'common.items.armor.twigflowers.hand' WHERE item_definition_id = 'common.items.armor.hand.twigsflowers'; +SET item_definition_id = 'common.items.armor.twigsflowers.hand' WHERE item_definition_id = 'common.items.armor.hand.twigsflowers'; UPDATE item SET item_definition_id = 'common.items.armor.twigsleaves.hand' WHERE item_definition_id = 'common.items.armor.hand.twigsleaves'; UPDATE item @@ -257,7 +257,7 @@ SET item_definition_id = 'common.items.armor.tarasque.pants' WHERE item_definiti UPDATE item SET item_definition_id = 'common.items.armor.twigs.pants' WHERE item_definition_id = 'common.items.armor.pants.twig'; UPDATE item -SET item_definition_id = 'common.items.armor.twigflowers.pants' WHERE item_definition_id = 'common.items.armor.pants.twigsflowers'; +SET item_definition_id = 'common.items.armor.twigsflowers.pants' WHERE item_definition_id = 'common.items.armor.pants.twigsflowers'; UPDATE item SET item_definition_id = 'common.items.armor.twigsleaves.pants' WHERE item_definition_id = 'common.items.armor.pants.twigsleaves'; UPDATE item @@ -323,7 +323,7 @@ SET item_definition_id = 'common.items.armor.tarasque.shoulder' WHERE item_defin UPDATE item SET item_definition_id = 'common.items.armor.twigs.shoulder' WHERE item_definition_id = 'common.items.armor.shoulder.twigs'; UPDATE item -SET item_definition_id = 'common.items.armor.twigflowers.shoulder' WHERE item_definition_id = 'common.items.armor.shoulder.twigsflowers'; +SET item_definition_id = 'common.items.armor.twigsflowers.shoulder' WHERE item_definition_id = 'common.items.armor.shoulder.twigsflowers'; UPDATE item SET item_definition_id = 'common.items.armor.twigsleaves.shoulder' WHERE item_definition_id = 'common.items.armor.shoulder.twigsleaves'; UPDATE item diff --git a/voxygen/anim/src/character/gliding.rs b/voxygen/anim/src/character/gliding.rs index 5eb7900bbf..68276ad03a 100644 --- a/voxygen/anim/src/character/gliding.rs +++ b/voxygen/anim/src/character/gliding.rs @@ -44,8 +44,8 @@ impl Animation for GlidingAnimation { let slowa = (anim_time * 3.0 + PI / 2.0).sin(); let head_look = Vec2::new( - (global_time + anim_time / 4.0).floor().mul(7331.0).sin() * 0.5, - (global_time + anim_time / 4.0).floor().mul(1337.0).sin() * 0.25, + ((global_time + anim_time) / 5.0).floor().mul(7331.0).sin() * 0.5, + ((global_time + anim_time) / 5.0).floor().mul(1337.0).sin() * 0.25, ); let ori: Vec2 = Vec2::from(orientation); @@ -71,8 +71,10 @@ impl Animation for GlidingAnimation { next.chest.orientation = Quaternion::rotation_z(slowa * 0.02); next.belt.orientation = Quaternion::rotation_z(slowa * 0.1 + tilt * tiltcancel * 12.0); + next.belt.position = Vec3::new(0.0, s_a.belt.0, s_a.belt.1); next.shorts.orientation = Quaternion::rotation_z(slowa * 0.12 + tilt * tiltcancel * 16.0); + next.shorts.position = Vec3::new(0.0, s_a.shorts.0, s_a.shorts.1); next.hand_l.position = Vec3::new(-9.5, -3.0, 10.0); next.hand_l.orientation = @@ -105,8 +107,8 @@ impl Animation for GlidingAnimation { Quaternion::rotation_x(0.8) * Quaternion::rotation_y(slowa * 0.04); next.glider.scale = Vec3::one(); - next.torso.position = Vec3::new(0.0, -4.0, 10.0) / 11.0 * s_a.scaler; - next.torso.orientation = Quaternion::rotation_x(-0.06 * speed.max(12.0) + slow * 0.04) + next.torso.position = Vec3::new(0.0, -1.0, 0.0) / 11.0 * s_a.scaler; + next.torso.orientation = Quaternion::rotation_x(-0.03 * speed.max(12.0) + slow * 0.04) * Quaternion::rotation_y(tilt * tiltcancel * 32.0); next diff --git a/voxygen/anim/src/character/jump.rs b/voxygen/anim/src/character/jump.rs index e606262f10..fae86e1af7 100644 --- a/voxygen/anim/src/character/jump.rs +++ b/voxygen/anim/src/character/jump.rs @@ -43,7 +43,7 @@ impl Animation for JumpAnimation { let switch = if random > 0.5 { 1.0 } else { -1.0 }; let speed = Vec2::::from(velocity).magnitude(); - let speednorm = speed / 10.0; + let speednorm = (speed / 10.0).min(1.0); let ori: Vec2 = Vec2::from(orientation); let last_ori = Vec2::from(last_ori); diff --git a/voxygen/anim/src/character/stand.rs b/voxygen/anim/src/character/stand.rs index 0cb8c118ad..30e4e2407d 100644 --- a/voxygen/anim/src/character/stand.rs +++ b/voxygen/anim/src/character/stand.rs @@ -34,8 +34,8 @@ impl Animation for StandAnimation { let slow = (anim_time * 1.0).sin(); let impact = (avg_vel.z).max(-15.0); let head_look = Vec2::new( - (global_time + anim_time / 12.0).floor().mul(7331.0).sin() * 0.3, - (global_time + anim_time / 12.0).floor().mul(1337.0).sin() * 0.15, + ((global_time + anim_time) / 10.0).floor().mul(7331.0).sin() * 0.15, + ((global_time + anim_time) / 10.0).floor().mul(1337.0).sin() * 0.07, ); next.head.scale = Vec3::one() * s_a.head_scale; next.chest.scale = Vec3::one() * 1.01;