提交 32f71030 编写于 作者: M Mr.doob

Merge branch 'dev' of https://github.com/Fox32/three.js into dev

var window = window || {};
var self = self || {};
// High-resulution counter: emulate window.performance.now() for THREE.CLOCK
if( window.performance === undefined ) {
window.performance = { };
}
if( window.performance.now === undefined ) {
window.performance.now = function () {
var time = process.hrtime();
return ( time[0] + time[1] / 1e9 ) * 1000;
};
}
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册