12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788 |
- import { Command } from '../Command.js';
- import { ObjectLoader } from 'three';
- /**
- * @param editor Editor
- * @param object THREE.Object3D
- * @constructor
- */
- class RemoveObjectCommand extends Command {
- constructor( editor, object = null ) {
- super( editor );
- this.type = 'RemoveObjectCommand';
- this.object = object;
- this.parent = ( object !== null ) ? object.parent : null;
- if ( this.parent !== null ) {
- this.index = this.parent.children.indexOf( this.object );
- }
- if ( object !== null ) {
- this.name = editor.strings.getKey( 'command/RemoveObject' ) + ': ' + object.name;
- }
- }
- execute() {
- this.editor.removeObject( this.object );
- this.editor.deselect();
- }
- undo() {
- this.editor.addObject( this.object, this.parent, this.index );
- this.editor.select( this.object );
- }
- toJSON() {
- const output = super.toJSON( this );
- output.object = this.object.toJSON();
- output.index = this.index;
- output.parentUuid = this.parent.uuid;
- return output;
- }
- fromJSON( json ) {
- super.fromJSON( json );
- this.parent = this.editor.objectByUuid( json.parentUuid );
- if ( this.parent === undefined ) {
- this.parent = this.editor.scene;
- }
- this.index = json.index;
- this.object = this.editor.objectByUuid( json.object.object.uuid );
- if ( this.object === undefined ) {
- const loader = new ObjectLoader();
- this.object = loader.parse( json.object );
- }
- }
- }
- export { RemoveObjectCommand };
|