Files
2022-12-29 14:40:06 +02:00

14 lines
347 B
C#

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