File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -1903,7 +1903,7 @@ var GX = new function() {
19031903 // calculate the number of seconds since the gravity started being applied
19041904 var t = ( GX . frame ( ) - _entities [ eid - 1 ] . jumpstart ) / GX . frameRate ( ) ;
19051905 // adjust the y velocity for gravity
1906- var g = _gravity * t ** 2 / 2 ;
1906+ var g = _gravity * t ** 2 / 2 * ( 60 / GX . frameRate ( ) ) ;
19071907 if ( g < 1 ) { g = 1 ; }
19081908 _entities [ eid - 1 ] . vy = GX . entityVY ( eid ) + g ;
19091909 if ( GX . entityVY ( eid ) > _terminal_velocity ) { GX . entityVY ( eid , _terminal_velocity ) ; }
Original file line number Diff line number Diff line change 1414// Names of the two caches used in this version of the service worker.
1515// Change to v2, etc. when you update any of the local resources, which will
1616// in turn trigger the install event again.
17- const PRECACHE = 'precache-v65 ' ;
18- const RUNTIME = 'runtime-v6 ' ;
17+ const PRECACHE = 'precache-v66 ' ;
18+ const RUNTIME = 'runtime-v7 ' ;
1919const PREFIX = ( self . location . origin . indexOf ( "github.io" ) == - 1 ) ? "/" : "/qbjs/" ;
2020
2121// A list of local resources we always want to be cached.
You can’t perform that action at this time.
0 commit comments