File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1+ /**
2+ * Provides requestAnimationFrame in a cross browser way.
3+ * http://paulirish.com/2011/requestanimationframe-for-smart-animating/
4+ */
5+
6+ if ( ! window . requestAnimationFrame ) {
7+
8+ window . requestAnimationFrame = ( function ( ) {
9+
10+ return window . webkitRequestAnimationFrame ||
11+ window . mozRequestAnimationFrame ||
12+ window . oRequestAnimationFrame ||
13+ window . msRequestAnimationFrame ||
14+ function ( /* function FrameRequestCallback */ callback , /* DOMElement Element */ element ) {
15+
16+ window . setTimeout ( callback , 1000 / 60 ) ;
17+
18+ } ;
19+
20+ } ) ( ) ;
21+
22+ }
Original file line number Diff line number Diff line change 1111 }
1212 </ script >
1313 < script src ="Three.js "> </ script >
14- < script src ="extras/io/JSONLoader.js "> </ script >
15- < script src ="examples/js/RequestAnimationFrame.js "> </ script >
14+ < script src ="RequestAnimationFrame.js "> </ script >
1615 < script src ="ThreeJsViewer.js "> </ script >
1716 < script >
1817 $ ( document ) . ready ( function ( ) {
You can’t perform that action at this time.
0 commit comments