We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7494f55 commit a41096cCopy full SHA for a41096c
example/spotLights.js
@@ -278,6 +278,7 @@ async function init() {
278
onResize();
279
window.addEventListener( 'resize', onResize );
280
const gui = new GUI();
281
+ gui.add( params, 'showTransformControls' );
282
283
const ptFolder = gui.addFolder( 'Path Tracing' );
284
ptFolder.add( params, 'multipleImportanceSampling' ).onChange( value => {
@@ -314,7 +315,6 @@ async function init() {
314
315
ptRenderer.reset();
316
317
} );
- envFolder.add( params, 'showTransformControls' );
318
319
const matFolder1 = gui.addFolder( 'Floor Material' );
320
matFolder1.addColor( params.floorMaterial, 'color' ).onChange( reset );
0 commit comments