无法克隆BoxHelper

时间:2015-12-18 22:40:22

标签: three.js

在版本r71中,我可以克隆BoxHelper网格。 当我升级到r72或r73时,无论何时我尝试克隆BoxHelper或包含BoxHelper的任何对象,我都会遇到以下异常:

Uncaught TypeError: object.updateMatrixWorld is not a function

您可以通过对" webgl_helpers.html"中的示例代码进行以下更改来复制此操作。

更改第73行:

scene.add( new THREE.BoxHelper( mesh ) );

要:

var helper = new THREE.BoxHelper( mesh );
var helper1 = helper.clone();
scene.add( helper1 );

有解决方法吗?

0 个答案:

没有答案