You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

71 lines
1.2 KiB
JavaScript

import { Command } from '../Command.js';
class SetUuidCommand extends Command {
/**
* @param {Editor} editor
* @param {THREE.Object3D|null} object
* @param {string|null} newUuid
* @constructor
*/
constructor( editor, object = null, newUuid = null ) {
super( editor );
this.type = 'SetUuidCommand';
this.name = editor.strings.getKey( 'command/SetUuid' );
this.object = object;
this.oldUuid = ( object !== null ) ? object.uuid : null;
this.newUuid = newUuid;
}
execute() {
this.object.uuid = this.newUuid;
this.editor.signals.objectChanged.dispatch( this.object );
this.editor.signals.sceneGraphChanged.dispatch();
}
undo() {
this.object.uuid = this.oldUuid;
this.editor.signals.objectChanged.dispatch( this.object );
this.editor.signals.sceneGraphChanged.dispatch();
}
toJSON() {
const output = super.toJSON( this );
output.oldUuid = this.oldUuid;
output.newUuid = this.newUuid;
return output;
}
fromJSON( json ) {
super.fromJSON( json );
this.oldUuid = json.oldUuid;
this.newUuid = json.newUuid;
this.object = this.editor.objectByUuid( json.oldUuid );
if ( this.object === undefined ) {
this.object = this.editor.objectByUuid( json.newUuid );
}
}
}
export { SetUuidCommand };