Increase player speed

This commit is contained in:
Daniel Lynn 2021-07-17 02:19:02 -05:00
parent 9e16c22eb5
commit e816846d19
Signed by: daniel
GPG Key ID: 28496A140E180A9D

View File

@ -74,8 +74,8 @@ pub fn player_movement(
let translation = &mut transform.translation;
let delta_seconds = time.delta_seconds();
translation.x += delta_seconds * direction.x * 100.0;
translation.y += delta_seconds * direction.y * 100.0;
translation.x += delta_seconds * direction.x * 300.0;
translation.y += delta_seconds * direction.y * 300.0;
}
}