AxlLind / Strive

Infinite jumper mobile game created in Unity.
6 stars 1 forks source link

Moving platform speed scales with FPS #75

Closed Jontpan closed 7 years ago

Jontpan commented 7 years ago

The speed by which the moving platforms move is done in Update() which means it varies depending on your FPS.

Could either be moved to fixedUpdate() but be explored that option earlier and it made the movement look jagged. Should probably be scaled with time.DeltaTime().

AxlLind commented 7 years ago

Fixed in #79