1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586 |
- import { Command } from '../Command.js';
- /**
- * @param editor Editor
- * @param object THREE.Object3D
- * @param attributeName string
- * @param newValue integer representing a hex color value
- * @constructor
- */
- class SetMaterialColorCommand extends Command {
- constructor( editor, object = null, attributeName = '', newValue = null, materialSlot = - 1 ) {
- super( editor );
- this.type = 'SetMaterialColorCommand';
- this.name = editor.strings.getKey( 'command/SetMaterialColor' ) + ': ' + attributeName;
- this.updatable = true;
- this.object = object;
- this.materialSlot = materialSlot;
- const material = ( object !== null ) ? editor.getObjectMaterial( object, materialSlot ) : null;
- this.oldValue = ( material !== null ) ? material[ attributeName ].getHex() : null;
- this.newValue = newValue;
- this.attributeName = attributeName;
- }
- execute() {
- const material = this.editor.getObjectMaterial( this.object, this.materialSlot );
- material[ this.attributeName ].setHex( this.newValue );
- this.editor.signals.materialChanged.dispatch( this.object, this.materialSlot );
- }
- undo() {
- const material = this.editor.getObjectMaterial( this.object, this.materialSlot );
- material[ this.attributeName ].setHex( this.oldValue );
- this.editor.signals.materialChanged.dispatch( this.object, this.materialSlot );
- }
- update( cmd ) {
- this.newValue = cmd.newValue;
- }
- toJSON() {
- const output = super.toJSON( this );
- output.objectUuid = this.object.uuid;
- output.attributeName = this.attributeName;
- output.oldValue = this.oldValue;
- output.newValue = this.newValue;
- output.materialSlot = this.materialSlot;
- return output;
- }
- fromJSON( json ) {
- super.fromJSON( json );
- this.object = this.editor.objectByUuid( json.objectUuid );
- this.attributeName = json.attributeName;
- this.oldValue = json.oldValue;
- this.newValue = json.newValue;
- this.materialSlot = json.materialSlot;
- }
- }
- export { SetMaterialColorCommand };
|