Doodle3D-Slicer/three.js-master/editor_slicer/js/Sidebar.js
2017-06-22 13:21:07 +02:00

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;
};