hatfield-c / hop

Repository for "HopTo" game
0 stars 0 forks source link

[HOP-27] Hopper rotation needs to be done in fixed update #27

Closed hatfield-c closed 3 years ago

hatfield-c commented 3 years ago

Currently, controls for the hopper are being done in update, to ensure that user input is adequately captured.

However, this presents an issue for physics, as physics operations should only be done in fixed update,

Create a queue system so that input is polled on an update, but acted upon in the fixed update.

hatfield-c commented 3 years ago

This issue is now complete.