提交 cba818fa 编写于 作者: M Mugen87

Editor: Prevent runtime erros when deleting objects.

上级 eb4ef8dd
......@@ -118,10 +118,11 @@ var MenubarEdit = function ( editor ) {
var object = editor.selected;
var parent = object.parent;
if ( parent === undefined ) return; // avoid deleting the camera or scene
if ( object !== null && object.parent !== null ) {
editor.execute( new RemoveObjectCommand( editor, object ) );
editor.execute( new RemoveObjectCommand( editor, object ) );
}
} );
options.add( option );
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册