Skip to content

Latest commit

 

History

History
27 lines (19 loc) · 1.71 KB

known-issues.md

File metadata and controls

27 lines (19 loc) · 1.71 KB

Known Issues

My audio is stuttering on web

There are a number of issues with audio on web, so this is not an exhaustive list. The short version is that you can try the following:

My game window is flashing white for a split second when I start the game on native

The game window is created before the GPU is ready to render everything. This means that it will start with a white screen for a little bit. The workaround is to spawn the Window hidden and then make it visible after a few frames.

My character or camera is not moving smoothly

Choppy movement is often caused by movement updates being tied to the frame rate. See the physics_in_fixed_timestep example for how to fix this.

A camera not moving smoothly is pretty much always caused by the camera position being tied too tightly to the character's position. To give the camera some inertia, use the smooth_nudge to interpolate the camera position towards its target position.