未验证 提交 5d89895f 编写于 作者: M Michael Herzog 提交者: GitHub

Merge pull request #18179 from Mugen87/dev29

GLTFLoader: Improve logging in computeBounds().
......@@ -2305,6 +2305,8 @@ THREE.GLTFLoader = ( function () {
} else {
console.warn( 'THREE.GLTFLoader: Missing min/max properties for accessor POSITION.' );
return;
}
......@@ -2342,6 +2344,10 @@ THREE.GLTFLoader = ( function () {
box.expandByVector( vector );
} else {
console.warn( 'THREE.GLTFLoader: Missing min/max properties for accessor POSITION.' );
}
}
......
......@@ -2372,6 +2372,8 @@ var GLTFLoader = ( function () {
} else {
console.warn( 'THREE.GLTFLoader: Missing min/max properties for accessor POSITION.' );
return;
}
......@@ -2409,6 +2411,10 @@ var GLTFLoader = ( function () {
box.expandByVector( vector );
} else {
console.warn( 'THREE.GLTFLoader: Missing min/max properties for accessor POSITION.' );
}
}
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册