Sidebar.js 392 B

1234567891011121314
  1. var Sidebar = function ( editor ) {
  2. var container = new UI.Panel();
  3. container.add( new Sidebar.Renderer( editor ) );
  4. container.add( new Sidebar.Scene( editor ) );
  5. container.add( new Sidebar.Object3D( editor ) );
  6. container.add( new Sidebar.Geometry( editor ) );
  7. container.add( new Sidebar.Material( editor ) );
  8. container.add( new Sidebar.Animation( editor ) );
  9. return container;
  10. }