Move HandleMovement in FixedUpdate
This commit is contained in:
parent
6802fc868e
commit
184e44f0e8
1 changed files with 5 additions and 1 deletions
|
@ -19,9 +19,13 @@ namespace src.Player
|
|||
Respawn();
|
||||
}
|
||||
|
||||
private void Update()
|
||||
private void FixedUpdate()
|
||||
{
|
||||
HandleMovement();
|
||||
}
|
||||
|
||||
private void Update()
|
||||
{
|
||||
HandleBomb();
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue