提交 2a0264d2 编写于 作者: M Mr.doob

CSS3DObject now notifies its children of removal.

Maybe the event name could be removed_from_scene instead...
上级 3f580a58
......@@ -14,12 +14,18 @@ THREE.CSS3DObject = function ( element ) {
this.element.style.oTransformStyle = 'preserve-3d';
this.element.style.transformStyle = 'preserve-3d';
this.addEventListener( 'removed', function () {
this.addEventListener( 'removed', function ( event ) {
if ( this.element.parentNode !== null ) {
this.element.parentNode.removeChild( this.element );
for ( var i = 0, l = this.children.length; i < l; i ++ ) {
this.children[ i ].dispatchEvent( event );
}
}
} );
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册