You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Currently the confetti renders based on the frame, instead of keeping track of delta time. This means that the speed of the simulation is dependent on the frame rate of requestAnimationFrame, which is usually 60fps in modern browsers, but can vary between operating systems and is throttled depending on available system resources. The confetti should use the timestamp passed into the requestAnimationFrame function to determine where it should be.
The text was updated successfully, but these errors were encountered:
Currently the confetti renders based on the frame, instead of keeping track of delta time. This means that the speed of the simulation is dependent on the frame rate of
requestAnimationFrame
, which is usually 60fps in modern browsers, but can vary between operating systems and is throttled depending on available system resources. The confetti should use the timestamp passed into therequestAnimationFrame
function to determine where it should be.The text was updated successfully, but these errors were encountered: