From 7c26f92d79b7d13d0aa9bcb425a1f76802a1ee44 Mon Sep 17 00:00:00 2001 From: Paul Date: Wed, 2 May 2001 18:20:49 +0000 Subject: [PATCH] --- source/player/psidle.cpp | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/source/player/psidle.cpp b/source/player/psidle.cpp index 6647cf347..532381c21 100644 --- a/source/player/psidle.cpp +++ b/source/player/psidle.cpp @@ -257,9 +257,9 @@ void CPlayerStateIdle::setNextIdleAnim(CPlayerModeBase *_playerMode) static IdleAnims s_unarmedIdleAnims[]= { // start frame loop frame end frame loop count - { -1, ANIM_SPONGEBOB_IDLEBREATH, -1, 100 }, // default - { -1, ANIM_SPONGEBOB_IDLEBREATH, -1, 75 }, - { -1, ANIM_SPONGEBOB_IDLEBREATH, -1, 50 }, + { -1, ANIM_SPONGEBOB_IDLEBREATH, -1, 10 }, // default + { -1, ANIM_SPONGEBOB_IDLEBREATH, -1, 7 }, + { -1, ANIM_SPONGEBOB_IDLEBREATH, -1, 5 }, { -1, ANIM_SPONGEBOB_IDLEWIND, -1, 1 }, }; @@ -284,9 +284,9 @@ int CPlayerStateUnarmedIdle::getNumIdleAnims() static IdleAnims s_weaponIdleAnims[]= { // start frame loop frame end frame loop count - { -1, ANIM_SPONGEBOB_IDLEBREATH, -1, 100 }, // default - { -1, ANIM_SPONGEBOB_IDLEBREATH, -1, 75 }, - { -1, ANIM_SPONGEBOB_IDLEBREATH, -1, 50 }, + { -1, ANIM_SPONGEBOB_IDLEBREATH, -1, 10 }, // default + { -1, ANIM_SPONGEBOB_IDLEBREATH, -1, 7 }, + { -1, ANIM_SPONGEBOB_IDLEBREATH, -1, 5 }, { -1, ANIM_SPONGEBOB_IDLEWEAPON, -1, 1 }, }; static int s_numWeaponIdleAnims=sizeof(s_weaponIdleAnims)/sizeof(IdleAnims);