- Editado
Hello, I would like to ask if I increase the TimeScale speed of the Animation, how can I increase the animation end time, I wrote the following code but it doesn't work properly, it just increases the speed. start of that animation, but the animation end time is still at default 1.
void AttackNormal2()
{
if(isAttackNormal2) return;
isAttackNormal2 = true;
trackEntryAttack1 = animationState.SetAnimation(0, PlayerAttackNormal1, false);
trackEntryAttack1.TimeScale = TimerAttackNormal1;
float newEndTime = trackEntryAttack1.AnimationEnd / TimerAttackNormal1;
trackEntryAttack1.AnimationEnd = newEndTime;
}