Sidebar.js 568 B

123456789101112131415161718192021
  1. /**
  2. * @author mrdoob / http://mrdoob.com/
  3. */
  4. var Sidebar = function ( editor ) {
  5. var container = new UI.Panel();
  6. container.setId( 'sidebar' );
  7. container.add( new Sidebar.History( editor ) );
  8. container.add( new Sidebar.Project( editor ) );
  9. container.add( new Sidebar.Scene( editor ) );
  10. container.add( new Sidebar.Object3D( editor ) );
  11. container.add( new Sidebar.Geometry( editor ) );
  12. container.add( new Sidebar.Material( editor ) );
  13. container.add( new Sidebar.Animation( editor ) );
  14. container.add( new Sidebar.Script( editor ) );
  15. return container;
  16. };