|
@@ -156,7 +156,8 @@ output = vec4( finalColor, opacity );
|
|
|
value: tslCode,
|
|
|
language: 'javascript',
|
|
|
theme: 'vs-dark',
|
|
|
- automaticLayout: true
|
|
|
+ automaticLayout: true,
|
|
|
+ minimap: { enabled: false }
|
|
|
} );
|
|
|
|
|
|
const result = window.monaco.editor.create( resultDOM, {
|
|
@@ -164,7 +165,8 @@ output = vec4( finalColor, opacity );
|
|
|
language: 'wgsl',
|
|
|
theme: 'vs-dark',
|
|
|
automaticLayout: true,
|
|
|
- readOnly: true
|
|
|
+ readOnly: true,
|
|
|
+ minimap: { enabled: false }
|
|
|
} );
|
|
|
|
|
|
const showCode = () => {
|