Skip to content

Instantly share code, notes, and snippets.

View geoffb's full-sized avatar
🕹️
Making games!

Geoff Blair geoffb

🕹️
Making games!
View GitHub Profile
@mrdoob
mrdoob / gist:5245098
Created March 26, 2013 12:45
Avoiding huge delta times when switching tabs.
// firefox
document.addEventListener( 'visibilitychange', function ( event ) {
if ( document.hidden === false ) {
lastTime = performance.now();
}