当我处理重型模型时,我试图在加载 JSON 时动态显示加载百分比,所以我使用loadAjaxJSON 方法进行了粗略测试......
以下加载返回加载期间的百分比,但永远不会到达回调函数。
是由于缺少声明、错误的上下文参数还是其他原因?我找不到关于那个的文档。
var loader = new THREE.JSONLoader( true );
loader.loadAjaxJSON(
document, // < context ??
'try.js',
function ( geometry, materials ) { CreateScene( geometry, materials ); },
false, // < texturePath
function( progress, result ) { console.log((progress.loaded / progress.total * 100).toFixed());}
)
安慰 :
7 13 20 .. 100
TypeError: a.parse is not a function [three.min.js (ligne 204)]