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.
56 lines
1.4 KiB
56 lines
1.4 KiB
2 years ago
|
import * as THREE from 'three';
|
||
|
|
||
|
import { UIDiv, UIRow, UIText, UIInteger, UIButton } from './libs/ui.js';
|
||
|
|
||
|
import { SetGeometryCommand } from './commands/SetGeometryCommand.js';
|
||
|
|
||
|
function GeometryParametersPanel( editor, object ) {
|
||
|
|
||
|
const strings = editor.strings;
|
||
|
|
||
|
const container = new UIDiv();
|
||
|
|
||
|
const geometry = object.geometry;
|
||
|
const parameters = geometry.parameters;
|
||
|
|
||
|
// curveSegments
|
||
|
|
||
|
const curveSegmentsRow = new UIRow();
|
||
|
const curveSegments = new UIInteger( parameters.curveSegments || 12 ).onChange( changeShape ).setRange( 1, Infinity );
|
||
|
|
||
|
curveSegmentsRow.add( new UIText( strings.getKey( 'sidebar/geometry/shape_geometry/curveSegments' ) ).setWidth( '90px' ) );
|
||
|
curveSegmentsRow.add( curveSegments );
|
||
|
|
||
|
container.add( curveSegmentsRow );
|
||
|
|
||
|
// to extrude
|
||
|
const button = new UIButton( strings.getKey( 'sidebar/geometry/shape_geometry/extrude' ) ).onClick( toExtrude ).setWidth( '90px' ).setMarginLeft( '90px' );
|
||
|
container.add( button );
|
||
|
|
||
|
//
|
||
|
|
||
|
function changeShape() {
|
||
|
|
||
|
editor.execute( new SetGeometryCommand( editor, object, new THREE.ShapeGeometry(
|
||
|
parameters.shapes,
|
||
|
curveSegments.getValue()
|
||
|
) ) );
|
||
|
|
||
|
}
|
||
|
|
||
|
function toExtrude() {
|
||
|
|
||
|
editor.execute( new SetGeometryCommand( editor, object, new THREE.ExtrudeGeometry(
|
||
|
parameters.shapes, {
|
||
|
curveSegments: curveSegments.getValue()
|
||
|
}
|
||
|
) ) );
|
||
|
|
||
|
}
|
||
|
|
||
|
return container;
|
||
|
|
||
|
}
|
||
|
|
||
|
export { GeometryParametersPanel };
|