mirror of
https://github.com/Doodle3D/Doodle3D-Slicer.git
synced 2024-11-16 11:07:57 +01:00
22 lines
567 B
JavaScript
Executable File
22 lines
567 B
JavaScript
Executable File
/**
|
|
* @author mrdoob / http://mrdoob.com/
|
|
*/
|
|
|
|
var Sidebar = function ( editor ) {
|
|
|
|
var container = new UI.Panel();
|
|
container.setId( 'sidebar' );
|
|
|
|
container.add( new Sidebar.Project( editor ) );
|
|
container.add( new Sidebar.Scene( editor ) );
|
|
container.add( new Sidebar.Object3D( editor ) );
|
|
container.add( new Sidebar.Geometry( editor ) );
|
|
container.add( new Sidebar.Material( editor ) );
|
|
container.add( new Sidebar.Animation( editor ) );
|
|
container.add( new Sidebar.Script( editor ) );
|
|
container.add( new Sidebar.Slicer( editor ) );
|
|
|
|
return container;
|
|
|
|
};
|