You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
67 lines
982 B
67 lines
982 B
import { Command } from '../Command.js';
|
|
import { ObjectLoader } from 'three';
|
|
|
|
/**
|
|
* @param editor Editor
|
|
* @param object THREE.Object3D
|
|
* @constructor
|
|
*/
|
|
class AddObjectCommand extends Command {
|
|
|
|
constructor( editor, object ) {
|
|
|
|
super( editor );
|
|
|
|
this.type = 'AddObjectCommand';
|
|
|
|
this.object = object;
|
|
if ( object !== undefined ) {
|
|
|
|
this.name = `Add Object: ${object.name}`;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
execute() {
|
|
|
|
this.editor.addObject( this.object );
|
|
this.editor.select( this.object );
|
|
|
|
}
|
|
|
|
undo() {
|
|
|
|
this.editor.removeObject( this.object );
|
|
this.editor.deselect();
|
|
|
|
}
|
|
|
|
toJSON() {
|
|
|
|
const output = super.toJSON( this );
|
|
|
|
output.object = this.object.toJSON();
|
|
|
|
return output;
|
|
|
|
}
|
|
|
|
fromJSON( json ) {
|
|
|
|
super.fromJSON( json );
|
|
|
|
this.object = this.editor.objectByUuid( json.object.object.uuid );
|
|
|
|
if ( this.object === undefined ) {
|
|
|
|
const loader = new ObjectLoader();
|
|
this.object = loader.parse( json.object );
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
export { AddObjectCommand };
|
|
|