From 132f4f2d2d1723cb687c7746bb423f3ef4f94190 Mon Sep 17 00:00:00 2001 From: Shtoyan Date: Thu, 20 Jan 2022 18:46:28 +0400 Subject: [PATCH] steves dont log spam about "jump" anim --- sources/Zeds/Nice/NiceZombieCrawlerBase.uc | 27 +++++++++++++++++----- 1 file changed, 21 insertions(+), 6 deletions(-) diff --git a/sources/Zeds/Nice/NiceZombieCrawlerBase.uc b/sources/Zeds/Nice/NiceZombieCrawlerBase.uc index 1b16d19..a56ead9 100644 --- a/sources/Zeds/Nice/NiceZombieCrawlerBase.uc +++ b/sources/Zeds/Nice/NiceZombieCrawlerBase.uc @@ -156,16 +156,31 @@ defaultproperties WalkAnims(1)="ZombieScuttleB" WalkAnims(2)="ZombieScuttleL" WalkAnims(3)="ZombieScuttleR" - AirAnims(0)="ZombieSpring" - AirAnims(1)="ZombieSpring" - AirAnims(2)="ZombieSpring" - AirAnims(3)="ZombieSpring" + // steves dont have "jump" animation + // https://github.com/poosh/KF-ScrnZedPack/blob/master/Classes/ZedBaseCrawler.uc + AirAnims(0)="ZombieLeapIdle" + AirAnims(1)="ZombieLeapIdle" + AirAnims(2)="ZombieLeapIdle" + AirAnims(3)="ZombieLeapIdle" TakeoffAnims(0)="ZombieSpring" TakeoffAnims(1)="ZombieSpring" TakeoffAnims(2)="ZombieSpring" TakeoffAnims(3)="ZombieSpring" - AirStillAnim="ZombieSpring" - TakeoffStillAnim="ZombieLeapIdle" + LandAnims(0)="Landed" + LandAnims(1)="Landed" + LandAnims(2)="Landed" + LandAnims(3)="Landed" + // these should not use but just in case + DoubleJumpAnims(0)="ZombieSpring" + DoubleJumpAnims(1)="ZombieSpring" + DoubleJumpAnims(2)="ZombieSpring" + DoubleJumpAnims(3)="ZombieSpring" + DodgeAnims(0)="ZombieSpring" + DodgeAnims(1)="ZombieSpring" + DodgeAnims(2)="ZombieSpring" + DodgeAnims(3)="ZombieSpring" + AirStillAnim="Jump2" + TakeoffStillAnim="ZombieSpring" IdleCrouchAnim="ZombieLeapIdle" IdleWeaponAnim="ZombieLeapIdle" IdleRestAnim="ZombieLeapIdle"