123456789101112131415161718192021 |
- /**
- * @author mrdoob / http://mrdoob.com/
- */
- var Sidebar = function ( editor ) {
- var container = new UI.Panel();
- container.setId( 'sidebar' );
- container.add( new Sidebar.History( editor ) );
- 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 ) );
- return container;
- };
|