Sidebar.js 489 B

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