2
0
Эх сурвалжийг харах

Editor: Update renderer when antialias option changes. (Yay! This finally works!)

Mr.doob 10 жил өмнө
parent
commit
3a101e98da

+ 1 - 1
editor/js/Sidebar.Project.js

@@ -64,7 +64,7 @@ Sidebar.Project = function ( editor ) {
 	var rendererAntialias = new UI.Checkbox( editor.config.getKey( 'project/renderer/antialias' ) ).setLeft( '100px' ).onChange( function () {
 
 		editor.config.setKey( 'project/renderer/antialias', this.getValue() );
-		// updateRenderer();
+		updateRenderer();
 
 	} );