Sidebar.js 520 B

1234567891011121314151617181920
  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.Renderer( editor ) );
  8. container.add( new Sidebar.Scene( editor ) );
  9. container.add( new Sidebar.Object3D( editor ) );
  10. container.add( new Sidebar.Geometry( editor ) );
  11. container.add( new Sidebar.Material( editor ) );
  12. container.add( new Sidebar.Animation( editor ) );
  13. container.add( new Sidebar.Script( editor ) );
  14. return container;
  15. };