Finish documentation
This commit is contained in:
parent
49473bf905
commit
31fcfd3d6b
86 changed files with 1383 additions and 8485 deletions
15
src/graphics/rendering/settings/default-runtime-settings.ts
Normal file
15
src/graphics/rendering/settings/default-runtime-settings.ts
Normal file
|
|
@ -0,0 +1,15 @@
|
|||
import { vec3, vec4 } from 'gl-matrix';
|
||||
import { RuntimeSettings } from './runtime-settings';
|
||||
|
||||
/**
|
||||
* Contains the default values used for [[RuntimeSettings]].
|
||||
*/
|
||||
export const defaultRuntimeSettings: RuntimeSettings = {
|
||||
enableHighDpiRendering: true,
|
||||
tileMultiplier: 8,
|
||||
isWorldInverted: false,
|
||||
lightCutoffDistance: 400,
|
||||
backgroundColor: vec4.fromValues(1, 1, 1, 1),
|
||||
colorPalette: [],
|
||||
ambientLight: vec3.fromValues(0.25, 0.15, 0.25),
|
||||
};
|
||||
Loading…
Add table
Add a link
Reference in a new issue