source: other-projects/playing-in-the-street/summer-2013/trunk/Playing-in-the-Street-WPF/Content/Web/mrdoob-three.js-4862f5f/editor/js/Sidebar.js@ 28897

Last change on this file since 28897 was 28897, checked in by davidb, 10 years ago

GUI front-end to server base plus web page content

File size: 392 bytes
Line 
1var Sidebar = function ( editor ) {
2
3 var container = new UI.Panel();
4
5 container.add( new Sidebar.Renderer( editor ) );
6 container.add( new Sidebar.Scene( editor ) );
7 container.add( new Sidebar.Object3D( editor ) );
8 container.add( new Sidebar.Geometry( editor ) );
9 container.add( new Sidebar.Material( editor ) );
10 container.add( new Sidebar.Animation( editor ) );
11
12 return container;
13
14}
Note: See TracBrowser for help on using the repository browser.