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.
63 lines
1.2 KiB
63 lines
1.2 KiB
import { UICheckbox, UIRow, UIText } from './libs/ui.js';
|
|
import { SetMaterialValueCommand } from './commands/SetMaterialValueCommand.js';
|
|
|
|
function SidebarMaterialBooleanProperty( editor, property, name ) {
|
|
|
|
const signals = editor.signals;
|
|
|
|
const container = new UIRow();
|
|
container.add( new UIText( name ).setWidth( '90px' ) );
|
|
|
|
const boolean = new UICheckbox().setLeft( '100px' ).onChange( onChange );
|
|
container.add( boolean );
|
|
|
|
let object = null;
|
|
let material = null;
|
|
|
|
function onChange() {
|
|
|
|
if ( material[ property ] !== boolean.getValue() ) {
|
|
|
|
editor.execute( new SetMaterialValueCommand( editor, object, property, boolean.getValue(), 0 /* TODO: currentMaterialSlot */ ) );
|
|
|
|
}
|
|
|
|
}
|
|
|
|
function update() {
|
|
|
|
if ( object === null ) return;
|
|
if ( object.material === undefined ) return;
|
|
|
|
material = object.material;
|
|
|
|
if ( property in material ) {
|
|
|
|
boolean.setValue( material[ property ] );
|
|
container.setDisplay( '' );
|
|
|
|
} else {
|
|
|
|
container.setDisplay( 'none' );
|
|
|
|
}
|
|
|
|
}
|
|
|
|
//
|
|
|
|
signals.objectSelected.add( function ( selected ) {
|
|
|
|
object = selected;
|
|
|
|
update();
|
|
|
|
} );
|
|
|
|
signals.materialChanged.add( update );
|
|
|
|
return container;
|
|
|
|
}
|
|
|
|
export { SidebarMaterialBooleanProperty };
|
|
|