Files
2023-01-09 18:16:00 +02:00

14 lines
348 B
C#

public class ThrowState : State
{
public override void UpdateLogic(PlayerNetwork player)
{
if (!player.enter)
{
player.enter = true;
player.animationFrames = 0;
player.player.StopShakeCoroutine();
}
player.animation = "Knockdown";
player.animationFrames++;
}
}