123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110 |
- /**
- * @author mrdoob / http://mrdoob.com/
- */
- Sidebar.Settings = function ( editor ) {
- var config = editor.config;
- var signals = editor.signals;
- var strings = editor.strings;
- var container = new UI.Panel();
- container.setBorderTop( '0' );
- container.setPaddingTop( '20px' );
- container.setPaddingBottom( '20px' );
- // language
- var options = {
- 'en': 'English',
- 'zh': '中文'
- };
- var languageRow = new UI.Row();
- var language = new UI.Select().setWidth( '150px' );
- language.setOptions( options );
- if ( config.getKey( 'language' ) !== undefined ) {
- language.setValue( config.getKey( 'language' ) );
- }
- language.onChange( function () {
- var value = this.getValue();
- editor.config.setKey( 'language', value );
- } );
- languageRow.add( new UI.Text( strings.getKey( 'sidebar/settings/language' ) ).setWidth( '90px' ) );
- languageRow.add( language );
- container.add( languageRow );
- // theme
- var options = {
- 'css/light.css': strings.getKey( 'sidebar/settings/theme/light' ),
- 'css/dark.css': strings.getKey( 'sidebar/settings/theme/dark' )
- };
- var themeRow = new UI.Row();
- var theme = new UI.Select().setWidth( '150px' );
- theme.setOptions( options );
- if ( config.getKey( 'theme' ) !== undefined ) {
- theme.setValue( config.getKey( 'theme' ) );
- }
- theme.onChange( function () {
- var value = this.getValue();
- editor.setTheme( value );
- editor.config.setKey( 'theme', value );
- } );
- themeRow.add( new UI.Text( strings.getKey( 'sidebar/settings/theme' ) ).setWidth( '90px' ) );
- themeRow.add( theme );
- container.add( themeRow );
- // scene camera visible
- var sceneShowCameraRow = new UI.Row();
- container.add( sceneShowCameraRow );
- var sceneCameraCheckbox = new UI.Checkbox( config.getKey( 'project/renderer/showSceneCameras' ) || false ).onChange( function () {
- config.setKey( 'project/renderer/showSceneCameras', this.getValue() );
- signals.sceneCamerasChanged.dispatch();
- } );
- sceneShowCameraRow.add( new UI.Text( strings.getKey( 'sidebar/settings/showSceneCameras' ) ).setWidth( '90px' ), sceneCameraCheckbox );
- // show helpers
- var showHelpersRow = new UI.Row();
- container.add( showHelpersRow );
- var showHelpersCheckbox = new UI.Checkbox( config.getKey( 'project/renderer/showHelpers' ) || false ).onChange( function () {
- config.setKey( 'project/renderer/showHelpers', this.getValue() );
- signals.sceneGraphChanged.dispatch();
- } );
- showHelpersRow.add( new UI.Text( strings.getKey( 'sidebar/settings/showHelpers' ) ).setWidth( '90px' ), showHelpersCheckbox );
- container.add( new Sidebar.Settings.Shortcuts( editor ) );
- container.add( new Sidebar.Settings.Viewport( editor ) );
- return container;
- };
|