Fix uncleared uniforms bug

This commit is contained in:
schmelczerandras 2020-10-02 11:23:33 +02:00
parent 374796f398
commit 81eb0220d2
5 changed files with 20 additions and 2 deletions

View file

@ -5,7 +5,7 @@ import { RuntimeSettings } from './runtime-settings';
* Contains the default values used for [[RuntimeSettings]].
*/
export const defaultRuntimeSettings: RuntimeSettings = {
enableHighDpiRendering: true,
enableHighDpiRendering: false,
tileMultiplier: 8,
isWorldInverted: false,
lightCutoffDistance: 400,

View file

@ -7,5 +7,5 @@ export const defaultStartupSettings: StartupSettings = {
shadowTraceCount: 16,
paletteSize: 256,
ignoreWebGL2: false,
enableStopwatch: true,
enableStopwatch: false,
};