diff --git a/parser/src/chunk-packs.ts b/parser/src/chunk-packs.ts index 01c21f2..7c1326f 100644 --- a/parser/src/chunk-packs.ts +++ b/parser/src/chunk-packs.ts @@ -10,6 +10,7 @@ export type DefinitionTypes = { export const fileChunkMap = { cntc: { Main: "MAIN_4" }, + cmpc: { comp: "COMP" }, hvkC: { havk: "HAVK" }, ASND: { ASND: "ASND" }, AMAT: { GRMT: "GRMT", DX9S: "DX9S", BGFX: "BGFX" }, @@ -50,6 +51,7 @@ export const fileChunkMap = { audi: "AUDI", lght: "LGHT", exp: "EXP", + watr: "WATR", }, emoc: { anim: "ANIM_3" }, // STAR: { STAR: "" }, diff --git a/parser/src/data-parser.ts b/parser/src/data-parser.ts index c400947..bc6004b 100644 --- a/parser/src/data-parser.ts +++ b/parser/src/data-parser.ts @@ -23,6 +23,7 @@ export class DataParser implements Definition { public readonly name: string; public readonly chunkName: string; public readonly version: number; + public readonly PTR_SIZE: 4 | 8; constructor( definition: Definition, @@ -30,6 +31,7 @@ export class DataParser implements Definition { public DEBUG = false ) { Object.assign(this, definition); + this.PTR_SIZE = is64Bit ? PTR_SIZE_64 : PTR_SIZE_32; } public safeParse(dv: DataView, position = 0): { data: any; error: any | null } { @@ -99,38 +101,38 @@ export class DataParser implements Definition { **/ private Float32(key: string, dv: DataView, pos: number): ParseFunctionReturn { - this._debugLog(key, "Float32", pos); + this._debugLog(key, BaseType.Float32, pos); const data = dv.getFloat32(pos, true); return { newPosition: pos + 4, data }; } private Float64(key: string, dv: DataView, pos: number): ParseFunctionReturn { - this._debugLog(key, "Float64", pos); + this._debugLog(key, BaseType.Float64, pos); return { newPosition: pos + 8, data: dv.getFloat64(pos, true) }; } private Uint8(key: string, dv: DataView, pos: number): ParseFunctionReturn { - this._debugLog(key, "Uint8", pos); + this._debugLog(key, BaseType.Uint8, pos); return { newPosition: pos + 1, data: dv.getUint8(pos) }; } private Uint16(key: string, dv: DataView, pos: number): ParseFunctionReturn { - this._debugLog(key, "Uint16", pos); + this._debugLog(key, BaseType.Uint16, pos); return { newPosition: pos + 2, data: dv.getUint16(pos, true) }; } private Uint32(key: string, dv: DataView, pos: number): ParseFunctionReturn { - this._debugLog(key, "Uint32", pos); + this._debugLog(key, BaseType.Uint32, pos); return { newPosition: pos + 4, data: dv.getUint32(pos, true) }; } private Uint64(key: string, dv: DataView, pos: number): ParseFunctionReturn { - this._debugLog(key, "Uint64", pos); + this._debugLog(key, BaseType.Uint64, pos); return { newPosition: pos + 8, @@ -145,7 +147,7 @@ export class DataParser implements Definition { _subType: DataType | string, length: number ): ParseFunctionReturn { - this._debugLog(key, "CString", pos, length); + this._debugLog(key, BaseType.CString, pos, length); const u8array = new Uint8Array(dv.buffer, pos); const end = length || u8array.findIndex((v) => v === 0); @@ -157,7 +159,7 @@ export class DataParser implements Definition { } private RefString(key: string, dv: DataView, pos: number): ParseFunctionReturn { - this._debugLog(key, "RefString", pos); + this._debugLog(key, BaseType.RefString, pos); let pointer = this.is64Bit ? pos + Number(dv.getBigUint64(pos, true)) : pos + dv.getUint32(pos, true); let data = ""; @@ -168,7 +170,7 @@ export class DataParser implements Definition { } return { - newPosition: pos + (this.is64Bit ? PTR_SIZE_64 : PTR_SIZE_32), + newPosition: pos + this.PTR_SIZE, data, }; } @@ -180,7 +182,7 @@ export class DataParser implements Definition { type: DataType | string, length: number ): ParseFunctionReturn { - this._debugLog(key, "FixedArray", pos, length, type); + this._debugLog(key, BaseType.FixedArray, pos, length, type); // Some types can be mapped directly from their buffer into the return type if (typeof type != "string") { @@ -208,7 +210,7 @@ export class DataParser implements Definition { } private DynArray(key: string, dv: DataView, pos: number, type: DataType | string): ParseFunctionReturn { - this._debugLog(key, "DynArray", pos, undefined, type); + this._debugLog(key, BaseType.DynArray, pos, undefined, type); const arrayLength = dv.getUint32(pos, true); const arrayOffset = this.is64Bit ? Number(dv.getBigUint64(pos + 4, true)) : dv.getUint32(pos + 4, true); @@ -221,45 +223,46 @@ export class DataParser implements Definition { const arrayPtr = pos + 4 + arrayOffset; return { - newPosition: pos + (this.is64Bit ? PTR_SIZE_64 : PTR_SIZE_32) + 4, + newPosition: pos + this.PTR_SIZE + 4, data: this.FixedArray(key, dv, arrayPtr, type, arrayLength).data, }; } private RefArray(key: string, dv: DataView, pos: number, type: DataType | string): ParseFunctionReturn { - this._debugLog(key, "RefArray", pos, undefined, type); + this._debugLog(key, BaseType.RefArray, pos, undefined, type); - let offset = pos; + let cursor = pos; const finalArray: any = []; - const arrayLength = dv.getUint32(offset, true); - offset += 4; + const arrayLength = dv.getUint32(cursor, true); + cursor += 4; - const arrayOffset = this.is64Bit ? Number(dv.getBigUint64(offset, true)) : dv.getUint32(offset, true); - const arrayPointer = offset + arrayOffset; - offset += this.is64Bit ? PTR_SIZE_64 : PTR_SIZE_32; + const arrayOffset = this.offset(dv, cursor); + const arrayPointer = cursor + arrayOffset; + cursor += this.PTR_SIZE; if (arrayLength === 0) { - return { newPosition: offset, data: finalArray }; + return { newPosition: cursor, data: finalArray }; } - const savedPosition = offset; + const savedPosition = cursor; const currentPosition = arrayPointer; - const offsets = new Array(arrayLength); + + const offsets = []; for (let i = 0; i < arrayLength; i++) { - offsets[i] = this.is64Bit - ? Number(dv.getBigUint64(currentPosition + i * PTR_SIZE_64, true)) - : dv.getInt32(currentPosition + i * PTR_SIZE_32, true); + const offset = this.offset(dv, currentPosition + i * this.PTR_SIZE); + + offsets.push(offset); } // Set pointer to read structures - let pointer = savedPosition - (this.is64Bit ? PTR_SIZE_64 : PTR_SIZE_32); - const baseOffset = this.is64Bit ? Number(dv.getBigUint64(pointer, true)) : dv.getUint32(pointer, true); + let pointer = savedPosition - this.PTR_SIZE; + const baseOffset = this.offset(dv, pointer); pointer += baseOffset; for (let i = 0; i < offsets.length; i++) { if (offsets[i] !== 0) { - const structPosition = pointer + i * (this.is64Bit ? PTR_SIZE_64 : PTR_SIZE_32) + offsets[i]; + const structPosition = pointer + i * this.PTR_SIZE + offsets[i]; if (typeof type === "string") { finalArray.push(this.parseType(key, dv, structPosition, type).data); } else { @@ -272,12 +275,12 @@ export class DataParser implements Definition { } private Pointer(key: string, dv: DataView, pos: number, type: DataType | string): ParseFunctionReturn { - this._debugLog(key, "Pointer", pos, undefined, type); + this._debugLog(key, BaseType.Pointer, pos, undefined, type); - const offset = this.is64Bit ? Number(dv.getBigUint64(pos, true)) : dv.getUint32(pos, true); + const offset = this.offset(dv, pos); if (offset === 0) { return { - newPosition: pos + (this.is64Bit ? PTR_SIZE_64 : PTR_SIZE_32), + newPosition: pos + this.PTR_SIZE, data: {}, }; } @@ -288,15 +291,16 @@ export class DataParser implements Definition { : this[type.baseType](key, dv, pos + offset, type.subType!, type.length!); return { - newPosition: pos + (this.is64Bit ? PTR_SIZE_64 : PTR_SIZE_32), + newPosition: pos + this.PTR_SIZE, data: parsedItem.data, }; } private RefString16(key: string, dv: DataView, pos: number): ParseFunctionReturn { - this._debugLog(key, "RefString16", pos); + this._debugLog(key, BaseType.RefString16, pos); - let pointer = pos + (this.is64Bit ? Number(dv.getBigUint64(pos, true)) : dv.getUint32(pos, true)); + const offset = this.offset(dv, pos); + let pointer = pos + offset; let data = ""; let charcode; @@ -306,53 +310,39 @@ export class DataParser implements Definition { } return { - newPosition: pos + (this.is64Bit ? PTR_SIZE_64 : PTR_SIZE_32), + newPosition: pos + this.PTR_SIZE, data, }; } private Fileref(key: string, dv: DataView, pos: number): ParseFunctionReturn { - this._debugLog(key, "Fileref", pos); + this._debugLog(key, BaseType.Fileref, pos); return this.Filename(key, dv, pos); } private Filename(key: string, dv: DataView, pos: number): ParseFunctionReturn { - this._debugLog(key, "Filename", pos); + this._debugLog(key, BaseType.Filename, pos); const position = pos; - try { - let pointer = position + (this.is64Bit ? Number(dv.getBigUint64(position, true)) : dv.getUint32(position, true)); + const offset = this.offset(dv, pos); + const pointer = position + offset; - const m_lowPart = dv.getUint16(pointer, true); - pointer += 2; - const m_highPart = dv.getUint16(pointer, true); - pointer += 2; - //eslint-disable-next-line @typescript-eslint/no-unused-vars - const _m_terminator = dv.getUint16(pointer, true); - pointer += 2; + const m_lowPart = dv.getUint16(pointer, true); + const m_highPart = dv.getUint16(pointer + 2, true); - /// Getting the file name... - /// Both need to be >= than 256 (terminator is 0) - const filename = 0xff00 * (m_highPart - 0x100) + (m_lowPart - 0x100) + 1; + /// Getting the file name... + /// Both need to be >= than 256 (terminator (third byte) is 0) + const filename = 0xff00 * (m_highPart - 0x100) + (m_lowPart - 0x100) + 1; - return { - newPosition: pos + (this.is64Bit ? PTR_SIZE_64 : PTR_SIZE_32), - data: filename > 0 ? filename : 0, - }; - } catch (e) { - if (this.DEBUG) { - console.error("Error while parsing filename", e); - } - return { - newPosition: pos + (this.is64Bit ? PTR_SIZE_64 : PTR_SIZE_32), - data: -1, - }; - } + return { + newPosition: pos + this.PTR_SIZE, + data: filename > 0 ? filename : 0, + }; } private Unknown(key: string, dv: DataView, pos: number): ParseFunctionReturn { - this._debugLog(key, "Unknown", pos); + this._debugLog(key, BaseType.Unknown, pos); throw new Error("Could not parse unknown data"); } @@ -361,6 +351,28 @@ export class DataParser implements Definition { * Parser utils & helpers **/ + private offset(dv: DataView, pos: number): number { + if (this.is64Bit) { + const offset = dv.getBigUint64(pos, true); + if (offset === BigInt(0)) { + return 0; + } else if (offset > BigInt(dv.byteLength)) { + // Parse negative offset + return -(Number(BigInt("0xFFFFFFFFFFFFFFFF") - offset) + 1); + } else { + return Number(offset); + } + } else { + const offset = dv.getUint32(pos, true); + if (offset > dv.byteLength) { + // Parse negative offset + return -(0xffffffff - offset + 1); + } else { + return offset; + } + } + } + private optimisedArray( key: string, dv: DataView, @@ -368,7 +380,7 @@ export class DataParser implements Definition { length: number, OptimisedArray: NonNullable> ): ParseFunctionReturn { - this._debugLog(key, "optimisedArray", pos); + this._debugLog(key, "OptimisedArray", pos); const byteLength = length * OptimisedArray.BYTES_PER_ELEMENT; const byteArray = new Uint8Array(dv.buffer.slice(pos, pos + byteLength)); @@ -389,7 +401,7 @@ export class DataParser implements Definition { value?: any ) { if (this.DEBUG) { - let log = `> ${key}: (${type}) pos: ${position}`; + let log = `> ${key}: (${type}) pos: ${position.toString(16)}`; if (length) log += `, length: ${length}`; if (subType) { if (typeof subType === "string") log += `, subType: ${subType}`; diff --git a/parser/src/file-parser.ts b/parser/src/file-parser.ts index d5342b6..e0318f4 100644 --- a/parser/src/file-parser.ts +++ b/parser/src/file-parser.ts @@ -44,10 +44,15 @@ export default class FileParser { console.log( `Parsing chunk ${metadata.chunkHeader.type} with version ${metadata.chunkHeader.chunkVersion}, flags ${this.header.flags}` ); - const parserResult = new DataParser(def, this.header.flags === 5).parse( + const parserResult = new DataParser(def, this.header.flags === 5).safeParse( this.dataView, metadata.chunkPosition + metadata.chunkHeader.chunkHeaderSize ); + if (parserResult.error) { + console.error( + `Error parsing chunk ${metadata.chunkHeader.type} with version ${metadata.chunkHeader.chunkVersion}: ${parserResult.error}` + ); + } this.chunks.push({ header: metadata.chunkHeader, data: parserResult.data, diff --git a/parser/test/__snapshots__/mapc2.test.ts.snap b/parser/test/__snapshots__/mapc2.test.ts.snap new file mode 100644 index 0000000..606c2cd --- /dev/null +++ b/parser/test/__snapshots__/mapc2.test.ts.snap @@ -0,0 +1,5726 @@ +// Jest Snapshot v1, https://goo.gl/fbAQLP + +exports[`matches for ENV: mapc2-env 1`] = ` +{ + "dataGlobal": { + "audio": [ + { + "token": 22272941696050n, + }, + { + "token": 0n, + }, + ], + "bindTarget": 0n, + "clouds": { + "layers": [ + { + "altitude": 182.37081909179688, + "attributes": [ + { + "brightness": 3, + "density": 0.060790274292230606, + "fadeEnd": 16, + "fadeWidth": 33.333335876464844, + "haze": 0.40425533056259155, + "lightIntensity": 0.9880095720291138, + "reserved": 0, + "velocity": Float32Array [ + -253.3333282470703, + 431.111083984375, + ], + }, + { + "brightness": 3, + "density": 0.060790274292230606, + "fadeEnd": 16, + "fadeWidth": 33.333335876464844, + "haze": 0.40425533056259155, + "lightIntensity": 0.9880095720291138, + "reserved": 0, + "velocity": Float32Array [ + -253.3333282470703, + 431.111083984375, + ], + }, + { + "brightness": 1, + "density": 1, + "fadeEnd": 16, + "fadeWidth": 33.333335876464844, + "haze": 1, + "lightIntensity": 1, + "reserved": 0, + "velocity": Float32Array [ + 0, + 0, + ], + }, + ], + "cutOut": 1000, + "depth": 0.07231121510267258, + "extent": 0.22196796536445618, + "name": "", + "reserved": 0, + "scale": 1.3272310495376587, + "texture": 189255, + }, + { + "altitude": 15227.962890625, + "attributes": [ + { + "brightness": 0.2978723347187042, + "density": 1, + "fadeEnd": 33.130699157714844, + "fadeWidth": 30.69908905029297, + "haze": 0.030395137146115303, + "lightIntensity": 1, + "reserved": 0, + "velocity": Float32Array [ + 574.4681396484375, + 398.1763000488281, + ], + }, + { + "brightness": 0.2978723347187042, + "density": 1, + "fadeEnd": 33.130699157714844, + "fadeWidth": 30.69908905029297, + "haze": 0.030395137146115303, + "lightIntensity": 1, + "reserved": 0, + "velocity": Float32Array [ + 574.4681396484375, + 398.1763000488281, + ], + }, + { + "brightness": 1, + "density": 1, + "fadeEnd": 33.130699157714844, + "fadeWidth": 30.69908905029297, + "haze": 1, + "lightIntensity": 1, + "reserved": 0, + "velocity": Float32Array [ + 0, + 0, + ], + }, + ], + "cutOut": 300.9118347167969, + "depth": 0.09726443886756897, + "extent": 1, + "name": "", + "reserved": 0, + "scale": 1.155015230178833, + "texture": 188576, + }, + ], + }, + "coloredLightRings": [], + "effect": [ + { + "clutTexturePath": 0, + "ext": {}, + "flags": 0, + "focalDepth": 3630.719970703125, + "focalRange": 4000, + "glow": Uint8Array [ + 105, + 92, + 66, + 0, + ], + "glowAmplify": 0.05696199834346771, + "glowLevel": Uint8Array [ + 165, + 221, + 248, + 0, + ], + "saturation": 1, + "ssaoAmount": 3, + "ssaoBrighten": 0.20000000298023224, + "ssaoContrast": 1, + "ssaoSunScale": 0.5, + "tintAmount": 0, + "tintColor": Uint8Array [ + 182, + 157, + 157, + 1, + ], + "tintFocus": 0, + "tintTargetColor": Uint8Array [ + 0, + 0, + 0, + 0, + ], + }, + { + "clutTexturePath": 0, + "ext": {}, + "flags": 0, + "focalDepth": 3630.719970703125, + "focalRange": 4000, + "glow": Uint8Array [ + 105, + 92, + 66, + 0, + ], + "glowAmplify": 0.05696199834346771, + "glowLevel": Uint8Array [ + 165, + 221, + 248, + 0, + ], + "saturation": 1, + "ssaoAmount": 3, + "ssaoBrighten": 0.20000000298023224, + "ssaoContrast": 1, + "ssaoSunScale": 0.5, + "tintAmount": 0, + "tintColor": Uint8Array [ + 182, + 157, + 157, + 1, + ], + "tintFocus": 0, + "tintTargetColor": Uint8Array [ + 0, + 0, + 0, + 0, + ], + }, + { + "clutTexturePath": 0, + "ext": {}, + "flags": 0, + "focalDepth": 6000, + "focalRange": 4000, + "glow": Uint8Array [ + 0, + 0, + 0, + 0, + ], + "glowAmplify": 0, + "glowLevel": Uint8Array [ + 0, + 0, + 0, + 0, + ], + "saturation": 1, + "ssaoAmount": 3, + "ssaoBrighten": 0.20000000298023224, + "ssaoContrast": 1, + "ssaoSunScale": 0.5, + "tintAmount": 0, + "tintColor": Uint8Array [ + 255, + 255, + 255, + 255, + ], + "tintFocus": 0, + "tintTargetColor": Uint8Array [ + 255, + 255, + 255, + 0, + ], + }, + ], + "ext": { + "brightMax": 0.5, + "brightMin": 0.30000001192092896, + "brightScale": 1, + "brightTime": 2.5, + "darkCoeff": 1.2000000476837158, + "darkExp": 0.800000011920929, + "darkMax": 0.30000001192092896, + "darkMin": 0.10000000149011612, + "darkScale": 1, + "dimTime": 5, + "ext2": {}, + "waterReflectionParams": Float32Array [ + 0, + 0, + 0, + 0, + ], + }, + "flags": 1, + "haze": [ + { + "depthCue": 0.001962388399988413, + "distRange": Float32Array [ + 41.650360107421875, + 653.0611572265625, + ], + "farColor": Uint8Array [ + 2, + 29, + 0, + 255, + ], + "heightColor": Uint8Array [ + 0, + 0, + 0, + 255, + ], + "heightRange": Float32Array [ + 3793.103759765625, + 5903.6142578125, + ], + "nearColor": Uint8Array [ + 4, + 49, + 75, + 255, + ], + "sunDirRange": Float32Array [ + -1, + 1, + ], + }, + { + "depthCue": 0.001962388399988413, + "distRange": Float32Array [ + 321.53375244140625, + 2471.04248046875, + ], + "farColor": Uint8Array [ + 2, + 29, + 0, + 255, + ], + "heightColor": Uint8Array [ + 0, + 0, + 0, + 255, + ], + "heightRange": Float32Array [ + 3793.103759765625, + 5903.6142578125, + ], + "nearColor": Uint8Array [ + 10, + 75, + 5, + 255, + ], + "sunDirRange": Float32Array [ + -1, + 1, + ], + }, + { + "depthCue": 1, + "distRange": Float32Array [ + 352.94110107421875, + 1633.6336669921875, + ], + "farColor": Uint8Array [ + 202, + 246, + 96, + 255, + ], + "heightColor": Uint8Array [ + 77, + 104, + 13, + 255, + ], + "heightRange": Float32Array [ + 539.2158203125, + 1960.7841796875, + ], + "nearColor": Uint8Array [ + 242, + 249, + 197, + 255, + ], + "sunDirRange": Float32Array [ + 0, + 0, + ], + }, + ], + "lighting": [ + { + "backlightColor": Uint8Array [ + 255, + 255, + 255, + ], + "backlightIntensity": 1, + "lights": [ + { + "color": Uint8Array [ + 247, + 215, + 166, + ], + "direction": Float32Array [ + -9.099629210140847e-7, + 1.6560650420438527e-12, + 1, + ], + "intensity": 1.9390863180160522, + }, + { + "color": Uint8Array [ + 60, + 147, + 255, + ], + "direction": Float32Array [ + -0.7202897667884827, + -0.0000013108739267408964, + -0.693673312664032, + ], + "intensity": 0.2724935710430145, + }, + { + "color": Uint8Array [ + 201, + 202, + 136, + ], + "direction": Float32Array [ + -0.0000021020557596784784, + 3.825585681571653e-12, + -1, + ], + "intensity": 0.1285347044467926, + }, + { + "color": Uint8Array [ + 156, + 175, + 179, + ], + "direction": Float32Array [ + -0.0000021020557596784784, + 3.825585681571653e-12, + 1, + ], + "intensity": 0.35467100143432617, + }, + { + "color": Uint8Array [ + 255, + 190, + 199, + ], + "direction": Float32Array [ + -0.0059698293916881084, + -0.7202650308609009, + 0.693673312664032, + ], + "intensity": 0.05655527114868164, + }, + { + "color": Uint8Array [ + 193, + 234, + 246, + ], + "direction": Float32Array [ + 0.9267255663871765, + 0.2723828852176666, + 0.258819043636322, + ], + "intensity": 0, + }, + { + "color": Uint8Array [ + 255, + 236, + 191, + ], + "direction": Float32Array [ + -0.0014304855139926076, + 0.9645836353302002, + 0.26377353072166443, + ], + "intensity": 0, + }, + { + "color": Uint8Array [ + 188, + 209, + 253, + ], + "direction": Float32Array [ + 0.48935168981552124, + -0.836308479309082, + 0.2472306787967682, + ], + "intensity": 0.04113110527396202, + }, + ], + "shadowInfluence": 0, + }, + { + "backlightColor": Uint8Array [ + 255, + 255, + 255, + ], + "backlightIntensity": 1, + "lights": [ + { + "color": Uint8Array [ + 247, + 215, + 166, + ], + "direction": Float32Array [ + 9.099629210140847e-7, + 0, + 1, + ], + "intensity": 1.8392282724380493, + }, + { + "color": Uint8Array [ + 60, + 147, + 255, + ], + "direction": Float32Array [ + 0.7202534675598145, + 0.007235519587993622, + -0.693673312664032, + ], + "intensity": 0.8295819759368896, + }, + { + "color": Uint8Array [ + 201, + 202, + 136, + ], + "direction": Float32Array [ + -0.0000021020557596784784, + 3.825585681571653e-12, + -1, + ], + "intensity": 0.1285347044467926, + }, + { + "color": Uint8Array [ + 156, + 175, + 179, + ], + "direction": Float32Array [ + -0.0000021020557596784784, + 3.825585681571653e-12, + 1, + ], + "intensity": 0.35467100143432617, + }, + { + "color": Uint8Array [ + 255, + 190, + 199, + ], + "direction": Float32Array [ + -0.0059698293916881084, + -0.7202650308609009, + 0.693673312664032, + ], + "intensity": 0.05655527114868164, + }, + { + "color": Uint8Array [ + 193, + 234, + 246, + ], + "direction": Float32Array [ + 0.9267255663871765, + 0.2723828852176666, + 0.258819043636322, + ], + "intensity": 0, + }, + { + "color": Uint8Array [ + 255, + 236, + 191, + ], + "direction": Float32Array [ + -0.0014304855139926076, + 0.9645836353302002, + 0.26377353072166443, + ], + "intensity": 0, + }, + { + "color": Uint8Array [ + 188, + 209, + 253, + ], + "direction": Float32Array [ + 0.48935168981552124, + -0.836308479309082, + 0.2472306787967682, + ], + "intensity": 0.04113110527396202, + }, + ], + "shadowInfluence": 0, + }, + { + "backlightColor": Uint8Array [ + 255, + 255, + 255, + ], + "backlightIntensity": 1, + "lights": [ + { + "color": Uint8Array [ + 255, + 233, + 192, + ], + "direction": Float32Array [ + 0.7071067690849304, + 0, + 0.7071067690849304, + ], + "intensity": 1.2999999523162842, + }, + { + "color": Uint8Array [ + 124, + 172, + 248, + ], + "direction": Float32Array [ + -0.7071067690849304, + -0.0000012868819112554775, + -0.7071067690849304, + ], + "intensity": 0.30000001192092896, + }, + { + "color": Uint8Array [ + 191, + 221, + 255, + ], + "direction": Float32Array [ + 0.29848748445510864, + 0.9186500906944275, + 0.2588188648223877, + ], + "intensity": 0.10000000149011612, + }, + { + "color": Uint8Array [ + 188, + 204, + 253, + ], + "direction": Float32Array [ + -0.7814504504203796, + 0.5677568912506104, + 0.258819043636322, + ], + "intensity": 0.10000000149011612, + }, + { + "color": Uint8Array [ + 199, + 190, + 255, + ], + "direction": Float32Array [ + -0.8824164271354675, + 0.39287903904914856, + 0.258819043636322, + ], + "intensity": 0.10000000149011612, + }, + { + "color": Uint8Array [ + 189, + 222, + 255, + ], + "direction": Float32Array [ + 0.2984875440597534, + -0.9186500310897827, + 0.258819043636322, + ], + "intensity": 0.10000000149011612, + }, + { + "color": Uint8Array [ + 204, + 237, + 255, + ], + "direction": Float32Array [ + -9.099629210140847e-7, + 1.6560650420438527e-12, + 1, + ], + "intensity": 0.30000001192092896, + }, + { + "color": Uint8Array [ + 168, + 254, + 189, + ], + "direction": Float32Array [ + -9.099629210140847e-7, + 1.6560650420438527e-12, + -1, + ], + "intensity": 0.15000000596046448, + }, + ], + "shadowInfluence": 0, + }, + ], + "lightingCharGroups": [], + "name": "", + "nightMods": Uint8Array [ + 255, + 255, + 255, + 133, + ], + "particleFieldCutouts": [], + "particleFields": [ + { + "altitude": 0, + "angle": Float32Array [ + -0.06159980595111847, + 0.03696005046367645, + ], + "clusterCount": 1, + "clustering": Float32Array [ + 0, + 0, + ], + "depth": 0, + "deviation": 99.04153442382812, + "deviationSpeed": Float32Array [ + 0.3481781482696533, + 0.3481781482696533, + ], + "extent": 315, + "fade": 50, + "fieldDirection": Float32Array [ + 0, + 0.20000000298023224, + 1, + ], + "flags": 70, + "lifetime": Float32Array [ + 0, + 0, + ], + "name": "RainSheet", + "opacity": Float32Array [ + 0.08656619489192963, + 0.21487601101398468, + ], + "particleCount": 50, + "period": Float32Array [ + 0, + 0, + ], + "reserved": 0, + "rotation": Float32Array [ + 0, + 0, + ], + "scaleX": Float32Array [ + 8.628366470336914, + 44.70643615722656, + ], + "scaleY": Float32Array [ + 36.68592071533203, + 72.94145202636719, + ], + "seed": 47040, + "speed": Float32Array [ + 0.4000000059604645, + 0.5, + ], + "texColRow": Uint32Array [ + 1, + 1, + ], + "texFPS": 0, + "texPath": 188558, + "type": 0, + }, + { + "altitude": 0, + "angle": Float32Array [ + 0, + 0, + ], + "clusterCount": 1, + "clustering": Float32Array [ + 0, + 0, + ], + "depth": 0, + "deviation": 89.45687103271484, + "deviationSpeed": Float32Array [ + 1, + 1, + ], + "extent": 1056, + "fade": 50, + "fieldDirection": Float32Array [ + 0, + 0.10000000149011612, + 1, + ], + "flags": 70, + "lifetime": Float32Array [ + 0, + 0, + ], + "name": "Rain", + "opacity": Float32Array [ + 0.1098039448261261, + 0.4117647111415863, + ], + "particleCount": 100, + "period": Float32Array [ + 0, + 0, + ], + "reserved": 0, + "rotation": Float32Array [ + 0, + 0, + ], + "scaleX": Float32Array [ + 4.137223720550537, + 9.020517349243164, + ], + "scaleY": Float32Array [ + 13.548894882202148, + 18.432188034057617, + ], + "seed": 82866, + "speed": Float32Array [ + 0.5376518368721008, + 0.6072874665260315, + ], + "texColRow": Uint32Array [ + 1, + 1, + ], + "texFPS": 0, + "texPath": 188556, + "type": 0, + }, + ], + "sky": { + "dayBrightness": 2, + "dayHazeBottom": 0.021341463550925255, + "dayHazeDensity": 1, + "dayHazeFalloff": 0.5641025900840759, + "dayLightIntensity": 1, + "dayStarDensity": 0, + "flags": 0, + "nightBrightness": 2, + "nightHazeBottom": 0.021341463550925255, + "nightHazeDensity": 1, + "nightHazeFalloff": 0.14329268038272858, + "nightLightIntensity": 1, + "nightStarDensity": 0, + "verticalOffset": -29554.65234375, + }, + "skyCards": { + "cards": [ + { + "day": { + "azimuth": -0.9739868640899658, + "brightness": 1, + "density": 1, + "ext": {}, + "hazeDensity": 0, + "latitude": 0.24223601818084717, + "lensFlare": {}, + "lightIntensity": 1, + "minHaze": 0, + "scale": Float32Array [ + 4.968944072723389, + 4.968944072723389, + ], + "speed": 0.3490642011165619, + "texture": 504870, + "textureUV": Float32Array [ + 0, + 1, + 1, + 0, + ], + }, + "ext": {}, + "flags": 192121728, + "location": Float32Array [ + 0, + 0, + 0, + ], + "material": {}, + "name": "", + "night": { + "azimuth": -0.9739868640899658, + "brightness": 1, + "density": 1, + "ext": {}, + "hazeDensity": 0, + "latitude": 0.24223601818084717, + "lensFlare": {}, + "lightIntensity": 1, + "minHaze": 0, + "scale": Float32Array [ + 4.968944072723389, + 4.968944072723389, + ], + "speed": 0.3490642011165619, + "texture": 504870, + "textureUV": Float32Array [ + 0, + 1, + 1, + 0, + ], + }, + }, + { + "day": { + "azimuth": -0.6634238958358765, + "brightness": 1.8818000555038452, + "density": 1, + "ext": {}, + "hazeDensity": 0.4888888895511627, + "latitude": 0.22981366515159607, + "lensFlare": {}, + "lightIntensity": 0.1599999964237213, + "minHaze": 0, + "scale": Float32Array [ + 26.666667938232422, + 12.121182441711426, + ], + "speed": 0.4537779688835144, + "texture": 186357, + "textureUV": Float32Array [ + 0, + 0.5124223828315735, + 1, + 0.7236024737358093, + ], + }, + "ext": {}, + "flags": 192121229, + "location": Float32Array [ + 0, + 0, + 0, + ], + "material": {}, + "name": "", + "night": { + "azimuth": -0.6634238958358765, + "brightness": 1.8818000555038452, + "density": 1, + "ext": {}, + "hazeDensity": 0.4888888895511627, + "latitude": 0.22981366515159607, + "lensFlare": {}, + "lightIntensity": 0.1599999964237213, + "minHaze": 0, + "scale": Float32Array [ + 26.666667938232422, + 12.121182441711426, + ], + "speed": 0.4537779688835144, + "texture": 186357, + "textureUV": Float32Array [ + 0, + 0.5124223828315735, + 1, + 0.7236024737358093, + ], + }, + }, + { + "day": { + "azimuth": -0.8000145554542542, + "brightness": 1.8818000555038452, + "density": 0.7706859707832336, + "ext": {}, + "hazeDensity": 0.8770689964294434, + "latitude": 0.057777777314186096, + "lensFlare": {}, + "lightIntensity": 0.20852400362491608, + "minHaze": 0, + "scale": Float32Array [ + 15.11111068725586, + 6.868669509887695, + ], + "speed": 0.5584947466850281, + "texture": 186357, + "textureUV": Float32Array [ + 0, + 0.5372670888900757, + 0.7360248565673828, + 0.54347825050354, + ], + }, + "ext": {}, + "flags": 192121229, + "location": Float32Array [ + 0, + 0, + 0, + ], + "material": {}, + "name": "", + "night": { + "azimuth": -0.8000145554542542, + "brightness": 1.8818000555038452, + "density": 0.7706859707832336, + "ext": {}, + "hazeDensity": 0.8770689964294434, + "latitude": 0.057777777314186096, + "lensFlare": {}, + "lightIntensity": 0.20852400362491608, + "minHaze": 0, + "scale": Float32Array [ + 15.11111068725586, + 6.868669509887695, + ], + "speed": 0.5584947466850281, + "texture": 186357, + "textureUV": Float32Array [ + 0, + 0.5372670888900757, + 0.7360248565673828, + 0.54347825050354, + ], + }, + }, + { + "day": { + "azimuth": -1.4439278841018677, + "brightness": 1.8818000555038452, + "density": 0.7706859707832336, + "ext": {}, + "hazeDensity": 0.8770689964294434, + "latitude": 0.47555556893348694, + "lensFlare": {}, + "lightIntensity": 0.40888887643814087, + "minHaze": 0, + "scale": Float32Array [ + 8.88888931274414, + 4.040394306182861, + ], + "speed": 0.3490596413612366, + "texture": 186357, + "textureUV": Float32Array [ + 0, + 0.5372670888900757, + 0.5288888812065125, + 0.3911111056804657, + ], + }, + "ext": {}, + "flags": 192121229, + "location": Float32Array [ + 0, + 0, + 0, + ], + "material": {}, + "name": "", + "night": { + "azimuth": -1.4439278841018677, + "brightness": 1.8818000555038452, + "density": 0.7706859707832336, + "ext": {}, + "hazeDensity": 0.8770689964294434, + "latitude": 0.47555556893348694, + "lensFlare": {}, + "lightIntensity": 0.40888887643814087, + "minHaze": 0, + "scale": Float32Array [ + 8.88888931274414, + 4.040394306182861, + ], + "speed": 0.3490596413612366, + "texture": 186357, + "textureUV": Float32Array [ + 0, + 0.5372670888900757, + 0.5288888812065125, + 0.3911111056804657, + ], + }, + }, + { + "day": { + "azimuth": -2.0105650424957275, + "brightness": 1.8818000555038452, + "density": 0.7706859707832336, + "ext": {}, + "hazeDensity": 0.8770689964294434, + "latitude": 0.14906832575798035, + "lensFlare": {}, + "lightIntensity": 0.20852400362491608, + "minHaze": 0.03999999910593033, + "scale": Float32Array [ + 15.555556297302246, + 7.070689678192139, + ], + "speed": 0.43632426857948303, + "texture": 186357, + "textureUV": Float32Array [ + 0, + 0.5372670888900757, + 0.3955555558204651, + 0.11555555462837219, + ], + }, + "ext": {}, + "flags": 192121229, + "location": Float32Array [ + 0, + 0, + 0, + ], + "material": {}, + "name": "", + "night": { + "azimuth": -2.0105650424957275, + "brightness": 1.8818000555038452, + "density": 0.7706859707832336, + "ext": {}, + "hazeDensity": 0.8770689964294434, + "latitude": 0.14906832575798035, + "lensFlare": {}, + "lightIntensity": 0.20852400362491608, + "minHaze": 0.03999999910593033, + "scale": Float32Array [ + 15.555556297302246, + 7.070689678192139, + ], + "speed": 0.43632426857948303, + "texture": 186357, + "textureUV": Float32Array [ + 0, + 0.5372670888900757, + 0.3955555558204651, + 0.11555555462837219, + ], + }, + }, + { + "day": { + "azimuth": -2.5690670013427734, + "brightness": 1.8818000555038452, + "density": 0.7706859707832336, + "ext": {}, + "hazeDensity": 0.8770689964294434, + "latitude": 0.3822222352027893, + "lensFlare": {}, + "lightIntensity": 0.20852400362491608, + "minHaze": 0, + "scale": Float32Array [ + 21.33333396911621, + 4.192546367645264, + ], + "speed": 0.48868322372436523, + "texture": 186357, + "textureUV": Float32Array [ + 0, + 0.5372670888900757, + 0.1111111119389534, + 0, + ], + }, + "ext": {}, + "flags": 192121229, + "location": Float32Array [ + 0, + 0, + 0, + ], + "material": {}, + "name": "", + "night": { + "azimuth": -2.5690670013427734, + "brightness": 1.8818000555038452, + "density": 0.7706859707832336, + "ext": {}, + "hazeDensity": 0.8770689964294434, + "latitude": 0.3822222352027893, + "lensFlare": {}, + "lightIntensity": 0.20852400362491608, + "minHaze": 0, + "scale": Float32Array [ + 21.33333396911621, + 4.192546367645264, + ], + "speed": 0.48868322372436523, + "texture": 186357, + "textureUV": Float32Array [ + 0, + 0.5372670888900757, + 0.1111111119389534, + 0, + ], + }, + }, + { + "day": { + "azimuth": -3.713989496231079, + "brightness": 1.8818000555038452, + "density": 0.7706859707832336, + "ext": {}, + "hazeDensity": 0.8770689964294434, + "latitude": 0.14906832575798035, + "lensFlare": {}, + "lightIntensity": 0.20852400362491608, + "minHaze": 0, + "scale": Float32Array [ + 21.33333396911621, + 4.192546367645264, + ], + "speed": 0.5235870480537415, + "texture": 186357, + "textureUV": Float32Array [ + 0, + 0.5372670888900757, + 1, + 0.746666669845581, + ], + }, + "ext": {}, + "flags": 192121229, + "location": Float32Array [ + 0, + 0, + 0, + ], + "material": {}, + "name": "", + "night": { + "azimuth": -3.713989496231079, + "brightness": 1.8818000555038452, + "density": 0.7706859707832336, + "ext": {}, + "hazeDensity": 0.8770689964294434, + "latitude": 0.14906832575798035, + "lensFlare": {}, + "lightIntensity": 0.20852400362491608, + "minHaze": 0, + "scale": Float32Array [ + 21.33333396911621, + 4.192546367645264, + ], + "speed": 0.5235870480537415, + "texture": 186357, + "textureUV": Float32Array [ + 0, + 0.5372670888900757, + 1, + 0.746666669845581, + ], + }, + }, + { + "day": { + "azimuth": -3.0158839225769043, + "brightness": 1.8818000555038452, + "density": 0.7706859707832336, + "ext": {}, + "hazeDensity": 0.8770689964294434, + "latitude": 0.3822222352027893, + "lensFlare": {}, + "lightIntensity": 0.20852400362491608, + "minHaze": 0, + "scale": Float32Array [ + 18.66666603088379, + 3.668477773666382, + ], + "speed": 0.541043221950531, + "texture": 186357, + "textureUV": Float32Array [ + 0, + 0.5372670888900757, + 0.1111111119389534, + 0, + ], + }, + "ext": {}, + "flags": 192121229, + "location": Float32Array [ + 0, + 0, + 0, + ], + "material": {}, + "name": "", + "night": { + "azimuth": -3.0158839225769043, + "brightness": 1.8818000555038452, + "density": 0.7706859707832336, + "ext": {}, + "hazeDensity": 0.8770689964294434, + "latitude": 0.3822222352027893, + "lensFlare": {}, + "lightIntensity": 0.20852400362491608, + "minHaze": 0, + "scale": Float32Array [ + 18.66666603088379, + 3.668477773666382, + ], + "speed": 0.541043221950531, + "texture": 186357, + "textureUV": Float32Array [ + 0, + 0.5372670888900757, + 0.1111111119389534, + 0, + ], + }, + }, + { + "day": { + "azimuth": -0.9494466185569763, + "brightness": 1.8818000555038452, + "density": 0.7706859707832336, + "ext": {}, + "hazeDensity": 0.8770689964294434, + "latitude": 0.47555556893348694, + "lensFlare": {}, + "lightIntensity": 0.40888887643814087, + "minHaze": 0, + "scale": Float32Array [ + 12.44444465637207, + 5.656552314758301, + ], + "speed": 0.3141545355319977, + "texture": 186357, + "textureUV": Float32Array [ + 0, + 0.5372670888900757, + 0.5288888812065125, + 0.3911111056804657, + ], + }, + "ext": {}, + "flags": 192121229, + "location": Float32Array [ + 0, + 0, + 0, + ], + "material": {}, + "name": "", + "night": { + "azimuth": -0.9494466185569763, + "brightness": 1.8818000555038452, + "density": 0.7706859707832336, + "ext": {}, + "hazeDensity": 0.8770689964294434, + "latitude": 0.47555556893348694, + "lensFlare": {}, + "lightIntensity": 0.40888887643814087, + "minHaze": 0, + "scale": Float32Array [ + 12.44444465637207, + 5.656552314758301, + ], + "speed": 0.3141545355319977, + "texture": 186357, + "textureUV": Float32Array [ + 0, + 0.5372670888900757, + 0.5288888812065125, + 0.3911111056804657, + ], + }, + }, + { + "day": { + "azimuth": -5.724602222442627, + "brightness": 1.8818000555038452, + "density": 0.7706859707832336, + "ext": {}, + "hazeDensity": 0.8770689964294434, + "latitude": 0.15111111104488373, + "lensFlare": {}, + "lightIntensity": 0.20852400362491608, + "minHaze": 0, + "scale": Float32Array [ + 16.44444465637207, + 7.474728584289551, + ], + "speed": 0.4712330400943756, + "texture": 186357, + "textureUV": Float32Array [ + 0, + 0.5372670888900757, + 0.7360248565673828, + 0.54347825050354, + ], + }, + "ext": {}, + "flags": 192121229, + "location": Float32Array [ + 0, + 0, + 0, + ], + "material": {}, + "name": "", + "night": { + "azimuth": -5.724602222442627, + "brightness": 1.8818000555038452, + "density": 0.7706859707832336, + "ext": {}, + "hazeDensity": 0.8770689964294434, + "latitude": 0.15111111104488373, + "lensFlare": {}, + "lightIntensity": 0.20852400362491608, + "minHaze": 0, + "scale": Float32Array [ + 16.44444465637207, + 7.474728584289551, + ], + "speed": 0.4712330400943756, + "texture": 186357, + "textureUV": Float32Array [ + 0, + 0.5372670888900757, + 0.7360248565673828, + 0.54347825050354, + ], + }, + }, + { + "day": { + "azimuth": -4.495966911315918, + "brightness": 1.8818000555038452, + "density": 0.7706859707832336, + "ext": {}, + "hazeDensity": 0.8770689964294434, + "latitude": 0, + "lensFlare": {}, + "lightIntensity": 0.20852400362491608, + "minHaze": 0, + "scale": Float32Array [ + 20, + 9.090886116027832, + ], + "speed": 0.5759585499763489, + "texture": 186357, + "textureUV": Float32Array [ + 0, + 0.5372670888900757, + 0.7360248565673828, + 0.54347825050354, + ], + }, + "ext": {}, + "flags": 192121229, + "location": Float32Array [ + 0, + 0, + 0, + ], + "material": {}, + "name": "", + "night": { + "azimuth": -4.495966911315918, + "brightness": 1.8818000555038452, + "density": 0.7706859707832336, + "ext": {}, + "hazeDensity": 0.8770689964294434, + "latitude": 0, + "lensFlare": {}, + "lightIntensity": 0.20852400362491608, + "minHaze": 0, + "scale": Float32Array [ + 20, + 9.090886116027832, + ], + "speed": 0.5759585499763489, + "texture": 186357, + "textureUV": Float32Array [ + 0, + 0.5372670888900757, + 0.7360248565673828, + 0.54347825050354, + ], + }, + }, + { + "day": { + "azimuth": -0, + "brightness": 1, + "density": 1, + "ext": {}, + "hazeDensity": 0, + "latitude": 0.30222222208976746, + "lensFlare": {}, + "lightIntensity": 0, + "minHaze": 0, + "scale": Float32Array [ + 29.333332061767578, + 29.333332061767578, + ], + "speed": 0.34906429052352905, + "texture": 198253, + "textureUV": Float32Array [ + 0, + 1, + 1, + 0, + ], + }, + "ext": {}, + "flags": 1, + "location": Float32Array [ + 0, + 0, + 0, + ], + "material": {}, + "name": "", + "night": { + "azimuth": -0, + "brightness": 1, + "density": 1, + "ext": {}, + "hazeDensity": 0, + "latitude": 0.30222222208976746, + "lensFlare": {}, + "lightIntensity": 0, + "minHaze": 0, + "scale": Float32Array [ + 29.333332061767578, + 29.333332061767578, + ], + "speed": 0.34906429052352905, + "texture": 198253, + "textureUV": Float32Array [ + 0, + 1, + 1, + 0, + ], + }, + }, + { + "day": { + "azimuth": -5.361591339111328, + "brightness": 1, + "density": 1, + "ext": {}, + "hazeDensity": 0, + "latitude": 0.30222222208976746, + "lensFlare": {}, + "lightIntensity": 0, + "minHaze": 0, + "scale": Float32Array [ + 29.333332061767578, + 29.333332061767578, + ], + "speed": 0.34906435012817383, + "texture": 198253, + "textureUV": Float32Array [ + 0, + 1, + 1, + 0, + ], + }, + "ext": {}, + "flags": 1, + "location": Float32Array [ + 0, + 0, + 0, + ], + "material": {}, + "name": "", + "night": { + "azimuth": -5.361591339111328, + "brightness": 1, + "density": 1, + "ext": {}, + "hazeDensity": 0, + "latitude": 0.30222222208976746, + "lensFlare": {}, + "lightIntensity": 0, + "minHaze": 0, + "scale": Float32Array [ + 29.333332061767578, + 29.333332061767578, + ], + "speed": 0.34906435012817383, + "texture": 198253, + "textureUV": Float32Array [ + 0, + 1, + 1, + 0, + ], + }, + }, + { + "day": { + "azimuth": -1.8989002704620361, + "brightness": 1, + "density": 1, + "ext": {}, + "hazeDensity": 0, + "latitude": 0.3777777850627899, + "lensFlare": {}, + "lightIntensity": 0, + "minHaze": 0, + "scale": Float32Array [ + 29.333332061767578, + 29.333332061767578, + ], + "speed": 0.3490644097328186, + "texture": 198253, + "textureUV": Float32Array [ + 0, + 1, + 1, + 0, + ], + }, + "ext": {}, + "flags": 1, + "location": Float32Array [ + 0, + 0, + 0, + ], + "material": {}, + "name": "", + "night": { + "azimuth": -1.8989002704620361, + "brightness": 1, + "density": 1, + "ext": {}, + "hazeDensity": 0, + "latitude": 0.3777777850627899, + "lensFlare": {}, + "lightIntensity": 0, + "minHaze": 0, + "scale": Float32Array [ + 29.333332061767578, + 29.333332061767578, + ], + "speed": 0.3490644097328186, + "texture": 198253, + "textureUV": Float32Array [ + 0, + 1, + 1, + 0, + ], + }, + }, + { + "day": { + "azimuth": -3.546473979949951, + "brightness": 1, + "density": 1, + "ext": {}, + "hazeDensity": 0, + "latitude": 0.0533333346247673, + "lensFlare": {}, + "lightIntensity": 0, + "minHaze": 0, + "scale": Float32Array [ + 29.333332061767578, + 29.333332061767578, + ], + "speed": 0.3490644693374634, + "texture": 198253, + "textureUV": Float32Array [ + 0, + 1, + 1, + 0, + ], + }, + "ext": {}, + "flags": 1, + "location": Float32Array [ + 0, + 0, + 0, + ], + "material": {}, + "name": "", + "night": { + "azimuth": -3.546473979949951, + "brightness": 1, + "density": 1, + "ext": {}, + "hazeDensity": 0, + "latitude": 0.0533333346247673, + "lensFlare": {}, + "lightIntensity": 0, + "minHaze": 0, + "scale": Float32Array [ + 29.333332061767578, + 29.333332061767578, + ], + "speed": 0.3490644693374634, + "texture": 198253, + "textureUV": Float32Array [ + 0, + 1, + 1, + 0, + ], + }, + }, + ], + }, + "skyModeCubeTex": [], + "skyModeTex": [ + { + "texPathNE": 190955, + "texPathSW": 190957, + "texPathT": 190959, + }, + { + "texPathNE": 190955, + "texPathSW": 190957, + "texPathT": 190959, + }, + { + "texPathNE": 190410, + "texPathSW": 190412, + "texPathT": 190414, + }, + { + "texPathNE": 190410, + "texPathSW": 190412, + "texPathT": 190414, + }, + ], + "spawns": { + "spawnGroups": [ + { + "spawns": [ + { + "animSequence": 0n, + "delay": 0, + "flags": 56, + "heightRange": Float32Array [ + 0, + -5814.97802734375, + ], + "lifeSpan": Uint32Array [ + 1, + 2, + ], + "maxConcurrent": 100, + "modelFile": 506738, + "probability": 1, + "rotXRange": Float32Array [ + 0, + 0, + ], + "rotYRange": Float32Array [ + 0, + 0, + ], + "rotZRange": Float32Array [ + 0, + 360, + ], + "scaleRange": Float32Array [ + 1, + 1, + ], + "spawnRange": Uint32Array [ + 594, + 1387, + ], + }, + { + "animSequence": 0n, + "delay": 0.20000000298023224, + "flags": 56, + "heightRange": Float32Array [ + -8480.1767578125, + -8480.1767578125, + ], + "lifeSpan": Uint32Array [ + 1, + 2, + ], + "maxConcurrent": 100, + "modelFile": 192658, + "probability": 1, + "rotXRange": Float32Array [ + 0, + 0, + ], + "rotYRange": Float32Array [ + 0, + 0, + ], + "rotZRange": Float32Array [ + 0, + 360, + ], + "scaleRange": Float32Array [ + 8, + 15, + ], + "spawnRange": Uint32Array [ + 11035, + 22000, + ], + }, + ], + }, + { + "spawns": [], + }, + { + "spawns": [], + }, + ], + "targets": [], + }, + "starFile": 186291, + "water": [ + { + "animAmplitude": 0.004240409936755896, + "animChoppiness": 0.05899700149893761, + "animWind": Float32Array [ + 4.969880104064941, + 1.9578291177749634, + ], + "bumpAmount": 150.36099243164062, + "bumpAngle0": -180, + "bumpAngle1": -178.35400390625, + "bumpScale0": 0.04420730099081993, + "bumpScale1": 0.04420730099081993, + "bumpSpeed0": 0.45121899247169495, + "bumpSpeed1": 0.4024389982223511, + "bumpTile0": 12.146300315856934, + "bumpTile1": 13.780500411987305, + "constantTokens": Uint32Array [ + 809906891, + 911119242, + 910462480, + 808137754, + 814574097, + 807298231, + 813734574, + 3101301168, + 1324870500, + 1472906389, + 2953265279, + 3427729611, + 1355227165, + 2983621944, + ], + "constantValues": [ + Float32Array [ + 1, + 1, + 1, + 255, + ], + Float32Array [ + 0, + 0, + 0, + 1, + ], + Float32Array [ + 130, + 0, + 0, + 0, + ], + Float32Array [ + 1, + 10, + 4, + 0, + ], + Float32Array [ + 0.4892759919166565, + 0.4490619897842407, + 0.041554998606443405, + 0.9021450281143188, + ], + Float32Array [ + 0.20495499670505524, + 8, + 4, + 0, + ], + Float32Array [ + 1.5, + 0.8176940083503723, + 0.683646023273468, + 0.7747989892959595, + ], + Float32Array [ + 0, + 0, + 0, + 0, + ], + Float32Array [ + 0, + 0, + 0, + 0, + ], + Float32Array [ + 0, + 0, + 0, + 0, + ], + Float32Array [ + 0, + 0, + 0, + 0, + ], + Float32Array [ + 0, + 0, + 0, + 0, + ], + Float32Array [ + 0, + 0, + 0, + 0, + ], + Float32Array [ + 0, + 0, + 0, + 0, + ], + ], + "depthAttenuation": 54.0442008972168, + "distortAmount": 0.00009999999747378752, + "foamColor0": Uint8Array [ + 0, + 0, + 0, + 0, + ], + "foamColor1": Uint8Array [ + 0, + 0, + 0, + 0, + ], + "foamDepthAttenuation": 0, + "foamDissolve": 0, + "foamSpawn": 0, + "materialFilename": 187551, + "patternAngle": -9.759039878845215, + "patternColor": Uint8Array [ + 58, + 63, + 0, + 111, + ], + "patternEdge": 0.09383749961853027, + "patternSpeed": 0.3313249945640564, + "patternTile": 3.8767499923706055, + "surfaceDeepColor": Uint8Array [ + 87, + 59, + 17, + 0, + ], + "surfaceFresnel": 3.727030038833618, + "surfaceShallowColor": Uint8Array [ + 181, + 112, + 31, + 0, + ], + "textureFilenames": [ + 0, + 188570, + 506590, + 187574, + 190961, + ], + "waterFlags": 0, + }, + { + "animAmplitude": 0.004240409936755896, + "animChoppiness": 0.05899700149893761, + "animWind": Float32Array [ + 4.969880104064941, + 1.9578291177749634, + ], + "bumpAmount": 150.36099243164062, + "bumpAngle0": -180, + "bumpAngle1": -178.35400390625, + "bumpScale0": 0.04420730099081993, + "bumpScale1": 0.04420730099081993, + "bumpSpeed0": 0.45121899247169495, + "bumpSpeed1": 0.4024389982223511, + "bumpTile0": 12.146300315856934, + "bumpTile1": 13.780500411987305, + "constantTokens": Uint32Array [ + 809906891, + 911119242, + 910462480, + 808137754, + 814574097, + 807298231, + 813734574, + 3101301168, + 1324870500, + 1472906389, + 2953265279, + 3427729611, + 1355227165, + 2983621944, + ], + "constantValues": [ + Float32Array [ + 1, + 1, + 1, + 255, + ], + Float32Array [ + 0, + 0, + 0, + 1, + ], + Float32Array [ + 130, + 0, + 0, + 0, + ], + Float32Array [ + 1, + 10, + 4, + 0, + ], + Float32Array [ + 0.4892759919166565, + 0.4490619897842407, + 0.041554998606443405, + 0.9021450281143188, + ], + Float32Array [ + 0.20495499670505524, + 8, + 4, + 0, + ], + Float32Array [ + 1.5, + 0.8176940083503723, + 0.683646023273468, + 0.7747989892959595, + ], + Float32Array [ + 0, + 0, + 0, + 0, + ], + Float32Array [ + 0, + 0, + 0, + 0, + ], + Float32Array [ + 0, + 0, + 0, + 0, + ], + Float32Array [ + 0, + 0, + 0, + 0, + ], + Float32Array [ + 0, + 0, + 0, + 0, + ], + Float32Array [ + 0, + 0, + 0, + 0, + ], + Float32Array [ + 0, + 0, + 0, + 0, + ], + ], + "depthAttenuation": 54.0442008972168, + "distortAmount": 0.00009999999747378752, + "foamColor0": Uint8Array [ + 0, + 0, + 0, + 0, + ], + "foamColor1": Uint8Array [ + 0, + 0, + 0, + 0, + ], + "foamDepthAttenuation": 0, + "foamDissolve": 0, + "foamSpawn": 0, + "materialFilename": 187551, + "patternAngle": -9.759039878845215, + "patternColor": Uint8Array [ + 58, + 63, + 0, + 111, + ], + "patternEdge": 0.09383749961853027, + "patternSpeed": 0.3313249945640564, + "patternTile": 3.8767499923706055, + "surfaceDeepColor": Uint8Array [ + 87, + 59, + 17, + 0, + ], + "surfaceFresnel": 3.727030038833618, + "surfaceShallowColor": Uint8Array [ + 181, + 112, + 31, + 0, + ], + "textureFilenames": [ + 0, + 188570, + 506590, + 187574, + 190961, + ], + "waterFlags": 0, + }, + { + "animAmplitude": 0, + "animChoppiness": 0, + "animWind": Float32Array [ + -90.00000762939453, + -29.9999942779541, + ], + "bumpAmount": 300, + "bumpAngle0": -15.132743835449219, + "bumpAngle1": 40, + "bumpScale0": 0.10000000149011612, + "bumpScale1": 0.10000000149011612, + "bumpSpeed0": 1, + "bumpSpeed1": 1, + "bumpTile0": 1.7999999523162842, + "bumpTile1": 2.5999999046325684, + "constantTokens": Uint32Array [ + 3101301168, + 1324870500, + 1472906389, + 2953265279, + 3427729611, + 1355227165, + 2983621944, + 2541789506, + ], + "constantValues": [ + Float32Array [ + 0, + 0, + 0, + 0, + ], + Float32Array [ + 0, + 0, + 0, + 0, + ], + Float32Array [ + 0, + 0, + 0, + 0, + ], + Float32Array [ + 0, + 0, + 0, + 0, + ], + Float32Array [ + 0, + 0, + 0, + 0, + ], + Float32Array [ + 0, + 0, + 0, + 0, + ], + Float32Array [ + 0, + 0, + 0, + 0, + ], + Float32Array [ + 0.11924119293689728, + 0, + 0, + 0, + ], + ], + "depthAttenuation": 181.2543487548828, + "distortAmount": 0.0030326922424137592, + "foamColor0": Uint8Array [ + 51, + 126, + 174, + 38, + ], + "foamColor1": Uint8Array [ + 255, + 255, + 255, + 191, + ], + "foamDepthAttenuation": 0.8999999761581421, + "foamDissolve": 0.949999988079071, + "foamSpawn": 0.5, + "materialFilename": 188555, + "patternAngle": 0, + "patternColor": Uint8Array [ + 255, + 255, + 255, + 1, + ], + "patternEdge": 1, + "patternSpeed": 1.02173912525177, + "patternTile": 2.0173912048339844, + "surfaceDeepColor": Uint8Array [ + 50, + 16, + 9, + 0, + ], + "surfaceFresnel": 2.763636350631714, + "surfaceShallowColor": Uint8Array [ + 172, + 184, + 111, + 0, + ], + "textureFilenames": [ + 0, + 188570, + 187580, + ], + "waterFlags": 1, + }, + ], + "wind": [ + { + "azimuth": 1, + "elevation": 12, + "gust": 54, + "gustFreq": 180, + "gustSpeed": 128, + "noise": 36, + "speed": 67, + }, + { + "azimuth": 1, + "elevation": 12, + "gust": 54, + "gustFreq": 180, + "gustSpeed": 128, + "noise": 36, + "speed": 67, + }, + { + "azimuth": 0, + "elevation": 0, + "gust": 0, + "gustFreq": 0, + "gustSpeed": 0, + "noise": 0, + "speed": 0, + }, + ], + }, + "dataLocalArray": [ + { + "audio": [], + "bindTarget": 0n, + "clouds": { + "layers": [ + { + "altitude": 182.37081909179688, + "attributes": [ + { + "brightness": 1, + "density": 1, + "fadeEnd": 16, + "fadeWidth": 33.333335876464844, + "haze": 1, + "lightIntensity": 0.9083665609359741, + "reserved": 0, + "velocity": Float32Array [ + -15.197574615478516, + 33.43463134765625, + ], + }, + { + "brightness": 1, + "density": 1, + "fadeEnd": 16, + "fadeWidth": 33.333335876464844, + "haze": 1, + "lightIntensity": 0.9083665609359741, + "reserved": 0, + "velocity": Float32Array [ + -15.197574615478516, + 33.43463134765625, + ], + }, + { + "brightness": 1, + "density": 1, + "fadeEnd": 16, + "fadeWidth": 33.333335876464844, + "haze": 1, + "lightIntensity": 1, + "reserved": 0, + "velocity": Float32Array [ + 0, + 0, + ], + }, + ], + "cutOut": 1000, + "depth": 0.05019920691847801, + "extent": 1, + "name": "", + "reserved": 0, + "scale": 4.042553424835205, + "texture": 189255, + }, + { + "altitude": 3638.444091796875, + "attributes": [ + { + "brightness": 0.6155606508255005, + "density": 0.6475972533226013, + "fadeEnd": 33.130699157714844, + "fadeWidth": 30.69908905029297, + "haze": 0.6864988803863525, + "lightIntensity": 0, + "reserved": 0, + "velocity": Float32Array [ + 142.85719299316406, + 15.197515487670898, + ], + }, + { + "brightness": 1, + "density": 1, + "fadeEnd": 33.130699157714844, + "fadeWidth": 30.69908905029297, + "haze": 0.030395137146115303, + "lightIntensity": 1, + "reserved": 0, + "velocity": Float32Array [ + 142.85719299316406, + 15.197515487670898, + ], + }, + { + "brightness": 1, + "density": 1, + "fadeEnd": 33.130699157714844, + "fadeWidth": 30.69908905029297, + "haze": 1, + "lightIntensity": 1, + "reserved": 0, + "velocity": Float32Array [ + 0, + 0, + ], + }, + ], + "cutOut": 2000, + "depth": 0.09726443886756897, + "extent": 0.14645308256149292, + "name": "", + "reserved": 0, + "scale": 0.9118541479110718, + "texture": 195776, + }, + ], + }, + "coloredLightRings": [], + "effect": [], + "ext": { + "brightMax": 0.5, + "brightMin": 0.30000001192092896, + "brightScale": 1, + "brightTime": 2.5, + "darkCoeff": 1.2000000476837158, + "darkExp": 0.800000011920929, + "darkMax": 0.30000001192092896, + "darkMin": 0.10000000149011612, + "darkScale": 1, + "dimTime": 5, + "ext2": {}, + "waterReflectionParams": Float32Array [ + 0, + 0, + 0, + 0, + ], + }, + "flags": 0, + "guid": 1591586986079100432n, + "haze": [ + { + "depthCue": 0.001512825721874833, + "distRange": Float32Array [ + 2313.2529296875, + 5461.84716796875, + ], + "farColor": Uint8Array [ + 8, + 22, + 7, + 255, + ], + "heightColor": Uint8Array [ + 0, + 0, + 0, + 255, + ], + "heightRange": Float32Array [ + -6006.0927734375, + -4538.15185546875, + ], + "nearColor": Uint8Array [ + 89, + 110, + 88, + 255, + ], + "sunDirRange": Float32Array [ + -1, + 1, + ], + }, + { + "depthCue": 0.0009278954239562154, + "distRange": Float32Array [ + 2313.2529296875, + 13590.7333984375, + ], + "farColor": Uint8Array [ + 8, + 22, + 7, + 255, + ], + "heightColor": Uint8Array [ + 0, + 0, + 0, + 255, + ], + "heightRange": Float32Array [ + -1681.767333984375, + -213.826416015625, + ], + "nearColor": Uint8Array [ + 89, + 110, + 88, + 255, + ], + "sunDirRange": Float32Array [ + -1, + 1, + ], + }, + { + "depthCue": 1, + "distRange": Float32Array [ + 352.94110107421875, + 1633.6336669921875, + ], + "farColor": Uint8Array [ + 202, + 246, + 96, + 255, + ], + "heightColor": Uint8Array [ + 77, + 104, + 13, + 255, + ], + "heightRange": Float32Array [ + 539.2158203125, + 1960.7841796875, + ], + "nearColor": Uint8Array [ + 242, + 249, + 197, + 255, + ], + "sunDirRange": Float32Array [ + 0, + 0, + ], + }, + ], + "lighting": [], + "lightingCharGroups": [], + "name": "", + "nightMods": Uint8Array [ + 255, + 255, + 255, + 133, + ], + "particleFieldCutouts": [ + { + "name": "cutout", + "x": Float32Array [ + 0.00033450679620727897, + 0.001789639238268137, + 0, + -11.484528541564941, + ], + "y": Float32Array [ + -0.001789639238268137, + 0.00033450679620727897, + 0, + -16.752822875976562, + ], + "z": Float32Array [ + 0, + 0, + 0.0008830678998492658, + 0.12256351113319397, + ], + }, + ], + "particleFields": [ + { + "altitude": 0, + "angle": Float32Array [ + 0, + 0, + ], + "clusterCount": 1, + "clustering": Float32Array [ + 0, + 0, + ], + "depth": 0, + "deviation": 89.45687103271484, + "deviationSpeed": Float32Array [ + 1, + 1, + ], + "extent": 1056, + "fade": 50, + "fieldDirection": Float32Array [ + 0, + 0.10000000149011612, + 1, + ], + "flags": 70, + "lifetime": Float32Array [ + 0, + 0, + ], + "name": "Rain", + "opacity": Float32Array [ + 0.1098039448261261, + 0.4117647111415863, + ], + "particleCount": 100, + "period": Float32Array [ + 0, + 0, + ], + "reserved": 0, + "rotation": Float32Array [ + 0, + 0, + ], + "scaleX": Float32Array [ + 4.137223720550537, + 9.020517349243164, + ], + "scaleY": Float32Array [ + 13.548894882202148, + 18.432188034057617, + ], + "seed": 82866, + "speed": Float32Array [ + 0.5376518368721008, + 0.6072874665260315, + ], + "texColRow": Uint32Array [ + 1, + 1, + ], + "texFPS": 0, + "texPath": 188556, + "type": 0, + }, + ], + "shapeArray": [ + { + "center": Float32Array [ + -9897.9921875, + 1589.1185302734375, + 836.8564453125, + ], + "fadeHorizInner": 0, + "fadeHorizOuter": 0, + "fadeVertical": 0, + "height": 8568.4560546875, + "shapeType": 2, + "vertexArray": [ + Float32Array [ + -14591.951171875, + 6428.8515625, + ], + Float32Array [ + -5327.203125, + 5459.23095703125, + ], + Float32Array [ + -5204.0322265625, + -1968.2685546875, + ], + Float32Array [ + -14375.283203125, + -3250.614501953125, + ], + ], + }, + ], + "sky": { + "dayBrightness": 1, + "dayHazeBottom": 0.17611940205097198, + "dayHazeDensity": 2, + "dayHazeFalloff": 0.28656715154647827, + "dayLightIntensity": 1, + "dayStarDensity": 0, + "flags": 0, + "nightBrightness": 1, + "nightHazeBottom": 0.17611940205097198, + "nightHazeDensity": 2, + "nightHazeFalloff": 0.28656715154647827, + "nightLightIntensity": 1, + "nightStarDensity": 0, + "verticalOffset": -54029.8515625, + }, + "skyCards": { + "cards": [ + { + "day": { + "azimuth": -3.29254412651062, + "brightness": 1, + "density": 1, + "ext": {}, + "hazeDensity": 0, + "latitude": 0.5400457382202148, + "lensFlare": {}, + "lightIntensity": 1, + "minHaze": 0, + "scale": Float32Array [ + 4.968944072723389, + 4.968944072723389, + ], + "speed": 0, + "texture": 504870, + "textureUV": Float32Array [ + 0, + 1, + 1, + 0, + ], + }, + "ext": {}, + "flags": 192121729, + "location": Float32Array [ + 0, + 0, + 0, + ], + "material": {}, + "name": "", + "night": { + "azimuth": -3.0048906803131104, + "brightness": 1, + "density": 1, + "ext": {}, + "hazeDensity": 0, + "latitude": 0.5531914830207825, + "lensFlare": {}, + "lightIntensity": 1, + "minHaze": 0, + "scale": Float32Array [ + 4.968944072723389, + 4.968944072723389, + ], + "speed": 0, + "texture": 504870, + "textureUV": Float32Array [ + 0, + 1, + 1, + 0, + ], + }, + }, + { + "day": { + "azimuth": -0.6634186506271362, + "brightness": 1.8818000555038452, + "density": 1, + "ext": {}, + "hazeDensity": 0.4888888895511627, + "latitude": 0.22981366515159607, + "lensFlare": {}, + "lightIntensity": 0.1599999964237213, + "minHaze": 0, + "scale": Float32Array [ + 26.666667938232422, + 12.121182441711426, + ], + "speed": 0, + "texture": 186357, + "textureUV": Float32Array [ + 0, + 0.5124223828315735, + 1, + 0.7236024737358093, + ], + }, + "ext": {}, + "flags": 192121229, + "location": Float32Array [ + 0, + 0, + 0, + ], + "material": {}, + "name": "", + "night": { + "azimuth": -0.6634186506271362, + "brightness": 1.8818000555038452, + "density": 1, + "ext": {}, + "hazeDensity": 0.4888888895511627, + "latitude": 0.22981366515159607, + "lensFlare": {}, + "lightIntensity": 0.1599999964237213, + "minHaze": 0, + "scale": Float32Array [ + 26.666667938232422, + 12.121182441711426, + ], + "speed": 0, + "texture": 186357, + "textureUV": Float32Array [ + 0, + 0.5124223828315735, + 1, + 0.7236024737358093, + ], + }, + }, + { + "day": { + "azimuth": -0.8000086545944214, + "brightness": 1.8818000555038452, + "density": 0.7706859707832336, + "ext": {}, + "hazeDensity": 0.8770689964294434, + "latitude": 0.057777777314186096, + "lensFlare": {}, + "lightIntensity": 0.20852400362491608, + "minHaze": 0, + "scale": Float32Array [ + 15.11111068725586, + 6.868669509887695, + ], + "speed": 0, + "texture": 186357, + "textureUV": Float32Array [ + 0, + 0.5372670888900757, + 0.7360248565673828, + 0.54347825050354, + ], + }, + "ext": {}, + "flags": 192121229, + "location": Float32Array [ + 0, + 0, + 0, + ], + "material": {}, + "name": "", + "night": { + "azimuth": -0.8000086545944214, + "brightness": 1.8818000555038452, + "density": 0.7706859707832336, + "ext": {}, + "hazeDensity": 0.8770689964294434, + "latitude": 0.057777777314186096, + "lensFlare": {}, + "lightIntensity": 0.20852400362491608, + "minHaze": 0, + "scale": Float32Array [ + 15.11111068725586, + 6.868669509887695, + ], + "speed": 0, + "texture": 186357, + "textureUV": Float32Array [ + 0, + 0.5372670888900757, + 0.7360248565673828, + 0.54347825050354, + ], + }, + }, + { + "day": { + "azimuth": -1.4439165592193604, + "brightness": 1.8818000555038452, + "density": 0.7706859707832336, + "ext": {}, + "hazeDensity": 0.8770689964294434, + "latitude": 0.47555556893348694, + "lensFlare": {}, + "lightIntensity": 0.40888887643814087, + "minHaze": 0, + "scale": Float32Array [ + 8.88888931274414, + 4.040394306182861, + ], + "speed": 0, + "texture": 186357, + "textureUV": Float32Array [ + 0, + 0.5372670888900757, + 0.5288888812065125, + 0.3911111056804657, + ], + }, + "ext": {}, + "flags": 192121229, + "location": Float32Array [ + 0, + 0, + 0, + ], + "material": {}, + "name": "", + "night": { + "azimuth": -1.4439165592193604, + "brightness": 1.8818000555038452, + "density": 0.7706859707832336, + "ext": {}, + "hazeDensity": 0.8770689964294434, + "latitude": 0.47555556893348694, + "lensFlare": {}, + "lightIntensity": 0.40888887643814087, + "minHaze": 0, + "scale": Float32Array [ + 8.88888931274414, + 4.040394306182861, + ], + "speed": 0, + "texture": 186357, + "textureUV": Float32Array [ + 0, + 0.5372670888900757, + 0.5288888812065125, + 0.3911111056804657, + ], + }, + }, + { + "day": { + "azimuth": -2.0105462074279785, + "brightness": 1.8818000555038452, + "density": 0.7706859707832336, + "ext": {}, + "hazeDensity": 0.8770689964294434, + "latitude": 0.14906832575798035, + "lensFlare": {}, + "lightIntensity": 0.20852400362491608, + "minHaze": 0.03999999910593033, + "scale": Float32Array [ + 15.555556297302246, + 7.070689678192139, + ], + "speed": 0, + "texture": 186357, + "textureUV": Float32Array [ + 0, + 0.5372670888900757, + 0.3955555558204651, + 0.11555555462837219, + ], + }, + "ext": {}, + "flags": 192121229, + "location": Float32Array [ + 0, + 0, + 0, + ], + "material": {}, + "name": "", + "night": { + "azimuth": -2.0105462074279785, + "brightness": 1.8818000555038452, + "density": 0.7706859707832336, + "ext": {}, + "hazeDensity": 0.8770689964294434, + "latitude": 0.14906832575798035, + "lensFlare": {}, + "lightIntensity": 0.20852400362491608, + "minHaze": 0.03999999910593033, + "scale": Float32Array [ + 15.555556297302246, + 7.070689678192139, + ], + "speed": 0, + "texture": 186357, + "textureUV": Float32Array [ + 0, + 0.5372670888900757, + 0.3955555558204651, + 0.11555555462837219, + ], + }, + }, + { + "day": { + "azimuth": -2.8755855560302734, + "brightness": 1.8818000555038452, + "density": 0.7706859707832336, + "ext": {}, + "hazeDensity": 0.8770689964294434, + "latitude": 0.4919908344745636, + "lensFlare": {}, + "lightIntensity": 0.20852400362491608, + "minHaze": 0, + "scale": Float32Array [ + 21.33333396911621, + 4.192546367645264, + ], + "speed": 0, + "texture": 186357, + "textureUV": Float32Array [ + 0, + 0.5372670888900757, + 0.1111111119389534, + 0, + ], + }, + "ext": {}, + "flags": 192121229, + "location": Float32Array [ + 0, + 0, + 0, + ], + "material": {}, + "name": "", + "night": { + "azimuth": -2.5690460205078125, + "brightness": 1.8818000555038452, + "density": 0.7706859707832336, + "ext": {}, + "hazeDensity": 0.8770689964294434, + "latitude": 0.3822222352027893, + "lensFlare": {}, + "lightIntensity": 0.20852400362491608, + "minHaze": 0, + "scale": Float32Array [ + 21.33333396911621, + 4.192546367645264, + ], + "speed": 0, + "texture": 186357, + "textureUV": Float32Array [ + 0, + 0.5372670888900757, + 0.1111111119389534, + 0, + ], + }, + }, + { + "day": { + "azimuth": -3.7139620780944824, + "brightness": 1.8818000555038452, + "density": 0.7706859707832336, + "ext": {}, + "hazeDensity": 0.8770689964294434, + "latitude": 0.14906832575798035, + "lensFlare": {}, + "lightIntensity": 0.20852400362491608, + "minHaze": 0, + "scale": Float32Array [ + 21.33333396911621, + 4.192546367645264, + ], + "speed": 0, + "texture": 186357, + "textureUV": Float32Array [ + 0, + 0.5372670888900757, + 1, + 0.746666669845581, + ], + }, + "ext": {}, + "flags": 192121229, + "location": Float32Array [ + 0, + 0, + 0, + ], + "material": {}, + "name": "", + "night": { + "azimuth": -3.7139620780944824, + "brightness": 1.8818000555038452, + "density": 0.7706859707832336, + "ext": {}, + "hazeDensity": 0.8770689964294434, + "latitude": 0.14906832575798035, + "lensFlare": {}, + "lightIntensity": 0.20852400362491608, + "minHaze": 0, + "scale": Float32Array [ + 21.33333396911621, + 4.192546367645264, + ], + "speed": 0, + "texture": 186357, + "textureUV": Float32Array [ + 0, + 0.5372670888900757, + 1, + 0.746666669845581, + ], + }, + }, + { + "day": { + "azimuth": -3.4794726371765137, + "brightness": 1.8818000555038452, + "density": 0.7706859707832336, + "ext": {}, + "hazeDensity": 0.8770689964294434, + "latitude": 0.3822222352027893, + "lensFlare": {}, + "lightIntensity": 0.20852400362491608, + "minHaze": 0, + "scale": Float32Array [ + 18.66666603088379, + 7.780320167541504, + ], + "speed": 0, + "texture": 186357, + "textureUV": Float32Array [ + 0, + 0.5372670888900757, + 0.1111111119389534, + 0, + ], + }, + "ext": {}, + "flags": 192121229, + "location": Float32Array [ + 0, + 0, + 0, + ], + "material": {}, + "name": "", + "night": { + "azimuth": -3.0158603191375732, + "brightness": 1.8818000555038452, + "density": 0.7706859707832336, + "ext": {}, + "hazeDensity": 0.8770689964294434, + "latitude": 0.3822222352027893, + "lensFlare": {}, + "lightIntensity": 0.20852400362491608, + "minHaze": 0, + "scale": Float32Array [ + 18.66666603088379, + 3.668477773666382, + ], + "speed": 0, + "texture": 186357, + "textureUV": Float32Array [ + 0, + 0.5372670888900757, + 0.1111111119389534, + 0, + ], + }, + }, + { + "day": { + "azimuth": -0.9494397640228271, + "brightness": 1.8818000555038452, + "density": 0.7706859707832336, + "ext": {}, + "hazeDensity": 0.8770689964294434, + "latitude": 0.47555556893348694, + "lensFlare": {}, + "lightIntensity": 0.40888887643814087, + "minHaze": 0, + "scale": Float32Array [ + 12.44444465637207, + 5.656552314758301, + ], + "speed": 0, + "texture": 186357, + "textureUV": Float32Array [ + 0, + 0.5372670888900757, + 0.5288888812065125, + 0.3911111056804657, + ], + }, + "ext": {}, + "flags": 192121229, + "location": Float32Array [ + 0, + 0, + 0, + ], + "material": {}, + "name": "", + "night": { + "azimuth": -0.9494397640228271, + "brightness": 1.8818000555038452, + "density": 0.7706859707832336, + "ext": {}, + "hazeDensity": 0.8770689964294434, + "latitude": 0.47555556893348694, + "lensFlare": {}, + "lightIntensity": 0.40888887643814087, + "minHaze": 0, + "scale": Float32Array [ + 12.44444465637207, + 5.656552314758301, + ], + "speed": 0, + "texture": 186357, + "textureUV": Float32Array [ + 0, + 0.5372670888900757, + 0.5288888812065125, + 0.3911111056804657, + ], + }, + }, + { + "day": { + "azimuth": -5.724557399749756, + "brightness": 1.8818000555038452, + "density": 0.7706859707832336, + "ext": {}, + "hazeDensity": 0.8770689964294434, + "latitude": 0.15111111104488373, + "lensFlare": {}, + "lightIntensity": 0.20852400362491608, + "minHaze": 0, + "scale": Float32Array [ + 16.44444465637207, + 7.474728584289551, + ], + "speed": 0, + "texture": 186357, + "textureUV": Float32Array [ + 0, + 0.5372670888900757, + 0.7360248565673828, + 0.54347825050354, + ], + }, + "ext": {}, + "flags": 192121229, + "location": Float32Array [ + 0, + 0, + 0, + ], + "material": {}, + "name": "", + "night": { + "azimuth": -5.724557399749756, + "brightness": 1.8818000555038452, + "density": 0.7706859707832336, + "ext": {}, + "hazeDensity": 0.8770689964294434, + "latitude": 0.15111111104488373, + "lensFlare": {}, + "lightIntensity": 0.20852400362491608, + "minHaze": 0, + "scale": Float32Array [ + 16.44444465637207, + 7.474728584289551, + ], + "speed": 0, + "texture": 186357, + "textureUV": Float32Array [ + 0, + 0.5372670888900757, + 0.7360248565673828, + 0.54347825050354, + ], + }, + }, + { + "day": { + "azimuth": -4.495966911315918, + "brightness": 1.8818000555038452, + "density": 0.7706859707832336, + "ext": {}, + "hazeDensity": 0.8770689964294434, + "latitude": 0, + "lensFlare": {}, + "lightIntensity": 0.20852400362491608, + "minHaze": 0, + "scale": Float32Array [ + 20, + 9.090886116027832, + ], + "speed": 0, + "texture": 186357, + "textureUV": Float32Array [ + 0, + 0.5372670888900757, + 0.7360248565673828, + 0.54347825050354, + ], + }, + "ext": {}, + "flags": 192121229, + "location": Float32Array [ + 0, + 0, + 0, + ], + "material": {}, + "name": "", + "night": { + "azimuth": -4.495966911315918, + "brightness": 1.8818000555038452, + "density": 0.7706859707832336, + "ext": {}, + "hazeDensity": 0.8770689964294434, + "latitude": 0, + "lensFlare": {}, + "lightIntensity": 0.20852400362491608, + "minHaze": 0, + "scale": Float32Array [ + 20, + 9.090886116027832, + ], + "speed": 0, + "texture": 186357, + "textureUV": Float32Array [ + 0, + 0.5372670888900757, + 0.7360248565673828, + 0.54347825050354, + ], + }, + }, + { + "day": { + "azimuth": -0.018534453585743904, + "brightness": 1, + "density": 1, + "ext": {}, + "hazeDensity": 0, + "latitude": 0.30222222208976746, + "lensFlare": {}, + "lightIntensity": 0, + "minHaze": 0, + "scale": Float32Array [ + 29.333332061767578, + 29.333332061767578, + ], + "speed": 0, + "texture": 198253, + "textureUV": Float32Array [ + 0, + 1, + 1, + 0, + ], + }, + "ext": {}, + "flags": 1, + "location": Float32Array [ + 0, + 0, + 0, + ], + "material": {}, + "name": "", + "night": { + "azimuth": -0.018534453585743904, + "brightness": 1, + "density": 1, + "ext": {}, + "hazeDensity": 0, + "latitude": 0.30222222208976746, + "lensFlare": {}, + "lightIntensity": 0, + "minHaze": 0, + "scale": Float32Array [ + 29.333332061767578, + 29.333332061767578, + ], + "speed": 0, + "texture": 198253, + "textureUV": Float32Array [ + 0, + 1, + 1, + 0, + ], + }, + }, + { + "day": { + "azimuth": -5.361549377441406, + "brightness": 1, + "density": 1, + "ext": {}, + "hazeDensity": 0, + "latitude": 0.30222222208976746, + "lensFlare": {}, + "lightIntensity": 0, + "minHaze": 0, + "scale": Float32Array [ + 29.333332061767578, + 29.333332061767578, + ], + "speed": 0, + "texture": 198253, + "textureUV": Float32Array [ + 0, + 1, + 1, + 0, + ], + }, + "ext": {}, + "flags": 1, + "location": Float32Array [ + 0, + 0, + 0, + ], + "material": {}, + "name": "", + "night": { + "azimuth": -5.361549377441406, + "brightness": 1, + "density": 1, + "ext": {}, + "hazeDensity": 0, + "latitude": 0.30222222208976746, + "lensFlare": {}, + "lightIntensity": 0, + "minHaze": 0, + "scale": Float32Array [ + 29.333332061767578, + 29.333332061767578, + ], + "speed": 0, + "texture": 198253, + "textureUV": Float32Array [ + 0, + 1, + 1, + 0, + ], + }, + }, + { + "day": { + "azimuth": -1.4271421432495117, + "brightness": 1, + "density": 1, + "ext": {}, + "hazeDensity": 0, + "latitude": 0.3777777850627899, + "lensFlare": {}, + "lightIntensity": 0, + "minHaze": 0, + "scale": Float32Array [ + 29.333332061767578, + 29.333332061767578, + ], + "speed": 0, + "texture": 198253, + "textureUV": Float32Array [ + 0, + 1, + 1, + 0, + ], + }, + "ext": {}, + "flags": 1, + "location": Float32Array [ + 0, + 0, + 0, + ], + "material": {}, + "name": "", + "night": { + "azimuth": -1.4271421432495117, + "brightness": 1, + "density": 1, + "ext": {}, + "hazeDensity": 0, + "latitude": 0.3777777850627899, + "lensFlare": {}, + "lightIntensity": 0, + "minHaze": 0, + "scale": Float32Array [ + 29.333332061767578, + 29.333332061767578, + ], + "speed": 0, + "texture": 198253, + "textureUV": Float32Array [ + 0, + 1, + 1, + 0, + ], + }, + }, + { + "day": { + "azimuth": -3.5464465618133545, + "brightness": 1, + "density": 1, + "ext": {}, + "hazeDensity": 0, + "latitude": 0.0533333346247673, + "lensFlare": {}, + "lightIntensity": 0, + "minHaze": 0, + "scale": Float32Array [ + 29.333332061767578, + 29.333332061767578, + ], + "speed": 0, + "texture": 198253, + "textureUV": Float32Array [ + 0, + 1, + 1, + 0, + ], + }, + "ext": {}, + "flags": 1, + "location": Float32Array [ + 0, + 0, + 0, + ], + "material": {}, + "name": "", + "night": { + "azimuth": -3.5464465618133545, + "brightness": 1, + "density": 1, + "ext": {}, + "hazeDensity": 0, + "latitude": 0.0533333346247673, + "lensFlare": {}, + "lightIntensity": 0, + "minHaze": 0, + "scale": Float32Array [ + 29.333332061767578, + 29.333332061767578, + ], + "speed": 0, + "texture": 198253, + "textureUV": Float32Array [ + 0, + 1, + 1, + 0, + ], + }, + }, + ], + }, + "spawns": {}, + "type": 5, + "water": [ + { + "animAmplitude": 0.004240409936755896, + "animChoppiness": 0.05899700149893761, + "animWind": Float32Array [ + 4.969880104064941, + 1.9578291177749634, + ], + "bumpAmount": 150.36099243164062, + "bumpAngle0": -180, + "bumpAngle1": -178.35400390625, + "bumpScale0": 0.04420730099081993, + "bumpScale1": 0.04420730099081993, + "bumpSpeed0": 0.45121899247169495, + "bumpSpeed1": 0.4024389982223511, + "bumpTile0": 12.146300315856934, + "bumpTile1": 13.780500411987305, + "constantTokens": Uint32Array [ + 809906891, + 911119242, + 910462480, + 808137754, + 814574097, + 807298231, + 813734574, + 3101301168, + 1324870500, + 1472906389, + 2953265279, + 3427729611, + 1355227165, + 2983621944, + ], + "constantValues": [ + Float32Array [ + 1, + 1, + 1, + 255, + ], + Float32Array [ + 0, + 0, + 0, + 1, + ], + Float32Array [ + 130, + 0, + 0, + 0, + ], + Float32Array [ + 1, + 10, + 4, + 0, + ], + Float32Array [ + 0.4892759919166565, + 0.4490619897842407, + 0.041554998606443405, + 0.9021450281143188, + ], + Float32Array [ + 0.20495499670505524, + 8, + 4, + 0, + ], + Float32Array [ + 1.5, + 0.8176940083503723, + 0.683646023273468, + 0.7747989892959595, + ], + Float32Array [ + 0, + 0, + 0, + 0, + ], + Float32Array [ + 0, + 0, + 0, + 0, + ], + Float32Array [ + 0, + 0, + 0, + 0, + ], + Float32Array [ + 0, + 0, + 0, + 0, + ], + Float32Array [ + 0, + 0, + 0, + 0, + ], + Float32Array [ + 0, + 0, + 0, + 0, + ], + Float32Array [ + 0, + 0, + 0, + 0, + ], + ], + "depthAttenuation": 54.0442008972168, + "distortAmount": 0.00009999999747378752, + "foamColor0": Uint8Array [ + 0, + 0, + 0, + 0, + ], + "foamColor1": Uint8Array [ + 0, + 0, + 0, + 0, + ], + "foamDepthAttenuation": 0, + "foamDissolve": 0, + "foamSpawn": 0, + "materialFilename": 187551, + "patternAngle": -9.759039878845215, + "patternColor": Uint8Array [ + 58, + 63, + 0, + 111, + ], + "patternEdge": 0.09383749961853027, + "patternSpeed": 0.3313249945640564, + "patternTile": 3.8767499923706055, + "surfaceDeepColor": Uint8Array [ + 87, + 59, + 17, + 0, + ], + "surfaceFresnel": 3.727030038833618, + "surfaceShallowColor": Uint8Array [ + 181, + 112, + 31, + 0, + ], + "textureFilenames": [ + 0, + 188570, + 506590, + 187574, + 190961, + ], + "waterFlags": 1, + }, + { + "animAmplitude": 0.004240409936755896, + "animChoppiness": 0.05899700149893761, + "animWind": Float32Array [ + 4.969880104064941, + 1.9578291177749634, + ], + "bumpAmount": 150.36099243164062, + "bumpAngle0": -180, + "bumpAngle1": -178.35400390625, + "bumpScale0": 0.04420730099081993, + "bumpScale1": 0.04420730099081993, + "bumpSpeed0": 0.45121899247169495, + "bumpSpeed1": 0.4024389982223511, + "bumpTile0": 12.146300315856934, + "bumpTile1": 13.780500411987305, + "constantTokens": Uint32Array [ + 809906891, + 911119242, + 910462480, + 808137754, + 814574097, + 807298231, + 813734574, + 3101301168, + 1324870500, + 1472906389, + 2953265279, + 3427729611, + 1355227165, + 2983621944, + ], + "constantValues": [ + Float32Array [ + 1, + 1, + 1, + 255, + ], + Float32Array [ + 0, + 0, + 0, + 1, + ], + Float32Array [ + 130, + 0, + 0, + 0, + ], + Float32Array [ + 1, + 10, + 4, + 0, + ], + Float32Array [ + 0.4892759919166565, + 0.4490619897842407, + 0.041554998606443405, + 0.9021450281143188, + ], + Float32Array [ + 0.20495499670505524, + 8, + 4, + 0, + ], + Float32Array [ + 1.5, + 0.8176940083503723, + 0.683646023273468, + 0.7747989892959595, + ], + Float32Array [ + 0, + 0, + 0, + 0, + ], + Float32Array [ + 0, + 0, + 0, + 0, + ], + Float32Array [ + 0, + 0, + 0, + 0, + ], + Float32Array [ + 0, + 0, + 0, + 0, + ], + Float32Array [ + 0, + 0, + 0, + 0, + ], + Float32Array [ + 0, + 0, + 0, + 0, + ], + Float32Array [ + 0, + 0, + 0, + 0, + ], + ], + "depthAttenuation": 54.0442008972168, + "distortAmount": 0.00009999999747378752, + "foamColor0": Uint8Array [ + 0, + 0, + 0, + 0, + ], + "foamColor1": Uint8Array [ + 0, + 0, + 0, + 0, + ], + "foamDepthAttenuation": 0, + "foamDissolve": 0, + "foamSpawn": 0, + "materialFilename": 187551, + "patternAngle": -9.759039878845215, + "patternColor": Uint8Array [ + 58, + 63, + 0, + 111, + ], + "patternEdge": 0.09383749961853027, + "patternSpeed": 0.3313249945640564, + "patternTile": 3.8767499923706055, + "surfaceDeepColor": Uint8Array [ + 87, + 59, + 17, + 0, + ], + "surfaceFresnel": 3.727030038833618, + "surfaceShallowColor": Uint8Array [ + 181, + 112, + 31, + 0, + ], + "textureFilenames": [ + 0, + 188570, + 506590, + 187574, + 190961, + ], + "waterFlags": 1, + }, + { + "animAmplitude": 0, + "animChoppiness": 0, + "animWind": Float32Array [ + -90.00000762939453, + -29.9999942779541, + ], + "bumpAmount": 300, + "bumpAngle0": -15.132743835449219, + "bumpAngle1": 40, + "bumpScale0": 0.10000000149011612, + "bumpScale1": 0.10000000149011612, + "bumpSpeed0": 1, + "bumpSpeed1": 1, + "bumpTile0": 1.7999999523162842, + "bumpTile1": 2.5999999046325684, + "constantTokens": Uint32Array [ + 3101301168, + 1324870500, + 1472906389, + 2953265279, + 3427729611, + 1355227165, + 2983621944, + 2541789506, + ], + "constantValues": [ + Float32Array [ + 0, + 0, + 0, + 0, + ], + Float32Array [ + 0, + 0, + 0, + 0, + ], + Float32Array [ + 0, + 0, + 0, + 0, + ], + Float32Array [ + 0, + 0, + 0, + 0, + ], + Float32Array [ + 0, + 0, + 0, + 0, + ], + Float32Array [ + 0, + 0, + 0, + 0, + ], + Float32Array [ + 0, + 0, + 0, + 0, + ], + Float32Array [ + 0.11924119293689728, + 0, + 0, + 0, + ], + ], + "depthAttenuation": 181.2543487548828, + "distortAmount": 0.0030326922424137592, + "foamColor0": Uint8Array [ + 51, + 126, + 174, + 38, + ], + "foamColor1": Uint8Array [ + 255, + 255, + 255, + 191, + ], + "foamDepthAttenuation": 0.8999999761581421, + "foamDissolve": 0.949999988079071, + "foamSpawn": 0.5, + "materialFilename": 188555, + "patternAngle": 0, + "patternColor": Uint8Array [ + 255, + 255, + 255, + 1, + ], + "patternEdge": 1, + "patternSpeed": 1.02173912525177, + "patternTile": 2.0173912048339844, + "surfaceDeepColor": Uint8Array [ + 50, + 16, + 9, + 0, + ], + "surfaceFresnel": 2.763636350631714, + "surfaceShallowColor": Uint8Array [ + 172, + 184, + 111, + 0, + ], + "textureFilenames": [ + 0, + 188570, + 187580, + ], + "waterFlags": 1, + }, + ], + "wind": [], + }, + { + "audio": [ + { + "token": 28244955309106n, + }, + { + "token": 0n, + }, + ], + "bindTarget": 0n, + "clouds": { + "layers": [ + { + "altitude": 182.37081909179688, + "attributes": [ + { + "brightness": 1, + "density": 1, + "fadeEnd": 16, + "fadeWidth": 33.333335876464844, + "haze": 1, + "lightIntensity": 0.9083665609359741, + "reserved": 0, + "velocity": Float32Array [ + -15.197574615478516, + 33.43463134765625, + ], + }, + { + "brightness": 1, + "density": 1, + "fadeEnd": 16, + "fadeWidth": 33.333335876464844, + "haze": 1, + "lightIntensity": 0.9083665609359741, + "reserved": 0, + "velocity": Float32Array [ + -15.197574615478516, + 33.43463134765625, + ], + }, + { + "brightness": 1, + "density": 1, + "fadeEnd": 16, + "fadeWidth": 33.333335876464844, + "haze": 1, + "lightIntensity": 1, + "reserved": 0, + "velocity": Float32Array [ + 0, + 0, + ], + }, + ], + "cutOut": 1000, + "depth": 0.05019920691847801, + "extent": 1, + "name": "bottom", + "reserved": 0, + "scale": 4.042553424835205, + "texture": 189255, + }, + { + "altitude": 5015.19775390625, + "attributes": [ + { + "brightness": 1, + "density": 1, + "fadeEnd": 33.130699157714844, + "fadeWidth": 30.69908905029297, + "haze": 0.030395137146115303, + "lightIntensity": 1, + "reserved": 0, + "velocity": Float32Array [ + 142.85719299316406, + 15.197515487670898, + ], + }, + { + "brightness": 1, + "density": 1, + "fadeEnd": 33.130699157714844, + "fadeWidth": 30.69908905029297, + "haze": 0.030395137146115303, + "lightIntensity": 1, + "reserved": 0, + "velocity": Float32Array [ + 142.85719299316406, + 15.197515487670898, + ], + }, + { + "brightness": 1, + "density": 1, + "fadeEnd": 33.130699157714844, + "fadeWidth": 30.69908905029297, + "haze": 1, + "lightIntensity": 1, + "reserved": 0, + "velocity": Float32Array [ + 0, + 0, + ], + }, + ], + "cutOut": 820.668701171875, + "depth": 0.09726443886756897, + "extent": 1, + "name": "Top", + "reserved": 0, + "scale": 0.9118541479110718, + "texture": 195776, + }, + ], + }, + "coloredLightRings": [], + "effect": [], + "ext": { + "brightMax": 0.5, + "brightMin": 0.30000001192092896, + "brightScale": 1, + "brightTime": 2.5, + "darkCoeff": 1.2000000476837158, + "darkExp": 0.800000011920929, + "darkMax": 0.30000001192092896, + "darkMin": 0.10000000149011612, + "darkScale": 1, + "dimTime": 5, + "ext2": {}, + "waterReflectionParams": Float32Array [ + 0, + 0, + 0, + 0, + ], + }, + "flags": 0, + "guid": 1591603543178026529n, + "haze": [ + { + "depthCue": 0.001962388399988413, + "distRange": Float32Array [ + 2313.2529296875, + 5461.84716796875, + ], + "farColor": Uint8Array [ + 8, + 22, + 7, + 255, + ], + "heightColor": Uint8Array [ + 0, + 0, + 0, + 255, + ], + "heightRange": Float32Array [ + -6006.0927734375, + -4538.15185546875, + ], + "nearColor": Uint8Array [ + 89, + 110, + 88, + 255, + ], + "sunDirRange": Float32Array [ + -1, + 1, + ], + }, + { + "depthCue": 0.0009278954239562154, + "distRange": Float32Array [ + 2313.2529296875, + 13590.7333984375, + ], + "farColor": Uint8Array [ + 8, + 22, + 7, + 255, + ], + "heightColor": Uint8Array [ + 0, + 0, + 0, + 255, + ], + "heightRange": Float32Array [ + -1681.767333984375, + -213.826416015625, + ], + "nearColor": Uint8Array [ + 89, + 110, + 88, + 255, + ], + "sunDirRange": Float32Array [ + -1, + 1, + ], + }, + { + "depthCue": 1, + "distRange": Float32Array [ + 352.94110107421875, + 1633.6336669921875, + ], + "farColor": Uint8Array [ + 202, + 246, + 96, + 255, + ], + "heightColor": Uint8Array [ + 77, + 104, + 13, + 255, + ], + "heightRange": Float32Array [ + 539.2158203125, + 1960.7841796875, + ], + "nearColor": Uint8Array [ + 242, + 249, + 197, + 255, + ], + "sunDirRange": Float32Array [ + 0, + 0, + ], + }, + ], + "lighting": [], + "lightingCharGroups": [], + "name": "", + "nightMods": Uint8Array [ + 255, + 255, + 255, + 133, + ], + "particleFieldCutouts": [], + "particleFields": [ + { + "altitude": 0, + "angle": Float32Array [ + 0, + 0, + ], + "clusterCount": 0, + "clustering": Float32Array [ + 0, + 0, + ], + "depth": 0, + "deviation": 0, + "deviationSpeed": Float32Array [ + 0, + 0, + ], + "extent": 0, + "fade": 0, + "fieldDirection": Float32Array [ + 0, + 0, + 0, + ], + "flags": 0, + "lifetime": Float32Array [ + 0, + 0, + ], + "name": "", + "opacity": Float32Array [ + 0, + 0, + ], + "particleCount": 0, + "period": Float32Array [ + 0, + 0, + ], + "reserved": 0, + "rotation": Float32Array [ + 0, + 0, + ], + "scaleX": Float32Array [ + 0, + 0, + ], + "scaleY": Float32Array [ + 0, + 0, + ], + "seed": 0, + "speed": Float32Array [ + 0, + 0, + ], + "texColRow": Uint32Array [ + 0, + 0, + ], + "texFPS": 0, + "texPath": 0, + "type": 0, + }, + ], + "shapeArray": [ + { + "center": Float32Array [ + -6824.4716796875, + -7543.06884765625, + -219.947998046875, + ], + "fadeHorizInner": 0, + "fadeHorizOuter": 0, + "fadeVertical": 0, + "height": 3842.3212890625, + "shapeType": 2, + "vertexArray": [ + Float32Array [ + -9714.888671875, + -5062.17724609375, + ], + Float32Array [ + -4600.419921875, + -4638.4638671875, + ], + Float32Array [ + -3934.05517578125, + -9628.6845703125, + ], + Float32Array [ + -8664.6337890625, + -10447.673828125, + ], + ], + }, + ], + "sky": { + "dayBrightness": 1, + "dayHazeBottom": 0.17611940205097198, + "dayHazeDensity": 2, + "dayHazeFalloff": 0.28656715154647827, + "dayLightIntensity": 1, + "dayStarDensity": 0, + "flags": 0, + "nightBrightness": 1, + "nightHazeBottom": 0.17611940205097198, + "nightHazeDensity": 2, + "nightHazeFalloff": 0.28656715154647827, + "nightLightIntensity": 1, + "nightStarDensity": 0, + "verticalOffset": -54029.8515625, + }, + "skyCards": { + "cards": [ + { + "day": { + "azimuth": -3.004908561706543, + "brightness": 1, + "density": 1, + "ext": {}, + "hazeDensity": 0, + "latitude": 0.5531914830207825, + "lensFlare": {}, + "lightIntensity": 1, + "minHaze": 0, + "scale": Float32Array [ + 4.968944072723389, + 4.968944072723389, + ], + "speed": 0, + "texture": 504870, + "textureUV": Float32Array [ + 0, + 1, + 1, + 0, + ], + }, + "ext": {}, + "flags": 192121728, + "location": Float32Array [ + 0, + 0, + 0, + ], + "material": {}, + "name": "Moon", + "night": { + "azimuth": -3.004908561706543, + "brightness": 1, + "density": 1, + "ext": {}, + "hazeDensity": 0, + "latitude": 0.5531914830207825, + "lensFlare": {}, + "lightIntensity": 1, + "minHaze": 0, + "scale": Float32Array [ + 4.968944072723389, + 4.968944072723389, + ], + "speed": 0, + "texture": 504870, + "textureUV": Float32Array [ + 0, + 1, + 1, + 0, + ], + }, + }, + { + "day": { + "azimuth": -0.6634225845336914, + "brightness": 1.8818000555038452, + "density": 1, + "ext": {}, + "hazeDensity": 0.4888888895511627, + "latitude": 0.22981366515159607, + "lensFlare": {}, + "lightIntensity": 0.1599999964237213, + "minHaze": 0, + "scale": Float32Array [ + 26.666667938232422, + 12.121182441711426, + ], + "speed": 0, + "texture": 186357, + "textureUV": Float32Array [ + 0, + 0.5124223828315735, + 1, + 0.7236024737358093, + ], + }, + "ext": {}, + "flags": 192121229, + "location": Float32Array [ + 0, + 0, + 0, + ], + "material": {}, + "name": "card0", + "night": { + "azimuth": -0.6634225845336914, + "brightness": 1.8818000555038452, + "density": 1, + "ext": {}, + "hazeDensity": 0.4888888895511627, + "latitude": 0.22981366515159607, + "lensFlare": {}, + "lightIntensity": 0.1599999964237213, + "minHaze": 0, + "scale": Float32Array [ + 26.666667938232422, + 12.121182441711426, + ], + "speed": 0, + "texture": 186357, + "textureUV": Float32Array [ + 0, + 0.5124223828315735, + 1, + 0.7236024737358093, + ], + }, + }, + { + "day": { + "azimuth": -0.8000131249427795, + "brightness": 1.8818000555038452, + "density": 0.7706859707832336, + "ext": {}, + "hazeDensity": 0.8770689964294434, + "latitude": 0.057777777314186096, + "lensFlare": {}, + "lightIntensity": 0.20852400362491608, + "minHaze": 0, + "scale": Float32Array [ + 15.11111068725586, + 6.868669509887695, + ], + "speed": 0, + "texture": 186357, + "textureUV": Float32Array [ + 0, + 0.5372670888900757, + 0.7360248565673828, + 0.54347825050354, + ], + }, + "ext": {}, + "flags": 192121229, + "location": Float32Array [ + 0, + 0, + 0, + ], + "material": {}, + "name": "card0", + "night": { + "azimuth": -0.8000131249427795, + "brightness": 1.8818000555038452, + "density": 0.7706859707832336, + "ext": {}, + "hazeDensity": 0.8770689964294434, + "latitude": 0.057777777314186096, + "lensFlare": {}, + "lightIntensity": 0.20852400362491608, + "minHaze": 0, + "scale": Float32Array [ + 15.11111068725586, + 6.868669509887695, + ], + "speed": 0, + "texture": 186357, + "textureUV": Float32Array [ + 0, + 0.5372670888900757, + 0.7360248565673828, + 0.54347825050354, + ], + }, + }, + { + "day": { + "azimuth": -1.4439250230789185, + "brightness": 1.8818000555038452, + "density": 0.7706859707832336, + "ext": {}, + "hazeDensity": 0.8770689964294434, + "latitude": 0.47555556893348694, + "lensFlare": {}, + "lightIntensity": 0.40888887643814087, + "minHaze": 0, + "scale": Float32Array [ + 8.88888931274414, + 4.040394306182861, + ], + "speed": 0, + "texture": 186357, + "textureUV": Float32Array [ + 0, + 0.5372670888900757, + 0.5288888812065125, + 0.3911111056804657, + ], + }, + "ext": {}, + "flags": 192121229, + "location": Float32Array [ + 0, + 0, + 0, + ], + "material": {}, + "name": "card0", + "night": { + "azimuth": -1.4439250230789185, + "brightness": 1.8818000555038452, + "density": 0.7706859707832336, + "ext": {}, + "hazeDensity": 0.8770689964294434, + "latitude": 0.47555556893348694, + "lensFlare": {}, + "lightIntensity": 0.40888887643814087, + "minHaze": 0, + "scale": Float32Array [ + 8.88888931274414, + 4.040394306182861, + ], + "speed": 0, + "texture": 186357, + "textureUV": Float32Array [ + 0, + 0.5372670888900757, + 0.5288888812065125, + 0.3911111056804657, + ], + }, + }, + { + "day": { + "azimuth": -2.0105602741241455, + "brightness": 1.8818000555038452, + "density": 0.7706859707832336, + "ext": {}, + "hazeDensity": 0.8770689964294434, + "latitude": 0.14906832575798035, + "lensFlare": {}, + "lightIntensity": 0.20852400362491608, + "minHaze": 0.03999999910593033, + "scale": Float32Array [ + 15.555556297302246, + 7.070689678192139, + ], + "speed": 0, + "texture": 186357, + "textureUV": Float32Array [ + 0, + 0.5372670888900757, + 0.3955555558204651, + 0.11555555462837219, + ], + }, + "ext": {}, + "flags": 192121229, + "location": Float32Array [ + 0, + 0, + 0, + ], + "material": {}, + "name": "card0", + "night": { + "azimuth": -2.0105602741241455, + "brightness": 1.8818000555038452, + "density": 0.7706859707832336, + "ext": {}, + "hazeDensity": 0.8770689964294434, + "latitude": 0.14906832575798035, + "lensFlare": {}, + "lightIntensity": 0.20852400362491608, + "minHaze": 0.03999999910593033, + "scale": Float32Array [ + 15.555556297302246, + 7.070689678192139, + ], + "speed": 0, + "texture": 186357, + "textureUV": Float32Array [ + 0, + 0.5372670888900757, + 0.3955555558204651, + 0.11555555462837219, + ], + }, + }, + { + "day": { + "azimuth": -2.569061756134033, + "brightness": 1.8818000555038452, + "density": 0.7706859707832336, + "ext": {}, + "hazeDensity": 0.8770689964294434, + "latitude": 0.3822222352027893, + "lensFlare": {}, + "lightIntensity": 0.20852400362491608, + "minHaze": 0, + "scale": Float32Array [ + 21.33333396911621, + 4.192546367645264, + ], + "speed": 0, + "texture": 186357, + "textureUV": Float32Array [ + 0, + 0.5372670888900757, + 0.1111111119389534, + 0, + ], + }, + "ext": {}, + "flags": 192121229, + "location": Float32Array [ + 0, + 0, + 0, + ], + "material": {}, + "name": "card0", + "night": { + "azimuth": -2.569061756134033, + "brightness": 1.8818000555038452, + "density": 0.7706859707832336, + "ext": {}, + "hazeDensity": 0.8770689964294434, + "latitude": 0.3822222352027893, + "lensFlare": {}, + "lightIntensity": 0.20852400362491608, + "minHaze": 0, + "scale": Float32Array [ + 21.33333396911621, + 4.192546367645264, + ], + "speed": 0, + "texture": 186357, + "textureUV": Float32Array [ + 0, + 0.5372670888900757, + 0.1111111119389534, + 0, + ], + }, + }, + { + "day": { + "azimuth": -3.713982582092285, + "brightness": 1.8818000555038452, + "density": 0.7706859707832336, + "ext": {}, + "hazeDensity": 0.8770689964294434, + "latitude": 0.14906832575798035, + "lensFlare": {}, + "lightIntensity": 0.20852400362491608, + "minHaze": 0, + "scale": Float32Array [ + 21.33333396911621, + 4.192546367645264, + ], + "speed": 0, + "texture": 186357, + "textureUV": Float32Array [ + 0, + 0.5372670888900757, + 1, + 0.746666669845581, + ], + }, + "ext": {}, + "flags": 192121229, + "location": Float32Array [ + 0, + 0, + 0, + ], + "material": {}, + "name": "card0", + "night": { + "azimuth": -3.713982582092285, + "brightness": 1.8818000555038452, + "density": 0.7706859707832336, + "ext": {}, + "hazeDensity": 0.8770689964294434, + "latitude": 0.14906832575798035, + "lensFlare": {}, + "lightIntensity": 0.20852400362491608, + "minHaze": 0, + "scale": Float32Array [ + 21.33333396911621, + 4.192546367645264, + ], + "speed": 0, + "texture": 186357, + "textureUV": Float32Array [ + 0, + 0.5372670888900757, + 1, + 0.746666669845581, + ], + }, + }, + { + "day": { + "azimuth": -3.0158779621124268, + "brightness": 1.8818000555038452, + "density": 0.7706859707832336, + "ext": {}, + "hazeDensity": 0.8770689964294434, + "latitude": 0.3822222352027893, + "lensFlare": {}, + "lightIntensity": 0.20852400362491608, + "minHaze": 0, + "scale": Float32Array [ + 18.66666603088379, + 3.668477773666382, + ], + "speed": 0, + "texture": 186357, + "textureUV": Float32Array [ + 0, + 0.5372670888900757, + 0.1111111119389534, + 0, + ], + }, + "ext": {}, + "flags": 192121229, + "location": Float32Array [ + 0, + 0, + 0, + ], + "material": {}, + "name": "card0", + "night": { + "azimuth": -3.0158779621124268, + "brightness": 1.8818000555038452, + "density": 0.7706859707832336, + "ext": {}, + "hazeDensity": 0.8770689964294434, + "latitude": 0.3822222352027893, + "lensFlare": {}, + "lightIntensity": 0.20852400362491608, + "minHaze": 0, + "scale": Float32Array [ + 18.66666603088379, + 3.668477773666382, + ], + "speed": 0, + "texture": 186357, + "textureUV": Float32Array [ + 0, + 0.5372670888900757, + 0.1111111119389534, + 0, + ], + }, + }, + { + "day": { + "azimuth": -0.9494448900222778, + "brightness": 1.8818000555038452, + "density": 0.7706859707832336, + "ext": {}, + "hazeDensity": 0.8770689964294434, + "latitude": 0.47555556893348694, + "lensFlare": {}, + "lightIntensity": 0.40888887643814087, + "minHaze": 0, + "scale": Float32Array [ + 12.44444465637207, + 5.656552314758301, + ], + "speed": 0, + "texture": 186357, + "textureUV": Float32Array [ + 0, + 0.5372670888900757, + 0.5288888812065125, + 0.3911111056804657, + ], + }, + "ext": {}, + "flags": 192121229, + "location": Float32Array [ + 0, + 0, + 0, + ], + "material": {}, + "name": "card0", + "night": { + "azimuth": -0.9494448900222778, + "brightness": 1.8818000555038452, + "density": 0.7706859707832336, + "ext": {}, + "hazeDensity": 0.8770689964294434, + "latitude": 0.47555556893348694, + "lensFlare": {}, + "lightIntensity": 0.40888887643814087, + "minHaze": 0, + "scale": Float32Array [ + 12.44444465637207, + 5.656552314758301, + ], + "speed": 0, + "texture": 186357, + "textureUV": Float32Array [ + 0, + 0.5372670888900757, + 0.5288888812065125, + 0.3911111056804657, + ], + }, + }, + { + "day": { + "azimuth": -5.72459077835083, + "brightness": 1.8818000555038452, + "density": 0.7706859707832336, + "ext": {}, + "hazeDensity": 0.8770689964294434, + "latitude": 0.15111111104488373, + "lensFlare": {}, + "lightIntensity": 0.20852400362491608, + "minHaze": 0, + "scale": Float32Array [ + 16.44444465637207, + 7.474728584289551, + ], + "speed": 0, + "texture": 186357, + "textureUV": Float32Array [ + 0, + 0.5372670888900757, + 0.7360248565673828, + 0.54347825050354, + ], + }, + "ext": {}, + "flags": 192121229, + "location": Float32Array [ + 0, + 0, + 0, + ], + "material": {}, + "name": "card0", + "night": { + "azimuth": -5.72459077835083, + "brightness": 1.8818000555038452, + "density": 0.7706859707832336, + "ext": {}, + "hazeDensity": 0.8770689964294434, + "latitude": 0.15111111104488373, + "lensFlare": {}, + "lightIntensity": 0.20852400362491608, + "minHaze": 0, + "scale": Float32Array [ + 16.44444465637207, + 7.474728584289551, + ], + "speed": 0, + "texture": 186357, + "textureUV": Float32Array [ + 0, + 0.5372670888900757, + 0.7360248565673828, + 0.54347825050354, + ], + }, + }, + { + "day": { + "azimuth": -4.495966911315918, + "brightness": 1.8818000555038452, + "density": 0.7706859707832336, + "ext": {}, + "hazeDensity": 0.8770689964294434, + "latitude": 0, + "lensFlare": {}, + "lightIntensity": 0.20852400362491608, + "minHaze": 0, + "scale": Float32Array [ + 20, + 9.090886116027832, + ], + "speed": 0, + "texture": 186357, + "textureUV": Float32Array [ + 0, + 0.5372670888900757, + 0.7360248565673828, + 0.54347825050354, + ], + }, + "ext": {}, + "flags": 192121229, + "location": Float32Array [ + 0, + 0, + 0, + ], + "material": {}, + "name": "card0", + "night": { + "azimuth": -4.495966911315918, + "brightness": 1.8818000555038452, + "density": 0.7706859707832336, + "ext": {}, + "hazeDensity": 0.8770689964294434, + "latitude": 0, + "lensFlare": {}, + "lightIntensity": 0.20852400362491608, + "minHaze": 0, + "scale": Float32Array [ + 20, + 9.090886116027832, + ], + "speed": 0, + "texture": 186357, + "textureUV": Float32Array [ + 0, + 0.5372670888900757, + 0.7360248565673828, + 0.54347825050354, + ], + }, + }, + { + "day": { + "azimuth": -0.018534453585743904, + "brightness": 1, + "density": 1, + "ext": {}, + "hazeDensity": 0, + "latitude": 0.30222222208976746, + "lensFlare": {}, + "lightIntensity": 0, + "minHaze": 0, + "scale": Float32Array [ + 29.333332061767578, + 29.333332061767578, + ], + "speed": 0, + "texture": 198253, + "textureUV": Float32Array [ + 0, + 1, + 1, + 0, + ], + }, + "ext": {}, + "flags": 1, + "location": Float32Array [ + 0, + 0, + 0, + ], + "material": {}, + "name": "Stars", + "night": { + "azimuth": -0.018534453585743904, + "brightness": 1, + "density": 1, + "ext": {}, + "hazeDensity": 0, + "latitude": 0.30222222208976746, + "lensFlare": {}, + "lightIntensity": 0, + "minHaze": 0, + "scale": Float32Array [ + 29.333332061767578, + 29.333332061767578, + ], + "speed": 0, + "texture": 198253, + "textureUV": Float32Array [ + 0, + 1, + 1, + 0, + ], + }, + }, + { + "day": { + "azimuth": -5.361580848693848, + "brightness": 1, + "density": 1, + "ext": {}, + "hazeDensity": 0, + "latitude": 0.30222222208976746, + "lensFlare": {}, + "lightIntensity": 0, + "minHaze": 0, + "scale": Float32Array [ + 29.333332061767578, + 29.333332061767578, + ], + "speed": 0, + "texture": 198253, + "textureUV": Float32Array [ + 0, + 1, + 1, + 0, + ], + }, + "ext": {}, + "flags": 1, + "location": Float32Array [ + 0, + 0, + 0, + ], + "material": {}, + "name": "Stars", + "night": { + "azimuth": -5.361580848693848, + "brightness": 1, + "density": 1, + "ext": {}, + "hazeDensity": 0, + "latitude": 0.30222222208976746, + "lensFlare": {}, + "lightIntensity": 0, + "minHaze": 0, + "scale": Float32Array [ + 29.333332061767578, + 29.333332061767578, + ], + "speed": 0, + "texture": 198253, + "textureUV": Float32Array [ + 0, + 1, + 1, + 0, + ], + }, + }, + { + "day": { + "azimuth": -1.4271504878997803, + "brightness": 1, + "density": 1, + "ext": {}, + "hazeDensity": 0, + "latitude": 0.3777777850627899, + "lensFlare": {}, + "lightIntensity": 0, + "minHaze": 0, + "scale": Float32Array [ + 29.333332061767578, + 29.333332061767578, + ], + "speed": 0, + "texture": 198253, + "textureUV": Float32Array [ + 0, + 1, + 1, + 0, + ], + }, + "ext": {}, + "flags": 1, + "location": Float32Array [ + 0, + 0, + 0, + ], + "material": {}, + "name": "Stars", + "night": { + "azimuth": -1.4271504878997803, + "brightness": 1, + "density": 1, + "ext": {}, + "hazeDensity": 0, + "latitude": 0.3777777850627899, + "lensFlare": {}, + "lightIntensity": 0, + "minHaze": 0, + "scale": Float32Array [ + 29.333332061767578, + 29.333332061767578, + ], + "speed": 0, + "texture": 198253, + "textureUV": Float32Array [ + 0, + 1, + 1, + 0, + ], + }, + }, + { + "day": { + "azimuth": -3.5464670658111572, + "brightness": 1, + "density": 1, + "ext": {}, + "hazeDensity": 0, + "latitude": 0.0533333346247673, + "lensFlare": {}, + "lightIntensity": 0, + "minHaze": 0, + "scale": Float32Array [ + 29.333332061767578, + 29.333332061767578, + ], + "speed": 0, + "texture": 198253, + "textureUV": Float32Array [ + 0, + 1, + 1, + 0, + ], + }, + "ext": {}, + "flags": 1, + "location": Float32Array [ + 0, + 0, + 0, + ], + "material": {}, + "name": "Stars", + "night": { + "azimuth": -3.5464670658111572, + "brightness": 1, + "density": 1, + "ext": {}, + "hazeDensity": 0, + "latitude": 0.0533333346247673, + "lensFlare": {}, + "lightIntensity": 0, + "minHaze": 0, + "scale": Float32Array [ + 29.333332061767578, + 29.333332061767578, + ], + "speed": 0, + "texture": 198253, + "textureUV": Float32Array [ + 0, + 1, + 1, + 0, + ], + }, + }, + ], + }, + "spawns": {}, + "type": 5, + "water": [ + { + "animAmplitude": 0.004240409936755896, + "animChoppiness": 0.05899700149893761, + "animWind": Float32Array [ + 4.969880104064941, + 1.9578291177749634, + ], + "bumpAmount": 150.36099243164062, + "bumpAngle0": -180, + "bumpAngle1": -178.35400390625, + "bumpScale0": 0.04420730099081993, + "bumpScale1": 0.04420730099081993, + "bumpSpeed0": 0.45121899247169495, + "bumpSpeed1": 0.4024389982223511, + "bumpTile0": 12.146300315856934, + "bumpTile1": 13.780500411987305, + "constantTokens": Uint32Array [ + 809906891, + 911119242, + 910462480, + 808137754, + 814574097, + 807298231, + 813734574, + 3101301168, + 1324870500, + 1472906389, + 2953265279, + 3427729611, + 1355227165, + 2983621944, + ], + "constantValues": [ + Float32Array [ + 1, + 1, + 1, + 255, + ], + Float32Array [ + 0, + 0, + 0, + 1, + ], + Float32Array [ + 130, + 0, + 0, + 0, + ], + Float32Array [ + 1, + 10, + 4, + 0, + ], + Float32Array [ + 0.4892759919166565, + 0.4490619897842407, + 0.041554998606443405, + 0.9021450281143188, + ], + Float32Array [ + 0.20495499670505524, + 8, + 4, + 0, + ], + Float32Array [ + 1.5, + 0.8176940083503723, + 0.683646023273468, + 0.7747989892959595, + ], + Float32Array [ + 0, + 0, + 0, + 0, + ], + Float32Array [ + 0, + 0, + 0, + 0, + ], + Float32Array [ + 0, + 0, + 0, + 0, + ], + Float32Array [ + 0, + 0, + 0, + 0, + ], + Float32Array [ + 0, + 0, + 0, + 0, + ], + Float32Array [ + 0, + 0, + 0, + 0, + ], + Float32Array [ + 0, + 0, + 0, + 0, + ], + ], + "depthAttenuation": 54.0442008972168, + "distortAmount": 0.00009999999747378752, + "foamColor0": Uint8Array [ + 0, + 0, + 0, + 0, + ], + "foamColor1": Uint8Array [ + 0, + 0, + 0, + 0, + ], + "foamDepthAttenuation": 0, + "foamDissolve": 0, + "foamSpawn": 0, + "materialFilename": 187551, + "patternAngle": -9.759039878845215, + "patternColor": Uint8Array [ + 58, + 63, + 0, + 111, + ], + "patternEdge": 0.09383749961853027, + "patternSpeed": 0.3313249945640564, + "patternTile": 3.8767499923706055, + "surfaceDeepColor": Uint8Array [ + 87, + 59, + 17, + 0, + ], + "surfaceFresnel": 3.727030038833618, + "surfaceShallowColor": Uint8Array [ + 181, + 112, + 31, + 0, + ], + "textureFilenames": [ + 0, + 188570, + 506590, + 187574, + 190961, + ], + "waterFlags": 1, + }, + { + "animAmplitude": 0.004240409936755896, + "animChoppiness": 0.05899700149893761, + "animWind": Float32Array [ + 4.969880104064941, + 1.9578291177749634, + ], + "bumpAmount": 150.36099243164062, + "bumpAngle0": -180, + "bumpAngle1": -178.35400390625, + "bumpScale0": 0.04420730099081993, + "bumpScale1": 0.04420730099081993, + "bumpSpeed0": 0.45121899247169495, + "bumpSpeed1": 0.4024389982223511, + "bumpTile0": 12.146300315856934, + "bumpTile1": 13.780500411987305, + "constantTokens": Uint32Array [ + 809906891, + 911119242, + 910462480, + 808137754, + 814574097, + 807298231, + 813734574, + 3101301168, + 1324870500, + 1472906389, + 2953265279, + 3427729611, + 1355227165, + 2983621944, + ], + "constantValues": [ + Float32Array [ + 1, + 1, + 1, + 255, + ], + Float32Array [ + 0, + 0, + 0, + 1, + ], + Float32Array [ + 130, + 0, + 0, + 0, + ], + Float32Array [ + 1, + 10, + 4, + 0, + ], + Float32Array [ + 0.4892759919166565, + 0.4490619897842407, + 0.041554998606443405, + 0.9021450281143188, + ], + Float32Array [ + 0.20495499670505524, + 8, + 4, + 0, + ], + Float32Array [ + 1.5, + 0.8176940083503723, + 0.683646023273468, + 0.7747989892959595, + ], + Float32Array [ + 0, + 0, + 0, + 0, + ], + Float32Array [ + 0, + 0, + 0, + 0, + ], + Float32Array [ + 0, + 0, + 0, + 0, + ], + Float32Array [ + 0, + 0, + 0, + 0, + ], + Float32Array [ + 0, + 0, + 0, + 0, + ], + Float32Array [ + 0, + 0, + 0, + 0, + ], + Float32Array [ + 0, + 0, + 0, + 0, + ], + ], + "depthAttenuation": 54.0442008972168, + "distortAmount": 0.00009999999747378752, + "foamColor0": Uint8Array [ + 0, + 0, + 0, + 0, + ], + "foamColor1": Uint8Array [ + 0, + 0, + 0, + 0, + ], + "foamDepthAttenuation": 0, + "foamDissolve": 0, + "foamSpawn": 0, + "materialFilename": 187551, + "patternAngle": -9.759039878845215, + "patternColor": Uint8Array [ + 58, + 63, + 0, + 111, + ], + "patternEdge": 0.09383749961853027, + "patternSpeed": 0.3313249945640564, + "patternTile": 3.8767499923706055, + "surfaceDeepColor": Uint8Array [ + 87, + 59, + 17, + 0, + ], + "surfaceFresnel": 3.727030038833618, + "surfaceShallowColor": Uint8Array [ + 181, + 112, + 31, + 0, + ], + "textureFilenames": [ + 0, + 188570, + 506590, + 187574, + 190961, + ], + "waterFlags": 1, + }, + { + "animAmplitude": 0, + "animChoppiness": 0, + "animWind": Float32Array [ + -90.00000762939453, + -29.9999942779541, + ], + "bumpAmount": 300, + "bumpAngle0": -15.132743835449219, + "bumpAngle1": 40, + "bumpScale0": 0.10000000149011612, + "bumpScale1": 0.10000000149011612, + "bumpSpeed0": 1, + "bumpSpeed1": 1, + "bumpTile0": 1.7999999523162842, + "bumpTile1": 2.5999999046325684, + "constantTokens": Uint32Array [ + 3101301168, + 1324870500, + 1472906389, + 2953265279, + 3427729611, + 1355227165, + 2983621944, + 2541789506, + ], + "constantValues": [ + Float32Array [ + 0, + 0, + 0, + 0, + ], + Float32Array [ + 0, + 0, + 0, + 0, + ], + Float32Array [ + 0, + 0, + 0, + 0, + ], + Float32Array [ + 0, + 0, + 0, + 0, + ], + Float32Array [ + 0, + 0, + 0, + 0, + ], + Float32Array [ + 0, + 0, + 0, + 0, + ], + Float32Array [ + 0, + 0, + 0, + 0, + ], + Float32Array [ + 0.11924119293689728, + 0, + 0, + 0, + ], + ], + "depthAttenuation": 181.2543487548828, + "distortAmount": 0.0030326922424137592, + "foamColor0": Uint8Array [ + 51, + 126, + 174, + 38, + ], + "foamColor1": Uint8Array [ + 255, + 255, + 255, + 191, + ], + "foamDepthAttenuation": 0.8999999761581421, + "foamDissolve": 0.949999988079071, + "foamSpawn": 0.5, + "materialFilename": 188555, + "patternAngle": 0, + "patternColor": Uint8Array [ + 255, + 255, + 255, + 1, + ], + "patternEdge": 1, + "patternSpeed": 1.02173912525177, + "patternTile": 2.0173912048339844, + "surfaceDeepColor": Uint8Array [ + 50, + 16, + 9, + 0, + ], + "surfaceFresnel": 2.763636350631714, + "surfaceShallowColor": Uint8Array [ + 172, + 184, + 111, + 0, + ], + "textureFilenames": [ + 0, + 188570, + 187580, + ], + "waterFlags": 1, + }, + ], + "wind": [], + }, + ], +} +`; diff --git a/parser/test/__snapshots__/mapc3.test.ts.snap b/parser/test/__snapshots__/mapc3.test.ts.snap new file mode 100644 index 0000000..050fbb7 --- /dev/null +++ b/parser/test/__snapshots__/mapc3.test.ts.snap @@ -0,0 +1,34814 @@ +// Jest Snapshot v1, https://goo.gl/fbAQLP + +exports[`matches for ENV: mapc3-env 1`] = ` +{ + "dataGlobal": { + "audio": [ + { + "token": 0n, + }, + { + "token": 0n, + }, + ], + "bindTarget": 0n, + "clouds": { + "layers": [ + { + "altitude": 5895.5986328125, + "attributes": [ + { + "brightness": 1, + "density": 0.572160005569458, + "fadeEnd": 30, + "fadeWidth": 30, + "haze": 0, + "lightIntensity": 1, + "reserved": 0, + "velocity": Float32Array [ + 25.588512420654297, + 50.15349578857422, + ], + }, + { + "brightness": 1, + "density": 0.572160005569458, + "fadeEnd": 30, + "fadeWidth": 30, + "haze": 0, + "lightIntensity": 1, + "reserved": 0, + "velocity": Float32Array [ + 25.588512420654297, + 50.15349578857422, + ], + }, + { + "brightness": 1, + "density": 0, + "fadeEnd": 30, + "fadeWidth": 30, + "haze": 1, + "lightIntensity": 1, + "reserved": 0, + "velocity": Float32Array [ + 0, + 0, + ], + }, + ], + "cutOut": 1000, + "depth": 0.011873000301420689, + "extent": 1, + "name": "", + "reserved": 0, + "scale": 4.677585124969482, + "texture": 188574, + }, + { + "altitude": 462.0123291015625, + "attributes": [ + { + "brightness": 1, + "density": 0, + "fadeEnd": 225, + "fadeWidth": 100, + "haze": 1, + "lightIntensity": 1, + "reserved": 0, + "velocity": Float32Array [ + 0, + 0, + ], + }, + { + "brightness": 1, + "density": 0, + "fadeEnd": 225, + "fadeWidth": 100, + "haze": 1, + "lightIntensity": 1, + "reserved": 0, + "velocity": Float32Array [ + 0, + 0, + ], + }, + { + "brightness": 1, + "density": 0, + "fadeEnd": 225, + "fadeWidth": 100, + "haze": 1, + "lightIntensity": 1, + "reserved": 0, + "velocity": Float32Array [ + 0, + 0, + ], + }, + ], + "cutOut": 2000, + "depth": 0.004569000098854303, + "extent": 1, + "name": "", + "reserved": 0, + "scale": 1.630321979522705, + "texture": 188576, + }, + { + "altitude": 30000, + "attributes": [ + { + "brightness": 1, + "density": 0.43103447556495667, + "fadeEnd": 16, + "fadeWidth": 16, + "haze": 1, + "lightIntensity": 0.36925286054611206, + "reserved": 0, + "velocity": Float32Array [ + -290.2298583984375, + -149.42529296875, + ], + }, + { + "brightness": 1, + "density": 0.43103447556495667, + "fadeEnd": 16, + "fadeWidth": 16, + "haze": 1, + "lightIntensity": 0.36925286054611206, + "reserved": 0, + "velocity": Float32Array [ + -290.2298583984375, + -149.42529296875, + ], + }, + { + "brightness": 1, + "density": 1, + "fadeEnd": 16, + "fadeWidth": 16, + "haze": 1, + "lightIntensity": 1, + "reserved": 0, + "velocity": Float32Array [ + 0, + 0, + ], + }, + ], + "cutOut": 100, + "depth": 0, + "extent": 1, + "name": "", + "reserved": 0, + "scale": 1.3074712753295898, + "texture": 195082, + }, + { + "altitude": 30000, + "attributes": [ + { + "brightness": 1, + "density": 1, + "fadeEnd": 16, + "fadeWidth": 16, + "haze": 1, + "lightIntensity": 1, + "reserved": 0, + "velocity": Float32Array [ + -178.160888671875, + 0, + ], + }, + { + "brightness": 1, + "density": 1, + "fadeEnd": 16, + "fadeWidth": 16, + "haze": 1, + "lightIntensity": 1, + "reserved": 0, + "velocity": Float32Array [ + -178.160888671875, + 0, + ], + }, + { + "brightness": 1, + "density": 1, + "fadeEnd": 16, + "fadeWidth": 16, + "haze": 1, + "lightIntensity": 1, + "reserved": 0, + "velocity": Float32Array [ + 0, + 0, + ], + }, + ], + "cutOut": 100, + "depth": 0, + "extent": 1, + "name": "", + "reserved": 0, + "scale": 0.7471264004707336, + "texture": 195082, + }, + { + "altitude": 22801.72265625, + "attributes": [ + { + "brightness": 1, + "density": 1, + "fadeEnd": 16, + "fadeWidth": 16, + "haze": 1, + "lightIntensity": 1, + "reserved": 0, + "velocity": Float32Array [ + -267.2413330078125, + 83.3333740234375, + ], + }, + { + "brightness": 1, + "density": 1, + "fadeEnd": 16, + "fadeWidth": 16, + "haze": 1, + "lightIntensity": 1, + "reserved": 0, + "velocity": Float32Array [ + -267.2413330078125, + 83.3333740234375, + ], + }, + { + "brightness": 1, + "density": 1, + "fadeEnd": 16, + "fadeWidth": 16, + "haze": 1, + "lightIntensity": 1, + "reserved": 0, + "velocity": Float32Array [ + 0, + 0, + ], + }, + ], + "cutOut": 3000, + "depth": 0, + "extent": 1, + "name": "", + "reserved": 0, + "scale": 0.5172414183616638, + "texture": 195082, + }, + { + "altitude": 20689.65625, + "attributes": [ + { + "brightness": 1, + "density": 1, + "fadeEnd": 16, + "fadeWidth": 16, + "haze": 1, + "lightIntensity": 1, + "reserved": 0, + "velocity": Float32Array [ + -163.7930908203125, + 89.0804443359375, + ], + }, + { + "brightness": 1, + "density": 1, + "fadeEnd": 16, + "fadeWidth": 16, + "haze": 1, + "lightIntensity": 1, + "reserved": 0, + "velocity": Float32Array [ + -163.7930908203125, + 89.0804443359375, + ], + }, + { + "brightness": 1, + "density": 1, + "fadeEnd": 16, + "fadeWidth": 16, + "haze": 1, + "lightIntensity": 1, + "reserved": 0, + "velocity": Float32Array [ + 0, + 0, + ], + }, + ], + "cutOut": 3000, + "depth": 0, + "extent": 1, + "name": "", + "reserved": 0, + "scale": 0.8908045887947083, + "texture": 195082, + }, + ], + }, + "coloredLightRings": [], + "effect": [ + { + "clutTexturePath": 0, + "ext": {}, + "flags": 0, + "focalDepth": 6000, + "focalRange": 4000, + "glow": Uint8Array [ + 9, + 24, + 38, + 0, + ], + "glowAmplify": 0.4000000059604645, + "glowLevel": Uint8Array [ + 51, + 51, + 51, + 0, + ], + "saturation": 1, + "ssaoAmount": 3, + "ssaoBrighten": 0.20000000298023224, + "ssaoContrast": 1, + "ssaoSunScale": 0.5, + "tintAmount": 0, + "tintColor": Uint8Array [ + 0, + 0, + 0, + 0, + ], + "tintFocus": 0, + "tintTargetColor": Uint8Array [ + 0, + 0, + 0, + 0, + ], + }, + { + "clutTexturePath": 0, + "ext": {}, + "flags": 0, + "focalDepth": 6000, + "focalRange": 4000, + "glow": Uint8Array [ + 161, + 122, + 55, + 0, + ], + "glowAmplify": 0.4000000059604645, + "glowLevel": Uint8Array [ + 51, + 51, + 51, + 0, + ], + "saturation": 1, + "ssaoAmount": 3, + "ssaoBrighten": 0.20000000298023224, + "ssaoContrast": 1, + "ssaoSunScale": 0.5, + "tintAmount": 0, + "tintColor": Uint8Array [ + 0, + 0, + 0, + 0, + ], + "tintFocus": 0, + "tintTargetColor": Uint8Array [ + 0, + 0, + 0, + 0, + ], + }, + { + "clutTexturePath": 0, + "ext": {}, + "flags": 0, + "focalDepth": 6000, + "focalRange": 4000, + "glow": Uint8Array [ + 0, + 0, + 0, + 0, + ], + "glowAmplify": 0, + "glowLevel": Uint8Array [ + 0, + 0, + 0, + 0, + ], + "saturation": 1, + "ssaoAmount": 3, + "ssaoBrighten": 0.20000000298023224, + "ssaoContrast": 1, + "ssaoSunScale": 0.5, + "tintAmount": 0, + "tintColor": Uint8Array [ + 255, + 255, + 255, + 255, + ], + "tintFocus": 0, + "tintTargetColor": Uint8Array [ + 255, + 255, + 255, + 0, + ], + }, + ], + "ext": { + "brightMax": 0.5, + "brightMin": 0.30000001192092896, + "brightScale": 1, + "brightTime": 2.5, + "darkCoeff": 1.2000000476837158, + "darkExp": 0.800000011920929, + "darkMax": 0.30000001192092896, + "darkMin": 0.10000000149011612, + "darkScale": 1, + "dimTime": 5, + "ext2": {}, + "waterReflectionParams": Float32Array [ + 0, + 0, + 0, + 0, + ], + }, + "flags": 1, + "haze": [ + { + "depthCue": 0.00041099998634308577, + "distRange": Float32Array [ + 1742.653564453125, + 11614.6181640625, + ], + "farColor": Uint8Array [ + 157, + 161, + 143, + 255, + ], + "heightColor": Uint8Array [ + 38, + 74, + 115, + 255, + ], + "heightRange": Float32Array [ + -34.73039245605469, + 140.40118408203125, + ], + "nearColor": Uint8Array [ + 217, + 159, + 77, + 255, + ], + "sunDirRange": Float32Array [ + 0, + 0, + ], + }, + { + "depthCue": 0.0002519999979995191, + "distRange": Float32Array [ + 752.941162109375, + 4178.8232421875, + ], + "farColor": Uint8Array [ + 145, + 118, + 110, + 255, + ], + "heightColor": Uint8Array [ + 146, + 115, + 136, + 255, + ], + "heightRange": Float32Array [ + -283.95294189453125, + 399.01202392578125, + ], + "nearColor": Uint8Array [ + 74, + 42, + 16, + 255, + ], + "sunDirRange": Float32Array [ + -1, + 1, + ], + }, + { + "depthCue": 0, + "distRange": Float32Array [ + 0, + 0, + ], + "farColor": Uint8Array [ + 0, + 0, + 0, + 255, + ], + "heightColor": Uint8Array [ + 0, + 0, + 0, + 255, + ], + "heightRange": Float32Array [ + 0, + 0, + ], + "nearColor": Uint8Array [ + 0, + 0, + 0, + 255, + ], + "sunDirRange": Float32Array [ + 0, + 0, + ], + }, + ], + "lighting": [ + { + "backlightColor": Uint8Array [ + 255, + 255, + 255, + ], + "backlightIntensity": 1, + "lights": [ + { + "color": Uint8Array [ + 191, + 248, + 255, + ], + "direction": Float32Array [ + 0.7071067690849304, + 0, + 0.7071067690849304, + ], + "intensity": 1.100000023841858, + }, + { + "color": Uint8Array [ + 46, + 174, + 255, + ], + "direction": Float32Array [ + -0.7071067690849304, + -0.0000012868819112554775, + -0.7071067690849304, + ], + "intensity": 0.4000000059604645, + }, + { + "color": Uint8Array [ + 255, + 221, + 191, + ], + "direction": Float32Array [ + -9.099629210140847e-7, + 1.6560650420438527e-12, + 1, + ], + "intensity": 0.30000001192092896, + }, + { + "color": Uint8Array [ + 32, + 147, + 255, + ], + "direction": Float32Array [ + -9.099629210140847e-7, + 1.6560650420438527e-12, + -1, + ], + "intensity": 0.25, + }, + { + "color": Uint8Array [ + 255, + 201, + 191, + ], + "direction": Float32Array [ + -0.7071067690849304, + -0.0000012868819112554775, + 0.7071067690849304, + ], + "intensity": 0.20000000298023224, + }, + { + "color": Uint8Array [ + 255, + 190, + 199, + ], + "direction": Float32Array [ + -4.371138828673793e-8, + 1, + 0, + ], + "intensity": 0.20000000298023224, + }, + { + "color": Uint8Array [ + 255, + 201, + 191, + ], + "direction": Float32Array [ + 0.7071067690849304, + 0, + -0.7071067690849304, + ], + "intensity": 0.20000000298023224, + }, + { + "color": Uint8Array [ + 255, + 190, + 199, + ], + "direction": Float32Array [ + -4.371138828673793e-8, + -1, + 0, + ], + "intensity": 0.20000000298023224, + }, + ], + "shadowInfluence": 0, + }, + { + "backlightColor": Uint8Array [ + 255, + 255, + 255, + ], + "backlightIntensity": 1, + "lights": [ + { + "color": Uint8Array [ + 240, + 126, + 45, + ], + "direction": Float32Array [ + 0.7071067690849304, + 0, + 0.7071067690849304, + ], + "intensity": 1.2000000476837158, + }, + { + "color": Uint8Array [ + 255, + 234, + 219, + ], + "direction": Float32Array [ + -0.7071067690849304, + -0.0000012868819112554775, + -0.7071067690849304, + ], + "intensity": 0.12171052396297455, + }, + { + "color": Uint8Array [ + 249, + 15, + 98, + ], + "direction": Float32Array [ + -0.0000010291722674082848, + -1.8730171493647196e-12, + -1, + ], + "intensity": 0.06578947603702545, + }, + { + "color": Uint8Array [ + 161, + 255, + 174, + ], + "direction": Float32Array [ + -0.0000010291722674082848, + -1.8730171493647196e-12, + 1, + ], + "intensity": 0.17117099463939667, + }, + { + "color": Uint8Array [ + 255, + 255, + 255, + ], + "direction": Float32Array [ + -0.7071067690849304, + -0.0000012868819112554775, + 0.7071067690849304, + ], + "intensity": 0.08408399671316147, + }, + { + "color": Uint8Array [ + 255, + 255, + 255, + ], + "direction": Float32Array [ + -4.371138828673793e-8, + 1, + 0, + ], + "intensity": 0.06606599688529968, + }, + { + "color": Uint8Array [ + 255, + 255, + 255, + ], + "direction": Float32Array [ + 0.7071067690849304, + 0, + -0.7071067690849304, + ], + "intensity": 0.08408399671316147, + }, + { + "color": Uint8Array [ + 255, + 255, + 255, + ], + "direction": Float32Array [ + -4.371138828673793e-8, + -1, + 0, + ], + "intensity": 0.08408399671316147, + }, + ], + "shadowInfluence": -0.2937690019607544, + }, + { + "backlightColor": Uint8Array [ + 0, + 0, + 0, + ], + "backlightIntensity": 0, + "lights": [ + { + "color": Uint8Array [ + 255, + 233, + 192, + ], + "direction": Float32Array [ + 0.7071067690849304, + 0, + 0.7071067690849304, + ], + "intensity": 1.2999999523162842, + }, + { + "color": Uint8Array [ + 124, + 172, + 248, + ], + "direction": Float32Array [ + -0.7071067690849304, + -0.0000012868819112554775, + -0.7071067690849304, + ], + "intensity": 0.30000001192092896, + }, + { + "color": Uint8Array [ + 191, + 221, + 255, + ], + "direction": Float32Array [ + 0.29848748445510864, + 0.9186500906944275, + 0.258819043636322, + ], + "intensity": 0.10000000149011612, + }, + { + "color": Uint8Array [ + 188, + 204, + 253, + ], + "direction": Float32Array [ + -0.7814504504203796, + 0.5677568912506104, + 0.258819043636322, + ], + "intensity": 0.10000000149011612, + }, + { + "color": Uint8Array [ + 199, + 190, + 255, + ], + "direction": Float32Array [ + -0.8824164271354675, + 0.39287903904914856, + 0.25881901383399963, + ], + "intensity": 0.10000000149011612, + }, + { + "color": Uint8Array [ + 189, + 222, + 255, + ], + "direction": Float32Array [ + 0.2984875440597534, + -0.9186500310897827, + 0.258819043636322, + ], + "intensity": 0.10000000149011612, + }, + { + "color": Uint8Array [ + 204, + 237, + 255, + ], + "direction": Float32Array [ + -9.099629210140847e-7, + 1.6560650420438527e-12, + 1, + ], + "intensity": 0.30000001192092896, + }, + { + "color": Uint8Array [ + 168, + 254, + 189, + ], + "direction": Float32Array [ + -9.099629210140847e-7, + 1.6560650420438527e-12, + -1, + ], + "intensity": 0.15000000596046448, + }, + ], + "shadowInfluence": 0, + }, + ], + "lightingCharGroups": [], + "name": "", + "nightMods": Uint8Array [ + 255, + 255, + 255, + 133, + ], + "particleFieldCutouts": [], + "particleFields": [ + { + "altitude": 0, + "angle": Float32Array [ + 0, + 0, + ], + "clusterCount": 0, + "clustering": Float32Array [ + 0, + 0, + ], + "depth": 0, + "deviation": 0, + "deviationSpeed": Float32Array [ + 0, + 0, + ], + "extent": 0, + "fade": 0, + "fieldDirection": Float32Array [ + 0, + 0, + 0, + ], + "flags": 0, + "lifetime": Float32Array [ + 0, + 0, + ], + "name": "", + "opacity": Float32Array [ + 0, + 0, + ], + "particleCount": 0, + "period": Float32Array [ + 0, + 0, + ], + "reserved": 0, + "rotation": Float32Array [ + 0, + 0, + ], + "scaleX": Float32Array [ + 0, + 0, + ], + "scaleY": Float32Array [ + 0, + 0, + ], + "seed": 0, + "speed": Float32Array [ + 0, + 0, + ], + "texColRow": Uint32Array [ + 0, + 0, + ], + "texFPS": 0, + "texPath": 0, + "type": 0, + }, + ], + "sky": { + "dayBrightness": 1.2000000476837158, + "dayHazeBottom": 0, + "dayHazeDensity": 1, + "dayHazeFalloff": 0.5988371968269348, + "dayLightIntensity": 1, + "dayStarDensity": 0, + "flags": 0, + "nightBrightness": 1.5, + "nightHazeBottom": 0.4207436442375183, + "nightHazeDensity": 1, + "nightHazeFalloff": 0.4129158556461334, + "nightLightIntensity": 0.40577900409698486, + "nightStarDensity": 3, + "verticalOffset": 0, + }, + "skyCards": { + "cards": [ + { + "day": { + "azimuth": -3.132199287414551, + "brightness": 0.7683168053627014, + "density": 0.6336633563041687, + "ext": {}, + "hazeDensity": 0, + "latitude": 0.2787356376647949, + "lensFlare": {}, + "lightIntensity": 1, + "minHaze": 0.5511810183525085, + "scale": Float32Array [ + 23.850574493408203, + 19.080459594726562, + ], + "speed": 0, + "texture": 186349, + "textureUV": Float32Array [ + 1, + 0.6516720056533813, + 0.44175300002098083, + 0.7383180260658264, + ], + }, + "ext": {}, + "flags": 694558725, + "location": Float32Array [ + 0, + 0, + 0, + ], + "material": {}, + "name": "", + "night": { + "azimuth": -3.110226631164551, + "brightness": 0.26138612627983093, + "density": 1, + "ext": {}, + "hazeDensity": 0, + "latitude": 0.28316831588745117, + "lensFlare": {}, + "lightIntensity": 1, + "minHaze": 0.5511810183525085, + "scale": Float32Array [ + 23.850574493408203, + 19.080459594726562, + ], + "speed": 0, + "texture": 186349, + "textureUV": Float32Array [ + 1, + 0.6516720056533813, + 0.44175300002098083, + 0.7383180260658264, + ], + }, + }, + { + "day": { + "azimuth": -3.1412014961242676, + "brightness": 2, + "density": 1, + "ext": {}, + "hazeDensity": 0, + "latitude": 0.30890804529190063, + "lensFlare": {}, + "lightIntensity": 1, + "minHaze": 0.5511810183525085, + "scale": Float32Array [ + 0.9900990128517151, + 0.7920792102813721, + ], + "speed": 0, + "texture": 186349, + "textureUV": Float32Array [ + 1, + 0.6516720056533813, + 0.44175300002098083, + 0.7383180260658264, + ], + }, + "ext": {}, + "flags": 694558727, + "location": Float32Array [ + 0, + 0, + 0, + ], + "material": {}, + "name": "", + "night": { + "azimuth": -3.1412014961242676, + "brightness": 2, + "density": 0, + "ext": {}, + "hazeDensity": 0, + "latitude": 0.30890804529190063, + "lensFlare": {}, + "lightIntensity": 1, + "minHaze": 0.5511810183525085, + "scale": Float32Array [ + 1.436781644821167, + 1.1494252681732178, + ], + "speed": 0, + "texture": 186349, + "textureUV": Float32Array [ + 1, + 0.6516720056533813, + 0.44175300002098083, + 0.7383180260658264, + ], + }, + }, + { + "day": { + "azimuth": -3.3969497680664062, + "brightness": 0.2385057508945465, + "density": 0.39470699429512024, + "ext": {}, + "hazeDensity": 0.3886969983577728, + "latitude": 0.17528735101222992, + "lensFlare": {}, + "lightIntensity": 2, + "minHaze": 0.6562860012054443, + "scale": Float32Array [ + 12.356321334838867, + 2.3258962631225586, + ], + "speed": 0.0038112143520265818, + "texture": 190422, + "textureUV": Float32Array [ + 0, + 1, + 1, + 0.7951670289039612, + ], + }, + "ext": {}, + "flags": 560865285, + "location": Float32Array [ + 0, + 0, + 0, + ], + "material": {}, + "name": "", + "night": { + "azimuth": -3.3969497680664062, + "brightness": 0.2385057508945465, + "density": 0.39470699429512024, + "ext": {}, + "hazeDensity": 0.3886969983577728, + "latitude": 0.17528735101222992, + "lensFlare": {}, + "lightIntensity": 2, + "minHaze": 0.6562860012054443, + "scale": Float32Array [ + 12.356321334838867, + 2.3258962631225586, + ], + "speed": 0.0038112143520265818, + "texture": 190422, + "textureUV": Float32Array [ + 0, + 1, + 1, + 0.7951670289039612, + ], + }, + }, + { + "day": { + "azimuth": -0.24371583759784698, + "brightness": 1.1487890481948853, + "density": 0.5166860222816467, + "ext": {}, + "hazeDensity": 0.3068050146102905, + "latitude": 0.09482758492231369, + "lensFlare": {}, + "lightIntensity": 1, + "minHaze": 0.6816610097885132, + "scale": Float32Array [ + 27.384614944458008, + 5.842050552368164, + ], + "speed": 0.0067197601310908794, + "texture": 190422, + "textureUV": Float32Array [ + 0, + 1, + 1, + 0.7951670289039612, + ], + }, + "ext": {}, + "flags": 879914764, + "location": Float32Array [ + 0, + 0, + 0, + ], + "material": {}, + "name": "", + "night": { + "azimuth": -0.24371583759784698, + "brightness": 1.1487890481948853, + "density": 0.5166860222816467, + "ext": {}, + "hazeDensity": 0.3068050146102905, + "latitude": 0.09482758492231369, + "lensFlare": {}, + "lightIntensity": 1, + "minHaze": 0.6816610097885132, + "scale": Float32Array [ + 27.384614944458008, + 5.842050552368164, + ], + "speed": 0.0067197601310908794, + "texture": 190422, + "textureUV": Float32Array [ + 0, + 1, + 1, + 0.7951670289039612, + ], + }, + }, + { + "day": { + "azimuth": -4.883838176727295, + "brightness": 0.9396551847457886, + "density": 0.37212643027305603, + "ext": {}, + "hazeDensity": 1, + "latitude": 0.23275862634181976, + "lensFlare": {}, + "lightIntensity": 1, + "minHaze": 0, + "scale": Float32Array [ + 11.392404556274414, + 4.0290207862854, + ], + "speed": 0.0028082444332540035, + "texture": 190422, + "textureUV": Float32Array [ + 0, + 1, + 0.5143839716911316, + 0.20828500390052795, + ], + }, + "ext": {}, + "flags": 896488192, + "location": Float32Array [ + 0, + 0, + 0, + ], + "material": {}, + "name": "", + "night": { + "azimuth": -4.883838176727295, + "brightness": 0.9396551847457886, + "density": 0.37212643027305603, + "ext": {}, + "hazeDensity": 1, + "latitude": 0.23275862634181976, + "lensFlare": {}, + "lightIntensity": 1, + "minHaze": 0, + "scale": Float32Array [ + 11.392404556274414, + 4.0290207862854, + ], + "speed": 0.0028082444332540035, + "texture": 190422, + "textureUV": Float32Array [ + 0, + 1, + 0.5143839716911316, + 0.20828500390052795, + ], + }, + }, + { + "day": { + "azimuth": -2.130204916000366, + "brightness": 1.09551203250885, + "density": 0.43153101205825806, + "ext": {}, + "hazeDensity": 0.4071510136127472, + "latitude": 0.3002873659133911, + "lensFlare": {}, + "lightIntensity": 1, + "minHaze": 0.6274510025978088, + "scale": Float32Array [ + 12.643678665161133, + 2.0434234142303467, + ], + "speed": 0.004814082756638527, + "texture": 190422, + "textureUV": Float32Array [ + 0, + 1, + 1, + 0.7951670289039612, + ], + }, + "ext": {}, + "flags": 1030059276, + "location": Float32Array [ + 0, + 0, + 0, + ], + "material": {}, + "name": "", + "night": { + "azimuth": -2.130204916000366, + "brightness": 1.09551203250885, + "density": 0.43153101205825806, + "ext": {}, + "hazeDensity": 0.4071510136127472, + "latitude": 0.3002873659133911, + "lensFlare": {}, + "lightIntensity": 1, + "minHaze": 0.6274510025978088, + "scale": Float32Array [ + 12.643678665161133, + 2.0434234142303467, + ], + "speed": 0.004814082756638527, + "texture": 190422, + "textureUV": Float32Array [ + 0, + 1, + 1, + 0.7951670289039612, + ], + }, + }, + { + "day": { + "azimuth": -3.9716403484344482, + "brightness": 1.0574712753295898, + "density": 0.6547759771347046, + "ext": {}, + "hazeDensity": 0, + "latitude": 0.3333333432674408, + "lensFlare": {}, + "lightIntensity": 2, + "minHaze": 0.6321839094161987, + "scale": Float32Array [ + 10.011507987976074, + 1.956272006034851, + ], + "speed": 0.004112004302442074, + "texture": 190422, + "textureUV": Float32Array [ + 0, + 1, + 0.1990790069103241, + 0, + ], + }, + "ext": {}, + "flags": 538976264, + "location": Float32Array [ + 0, + 0, + 0, + ], + "material": {}, + "name": "", + "night": { + "azimuth": -3.9716403484344482, + "brightness": 1.0574712753295898, + "density": 0.6547759771347046, + "ext": {}, + "hazeDensity": 0, + "latitude": 0.3333333432674408, + "lensFlare": {}, + "lightIntensity": 2, + "minHaze": 0.6321839094161987, + "scale": Float32Array [ + 10.011507987976074, + 1.956272006034851, + ], + "speed": 0.004112004302442074, + "texture": 190422, + "textureUV": Float32Array [ + 0, + 1, + 0.1990790069103241, + 0, + ], + }, + }, + { + "day": { + "azimuth": -3.1412014961242676, + "brightness": 2, + "density": 0, + "ext": {}, + "hazeDensity": 0, + "latitude": 0.30890804529190063, + "lensFlare": {}, + "lightIntensity": 1, + "minHaze": 0.5511810183525085, + "scale": Float32Array [ + 1.436781644821167, + 1.1494252681732178, + ], + "speed": 0, + "texture": 186349, + "textureUV": Float32Array [ + 1, + 0.6516720056533813, + 0.44175300002098083, + 0.7383180260658264, + ], + }, + "ext": {}, + "flags": 694558725, + "location": Float32Array [ + 0, + 0, + 0, + ], + "material": {}, + "name": "", + "night": { + "azimuth": -3.1412014961242676, + "brightness": 2, + "density": 1, + "ext": {}, + "hazeDensity": 0, + "latitude": 0.30890804529190063, + "lensFlare": {}, + "lightIntensity": 1, + "minHaze": 0.5511810183525085, + "scale": Float32Array [ + 1.436781644821167, + 1.1494252681732178, + ], + "speed": 0, + "texture": 186349, + "textureUV": Float32Array [ + 0.2653465270996094, + 0, + 0.4554455578327179, + 0.6772277355194092, + ], + }, + }, + ], + }, + "skyModeCubeTex": [], + "skyModeTex": [ + { + "texPathNE": 191232, + "texPathSW": 191234, + "texPathT": 191236, + }, + { + "texPathNE": 191232, + "texPathSW": 191234, + "texPathT": 191236, + }, + { + "texPathNE": 192644, + "texPathSW": 192646, + "texPathT": 192648, + }, + { + "texPathNE": 192644, + "texPathSW": 192646, + "texPathT": 192648, + }, + ], + "spawns": {}, + "starFile": 186291, + "water": [ + { + "animAmplitude": 0, + "animChoppiness": -1, + "animWind": Float32Array [ + -16.866567611694336, + -10.41978931427002, + ], + "bumpAmount": 53.96515655517578, + "bumpAngle0": 143.32440185546875, + "bumpAngle1": 142.3592529296875, + "bumpScale0": 0.0956140011548996, + "bumpScale1": 0.0956140011548996, + "bumpSpeed0": 1.309609055519104, + "bumpSpeed1": 0.030842000618577003, + "bumpTile0": 5.013054847717285, + "bumpTile1": 13.660573959350586, + "constantTokens": [], + "constantValues": [], + "depthAttenuation": 11.484257698059082, + "distortAmount": 0.009999999776482582, + "foamColor0": Uint8Array [ + 0, + 0, + 0, + 0, + ], + "foamColor1": Uint8Array [ + 0, + 0, + 0, + 0, + ], + "foamDepthAttenuation": 0, + "foamDissolve": 0, + "foamSpawn": 0, + "materialFilename": 186314, + "patternAngle": 170.55117797851562, + "patternColor": Uint8Array [ + 176, + 180, + 136, + 33, + ], + "patternEdge": 0.509988009929657, + "patternSpeed": 0.6016449928283691, + "patternTile": 10.904817581176758, + "surfaceDeepColor": Uint8Array [ + 23, + 63, + 95, + 0, + ], + "surfaceFresnel": 7.059234142303467, + "surfaceShallowColor": Uint8Array [ + 145, + 193, + 103, + 0, + ], + "textureFilenames": [ + 0, + 186359, + 186361, + ], + "waterFlags": 1, + }, + { + "animAmplitude": 0, + "animChoppiness": -0.4678260087966919, + "animWind": Float32Array [ + -34.065345764160156, + -27.119556427001953, + ], + "bumpAmount": 72.02046203613281, + "bumpAngle0": 70.15873718261719, + "bumpAngle1": 12.396697998046875, + "bumpScale0": 0.22796399891376495, + "bumpScale1": 0.20668700337409973, + "bumpSpeed0": 0.534434974193573, + "bumpSpeed1": 0.7768599987030029, + "bumpTile0": 2.3801651000976562, + "bumpTile1": 13.35779857635498, + "constantTokens": Uint32Array [ + 809906891, + 911119242, + 910462480, + 808137754, + 814574097, + 807298231, + 813734574, + 3101301168, + 1324870500, + 1472906389, + 2953265279, + 3427729611, + 1355227165, + 2983621944, + ], + "constantValues": [ + Float32Array [ + 0.521569013595581, + 0.521569013595581, + 0.521569013595581, + 255, + ], + Float32Array [ + 0.9372550249099731, + 0.8470590114593506, + 0.5803920030593872, + 1, + ], + Float32Array [ + 34.11420440673828, + 0, + 0, + 0, + ], + Float32Array [ + 0.8916540145874023, + 15, + 3, + 0, + ], + Float32Array [ + 0.7337750196456909, + 0.26622501015663147, + 0.3443709909915924, + 1, + ], + Float32Array [ + 0.23426100611686707, + 35, + 1, + 0, + ], + Float32Array [ + 0.49139100313186646, + 0.27417200803756714, + 0.15231800079345703, + 0.5721849799156189, + ], + Float32Array [ + 0, + 0, + 0, + 0, + ], + Float32Array [ + 0, + 0, + 0, + 0, + ], + Float32Array [ + 0, + 0, + 0, + 0, + ], + Float32Array [ + 0, + 0, + 0, + 0, + ], + Float32Array [ + 0, + 0, + 0, + 0, + ], + Float32Array [ + 0, + 0, + 0, + 0, + ], + Float32Array [ + 0, + 0, + 0, + 0, + ], + ], + "depthAttenuation": 431.1845397949219, + "distortAmount": 0.00009999999747378752, + "foamColor0": Uint8Array [ + 51, + 126, + 174, + 38, + ], + "foamColor1": Uint8Array [ + 255, + 255, + 255, + 191, + ], + "foamDepthAttenuation": 0.8999999761581421, + "foamDissolve": 0.949999988079071, + "foamSpawn": 0.5, + "materialFilename": 187551, + "patternAngle": 9.310355186462402, + "patternColor": Uint8Array [ + 179, + 124, + 125, + 34, + ], + "patternEdge": 0.36927199363708496, + "patternSpeed": 0.30727800726890564, + "patternTile": 14.381322860717773, + "surfaceDeepColor": Uint8Array [ + 58, + 94, + 103, + 0, + ], + "surfaceFresnel": 0.8354790210723877, + "surfaceShallowColor": Uint8Array [ + 116, + 218, + 226, + 0, + ], + "textureFilenames": [ + 0, + 186359, + 187574, + 187574, + 187576, + ], + "waterFlags": 1, + }, + { + "animAmplitude": 0, + "animChoppiness": 0, + "animWind": Float32Array [ + -90, + -30, + ], + "bumpAmount": 300, + "bumpAngle0": 0, + "bumpAngle1": 40, + "bumpScale0": 0.10000000149011612, + "bumpScale1": 0.10000000149011612, + "bumpSpeed0": 1, + "bumpSpeed1": 1, + "bumpTile0": 1.7999999523162842, + "bumpTile1": 2.5999999046325684, + "constantTokens": [], + "constantValues": [], + "depthAttenuation": 200, + "distortAmount": 0.15000000596046448, + "foamColor0": Uint8Array [ + 51, + 126, + 174, + 38, + ], + "foamColor1": Uint8Array [ + 255, + 255, + 255, + 191, + ], + "foamDepthAttenuation": 0.8999999761581421, + "foamDissolve": 0.949999988079071, + "foamSpawn": 0.5, + "materialFilename": 0, + "patternAngle": 0, + "patternColor": Uint8Array [ + 255, + 255, + 255, + 0, + ], + "patternEdge": 1, + "patternSpeed": 1, + "patternTile": 1.7999999523162842, + "surfaceDeepColor": Uint8Array [ + 50, + 16, + 9, + 0, + ], + "surfaceFresnel": 2.5, + "surfaceShallowColor": Uint8Array [ + 190, + 168, + 103, + 0, + ], + "textureFilenames": [], + "waterFlags": 1, + }, + ], + "wind": [ + { + "azimuth": 0, + "elevation": 0, + "gust": 26, + "gustFreq": 19, + "gustSpeed": 128, + "noise": 45, + "speed": 24, + }, + { + "azimuth": 7, + "elevation": 0, + "gust": 6, + "gustFreq": 38, + "gustSpeed": 24, + "noise": 4, + "speed": 10, + }, + { + "azimuth": 0, + "elevation": 0, + "gust": 0, + "gustFreq": 0, + "gustSpeed": 0, + "noise": 0, + "speed": 0, + }, + ], + }, + "dataLocalArray": [ + { + "audio": [], + "bindTarget": 1853874816698843681n, + "clouds": { + "layers": [ + { + "altitude": 5895.5986328125, + "attributes": [ + { + "brightness": 1, + "density": 0.36540400981903076, + "fadeEnd": 30, + "fadeWidth": 30, + "haze": 0.8178099989891052, + "lightIntensity": 1, + "reserved": 0, + "velocity": Float32Array [ + 0, + 0, + ], + }, + { + "brightness": 1, + "density": 0.36540400981903076, + "fadeEnd": 30, + "fadeWidth": 30, + "haze": 0.8178099989891052, + "lightIntensity": 1, + "reserved": 0, + "velocity": Float32Array [ + 0, + 0, + ], + }, + { + "brightness": 1, + "density": 0, + "fadeEnd": 30, + "fadeWidth": 30, + "haze": 1, + "lightIntensity": 1, + "reserved": 0, + "velocity": Float32Array [ + 0, + 0, + ], + }, + ], + "cutOut": 1000, + "depth": 0.011873000301420689, + "extent": 1, + "name": "", + "reserved": 0, + "scale": 4.677585124969482, + "texture": 188574, + }, + { + "altitude": 462.0123291015625, + "attributes": [ + { + "brightness": 1, + "density": 0.8439429998397827, + "fadeEnd": 225, + "fadeWidth": 100, + "haze": 0.8473520278930664, + "lightIntensity": 0.32751500606536865, + "reserved": 0, + "velocity": Float32Array [ + 94.49636840820312, + 34.26790237426758, + ], + }, + { + "brightness": 1, + "density": 0.8439429998397827, + "fadeEnd": 225, + "fadeWidth": 100, + "haze": 0.8473520278930664, + "lightIntensity": 0.32751500606536865, + "reserved": 0, + "velocity": Float32Array [ + 94.49636840820312, + 34.26790237426758, + ], + }, + { + "brightness": 1, + "density": 0, + "fadeEnd": 225, + "fadeWidth": 100, + "haze": 1, + "lightIntensity": 1, + "reserved": 0, + "velocity": Float32Array [ + 0, + 0, + ], + }, + ], + "cutOut": 2000, + "depth": 0.004569000098854303, + "extent": 1, + "name": "", + "reserved": 0, + "scale": 1.630321979522705, + "texture": 188576, + }, + { + "altitude": 30000, + "attributes": [ + { + "brightness": 1, + "density": 1, + "fadeEnd": 16, + "fadeWidth": 16, + "haze": 1, + "lightIntensity": 1, + "reserved": 0, + "velocity": Float32Array [ + 0, + 0, + ], + }, + { + "brightness": 1, + "density": 1, + "fadeEnd": 16, + "fadeWidth": 16, + "haze": 1, + "lightIntensity": 1, + "reserved": 0, + "velocity": Float32Array [ + 0, + 0, + ], + }, + { + "brightness": 1, + "density": 1, + "fadeEnd": 16, + "fadeWidth": 16, + "haze": 1, + "lightIntensity": 1, + "reserved": 0, + "velocity": Float32Array [ + 0, + 0, + ], + }, + ], + "cutOut": 100, + "depth": 0, + "extent": 1, + "name": "", + "reserved": 0, + "scale": 1.3074712753295898, + "texture": 195082, + }, + { + "altitude": 30000, + "attributes": [ + { + "brightness": 1, + "density": 1, + "fadeEnd": 16, + "fadeWidth": 16, + "haze": 1, + "lightIntensity": 1, + "reserved": 0, + "velocity": Float32Array [ + 0, + 0, + ], + }, + { + "brightness": 1, + "density": 1, + "fadeEnd": 16, + "fadeWidth": 16, + "haze": 1, + "lightIntensity": 1, + "reserved": 0, + "velocity": Float32Array [ + 0, + 0, + ], + }, + { + "brightness": 1, + "density": 1, + "fadeEnd": 16, + "fadeWidth": 16, + "haze": 1, + "lightIntensity": 1, + "reserved": 0, + "velocity": Float32Array [ + 0, + 0, + ], + }, + ], + "cutOut": 100, + "depth": 0, + "extent": 1, + "name": "", + "reserved": 0, + "scale": 0.7471264004707336, + "texture": 195082, + }, + { + "altitude": 22801.72265625, + "attributes": [ + { + "brightness": 1, + "density": 1, + "fadeEnd": 16, + "fadeWidth": 16, + "haze": 1, + "lightIntensity": 1, + "reserved": 0, + "velocity": Float32Array [ + 0, + 0, + ], + }, + { + "brightness": 1, + "density": 1, + "fadeEnd": 16, + "fadeWidth": 16, + "haze": 1, + "lightIntensity": 1, + "reserved": 0, + "velocity": Float32Array [ + 0, + 0, + ], + }, + { + "brightness": 1, + "density": 1, + "fadeEnd": 16, + "fadeWidth": 16, + "haze": 1, + "lightIntensity": 1, + "reserved": 0, + "velocity": Float32Array [ + 0, + 0, + ], + }, + ], + "cutOut": 3000, + "depth": 0, + "extent": 1, + "name": "", + "reserved": 0, + "scale": 0.5172414183616638, + "texture": 195082, + }, + { + "altitude": 20689.65625, + "attributes": [ + { + "brightness": 1, + "density": 1, + "fadeEnd": 16, + "fadeWidth": 16, + "haze": 1, + "lightIntensity": 1, + "reserved": 0, + "velocity": Float32Array [ + 0, + 0, + ], + }, + { + "brightness": 1, + "density": 1, + "fadeEnd": 16, + "fadeWidth": 16, + "haze": 1, + "lightIntensity": 1, + "reserved": 0, + "velocity": Float32Array [ + 0, + 0, + ], + }, + { + "brightness": 1, + "density": 1, + "fadeEnd": 16, + "fadeWidth": 16, + "haze": 1, + "lightIntensity": 1, + "reserved": 0, + "velocity": Float32Array [ + 0, + 0, + ], + }, + ], + "cutOut": 3000, + "depth": 0, + "extent": 1, + "name": "", + "reserved": 0, + "scale": 0.8908045887947083, + "texture": 195082, + }, + { + "altitude": 15415.384765625, + "attributes": [ + { + "brightness": 1, + "density": 1, + "fadeEnd": 67.38461303710938, + "fadeWidth": 42.92307662963867, + "haze": 1, + "lightIntensity": 1, + "reserved": 0, + "velocity": Float32Array [ + 0, + 0, + ], + }, + { + "brightness": 1, + "density": 1, + "fadeEnd": 67.38461303710938, + "fadeWidth": 42.92307662963867, + "haze": 1, + "lightIntensity": 1, + "reserved": 0, + "velocity": Float32Array [ + 0, + 0, + ], + }, + { + "brightness": 1, + "density": 1, + "fadeEnd": 67.38461303710938, + "fadeWidth": 42.92307662963867, + "haze": 1, + "lightIntensity": 1, + "reserved": 0, + "velocity": Float32Array [ + 0, + 0, + ], + }, + ], + "cutOut": 1000, + "depth": 0.057846155017614365, + "extent": -1, + "name": "", + "reserved": 0, + "scale": 9.003689765930176, + "texture": 187566, + }, + ], + }, + "coloredLightRings": [], + "effect": [ + { + "clutTexturePath": 0, + "ext": {}, + "flags": 0, + "focalDepth": 6000, + "focalRange": 4000, + "glow": Uint8Array [ + 129, + 29, + 111, + 0, + ], + "glowAmplify": 0.4000000059604645, + "glowLevel": Uint8Array [ + 1, + 1, + 1, + 0, + ], + "saturation": 1.399999976158142, + "ssaoAmount": 3, + "ssaoBrighten": 0.20000000298023224, + "ssaoContrast": 1, + "ssaoSunScale": 0.5, + "tintAmount": 0, + "tintColor": Uint8Array [ + 255, + 255, + 255, + 255, + ], + "tintFocus": 0, + "tintTargetColor": Uint8Array [ + 255, + 255, + 255, + 0, + ], + }, + { + "clutTexturePath": 0, + "ext": {}, + "flags": 0, + "focalDepth": 6000, + "focalRange": 4000, + "glow": Uint8Array [ + 54, + 117, + 120, + 0, + ], + "glowAmplify": 0.350482314825058, + "glowLevel": Uint8Array [ + 0, + 1, + 1, + 0, + ], + "saturation": 1, + "ssaoAmount": 3, + "ssaoBrighten": 0.20000000298023224, + "ssaoContrast": 1, + "ssaoSunScale": 0.5, + "tintAmount": 0, + "tintColor": Uint8Array [ + 255, + 255, + 255, + 255, + ], + "tintFocus": 0, + "tintTargetColor": Uint8Array [ + 255, + 255, + 255, + 0, + ], + }, + { + "clutTexturePath": 0, + "ext": {}, + "flags": 0, + "focalDepth": 6000, + "focalRange": 4000, + "glow": Uint8Array [ + 0, + 0, + 0, + 0, + ], + "glowAmplify": 0, + "glowLevel": Uint8Array [ + 0, + 0, + 0, + 0, + ], + "saturation": 1, + "ssaoAmount": 3, + "ssaoBrighten": 0.20000000298023224, + "ssaoContrast": 1, + "ssaoSunScale": 0.5, + "tintAmount": 0, + "tintColor": Uint8Array [ + 255, + 255, + 255, + 255, + ], + "tintFocus": 0, + "tintTargetColor": Uint8Array [ + 255, + 255, + 255, + 0, + ], + }, + ], + "ext": { + "brightMax": 0.5, + "brightMin": 0.30000001192092896, + "brightScale": 1, + "brightTime": 2.5, + "darkCoeff": 1.2000000476837158, + "darkExp": 0.800000011920929, + "darkMax": 0.30000001192092896, + "darkMin": 0.10000000149011612, + "darkScale": 1, + "dimTime": 5, + "ext2": {}, + "waterReflectionParams": Float32Array [ + 0, + 0, + 0, + 0, + ], + }, + "flags": 0, + "guid": 1835375027040584239n, + "haze": [ + { + "depthCue": 0.0002519999979995191, + "distRange": Float32Array [ + 648.6954345703125, + 2621.468994140625, + ], + "farColor": Uint8Array [ + 48, + 60, + 12, + 255, + ], + "heightColor": Uint8Array [ + 146, + 115, + 136, + 255, + ], + "heightRange": Float32Array [ + -359.7119140625, + 1478.148681640625, + ], + "nearColor": Uint8Array [ + 0, + 0, + 0, + 255, + ], + "sunDirRange": Float32Array [ + -1, + 1, + ], + }, + { + "depthCue": 0.0002519999979995191, + "distRange": Float32Array [ + 648.6954345703125, + 3884.892333984375, + ], + "farColor": Uint8Array [ + 76, + 64, + 37, + 255, + ], + "heightColor": Uint8Array [ + 146, + 115, + 136, + 255, + ], + "heightRange": Float32Array [ + -359.7119140625, + 1478.148681640625, + ], + "nearColor": Uint8Array [ + 24, + 23, + 6, + 255, + ], + "sunDirRange": Float32Array [ + -1, + 1, + ], + }, + { + "depthCue": 0, + "distRange": Float32Array [ + 0, + 0, + ], + "farColor": Uint8Array [ + 0, + 0, + 0, + 255, + ], + "heightColor": Uint8Array [ + 0, + 0, + 0, + 255, + ], + "heightRange": Float32Array [ + 0, + 0, + ], + "nearColor": Uint8Array [ + 0, + 0, + 0, + 255, + ], + "sunDirRange": Float32Array [ + 0, + 0, + ], + }, + ], + "lighting": [ + { + "backlightColor": Uint8Array [ + 255, + 255, + 255, + ], + "backlightIntensity": 0, + "lights": [ + { + "color": Uint8Array [ + 45, + 46, + 37, + ], + "direction": Float32Array [ + 0.7071067690849304, + 0, + 0.7071067690849304, + ], + "intensity": 1.2000000476837158, + }, + { + "color": Uint8Array [ + 31, + 140, + 183, + ], + "direction": Float32Array [ + -0.7071067690849304, + -0.0000012868819112554775, + -0.7071067690849304, + ], + "intensity": 0.052401747554540634, + }, + { + "color": Uint8Array [ + 249, + 98, + 15, + ], + "direction": Float32Array [ + -0.0000010291722674082848, + -1.8730171493647196e-12, + -1, + ], + "intensity": 0.24671052396297455, + }, + { + "color": Uint8Array [ + 161, + 255, + 174, + ], + "direction": Float32Array [ + -0.0000010291722674082848, + -1.8730171493647196e-12, + 1, + ], + "intensity": 0, + }, + { + "color": Uint8Array [ + 255, + 255, + 255, + ], + "direction": Float32Array [ + -0.7071067690849304, + -0.0000012868819112554775, + 0.7071067690849304, + ], + "intensity": 0.10197368264198303, + }, + { + "color": Uint8Array [ + 255, + 255, + 255, + ], + "direction": Float32Array [ + -4.371138828673793e-8, + 1, + 0, + ], + "intensity": 0, + }, + { + "color": Uint8Array [ + 255, + 255, + 255, + ], + "direction": Float32Array [ + 0.7071067690849304, + 0, + -0.7071067690849304, + ], + "intensity": 0, + }, + { + "color": Uint8Array [ + 255, + 255, + 255, + ], + "direction": Float32Array [ + -4.371138828673793e-8, + -1, + 0, + ], + "intensity": 0, + }, + ], + "shadowInfluence": 0, + }, + { + "backlightColor": Uint8Array [ + 255, + 255, + 255, + ], + "backlightIntensity": 0, + "lights": [ + { + "color": Uint8Array [ + 230, + 245, + 255, + ], + "direction": Float32Array [ + 0.6427881717681885, + 0, + 0.7660439610481262, + ], + "intensity": 0.0690789446234703, + }, + { + "color": Uint8Array [ + 228, + 99, + 8, + ], + "direction": Float32Array [ + -0.7071067690849304, + -0.0000012868819112554775, + -0.7071067690849304, + ], + "intensity": 0.43421053886413574, + }, + { + "color": Uint8Array [ + 249, + 98, + 15, + ], + "direction": Float32Array [ + -0.0000010291722674082848, + -1.8730171493647196e-12, + -1, + ], + "intensity": 0.24671052396297455, + }, + { + "color": Uint8Array [ + 161, + 255, + 174, + ], + "direction": Float32Array [ + -0.0000010291722674082848, + -1.8730171493647196e-12, + 1, + ], + "intensity": 0, + }, + { + "color": Uint8Array [ + 255, + 255, + 255, + ], + "direction": Float32Array [ + -0.7071067690849304, + -0.0000012868819112554775, + 0.7071067690849304, + ], + "intensity": 0.10197368264198303, + }, + { + "color": Uint8Array [ + 255, + 255, + 255, + ], + "direction": Float32Array [ + -4.371138828673793e-8, + 1, + 0, + ], + "intensity": 0, + }, + { + "color": Uint8Array [ + 255, + 255, + 255, + ], + "direction": Float32Array [ + 0.7071067690849304, + 0, + -0.7071067690849304, + ], + "intensity": 0, + }, + { + "color": Uint8Array [ + 255, + 255, + 255, + ], + "direction": Float32Array [ + -4.371138828673793e-8, + -1, + 0, + ], + "intensity": 0, + }, + ], + "shadowInfluence": -0.2937690019607544, + }, + { + "backlightColor": Uint8Array [ + 0, + 0, + 0, + ], + "backlightIntensity": 0, + "lights": [ + { + "color": Uint8Array [ + 255, + 233, + 192, + ], + "direction": Float32Array [ + 0.7071067690849304, + 0, + 0.7071067690849304, + ], + "intensity": 1.2999999523162842, + }, + { + "color": Uint8Array [ + 124, + 172, + 248, + ], + "direction": Float32Array [ + -0.7071067690849304, + -0.0000012868819112554775, + -0.7071067690849304, + ], + "intensity": 0.30000001192092896, + }, + { + "color": Uint8Array [ + 191, + 221, + 255, + ], + "direction": Float32Array [ + 0.29848748445510864, + 0.9186500906944275, + 0.258819043636322, + ], + "intensity": 0.10000000149011612, + }, + { + "color": Uint8Array [ + 188, + 204, + 253, + ], + "direction": Float32Array [ + -0.7814504504203796, + 0.5677568912506104, + 0.258819043636322, + ], + "intensity": 0.10000000149011612, + }, + { + "color": Uint8Array [ + 199, + 190, + 255, + ], + "direction": Float32Array [ + -0.8824164271354675, + 0.39287903904914856, + 0.25881901383399963, + ], + "intensity": 0.10000000149011612, + }, + { + "color": Uint8Array [ + 189, + 222, + 255, + ], + "direction": Float32Array [ + 0.2984875440597534, + -0.9186500310897827, + 0.258819043636322, + ], + "intensity": 0.10000000149011612, + }, + { + "color": Uint8Array [ + 204, + 237, + 255, + ], + "direction": Float32Array [ + -9.099629210140847e-7, + 1.6560650420438527e-12, + 1, + ], + "intensity": 0.30000001192092896, + }, + { + "color": Uint8Array [ + 168, + 254, + 189, + ], + "direction": Float32Array [ + -9.099629210140847e-7, + 1.6560650420438527e-12, + -1, + ], + "intensity": 0.15000000596046448, + }, + ], + "shadowInfluence": 0, + }, + ], + "lightingCharGroups": [], + "name": "", + "nightMods": Uint8Array [ + 255, + 255, + 255, + 133, + ], + "particleFieldCutouts": [], + "particleFields": [ + { + "altitude": 0, + "angle": Float32Array [ + 0, + 0, + ], + "clusterCount": 0, + "clustering": Float32Array [ + 0, + 0, + ], + "depth": 0, + "deviation": 0, + "deviationSpeed": Float32Array [ + 0, + 0, + ], + "extent": 0, + "fade": 0, + "fieldDirection": Float32Array [ + 0, + 0, + 0, + ], + "flags": 0, + "lifetime": Float32Array [ + 0, + 0, + ], + "name": "", + "opacity": Float32Array [ + 0, + 0, + ], + "particleCount": 0, + "period": Float32Array [ + 0, + 0, + ], + "reserved": 0, + "rotation": Float32Array [ + 0, + 0, + ], + "scaleX": Float32Array [ + 0, + 0, + ], + "scaleY": Float32Array [ + 0, + 0, + ], + "seed": 0, + "speed": Float32Array [ + 0, + 0, + ], + "texColRow": Uint32Array [ + 0, + 0, + ], + "texFPS": 0, + "texPath": 0, + "type": 0, + }, + ], + "shapeArray": [ + { + "center": Float32Array [ + -8879.560546875, + -13245.109375, + -12974.90234375, + ], + "fadeHorizInner": 371.6216125488281, + "fadeHorizOuter": 270.270263671875, + "fadeVertical": 0, + "height": 5636.4453125, + "shapeType": 2, + "vertexArray": [ + Float32Array [ + -17353.59375, + -9774.84375, + ], + Float32Array [ + -12396.9443359375, + -7467.1611328125, + ], + Float32Array [ + -3986.5087890625, + -7767.90380859375, + ], + Float32Array [ + -912.1637573242188, + -9311.8076171875, + ], + Float32Array [ + 620.6925048828125, + -13810.083984375, + ], + Float32Array [ + -493.6715087890625, + -14346.0322265625, + ], + Float32Array [ + 1432.8919677734375, + -15646.5263671875, + ], + Float32Array [ + -598.12451171875, + -18428.51953125, + ], + Float32Array [ + -19192.013671875, + -19023.05859375, + ], + ], + }, + ], + "sky": {}, + "skyCards": { + "cards": [], + }, + "spawns": {}, + "type": 5, + "water": [ + { + "animAmplitude": 0, + "animChoppiness": -1, + "animWind": Float32Array [ + -16.866567611694336, + -10.41978931427002, + ], + "bumpAmount": 53.96515655517578, + "bumpAngle0": 143.32440185546875, + "bumpAngle1": 142.3592529296875, + "bumpScale0": 0.0956140011548996, + "bumpScale1": 0.0956140011548996, + "bumpSpeed0": 1.309609055519104, + "bumpSpeed1": 0.030842000618577003, + "bumpTile0": 5.013054847717285, + "bumpTile1": 13.660573959350586, + "constantTokens": [], + "constantValues": [], + "depthAttenuation": 11.484257698059082, + "distortAmount": 0.009999999776482582, + "foamColor0": Uint8Array [ + 0, + 0, + 0, + 0, + ], + "foamColor1": Uint8Array [ + 0, + 0, + 0, + 0, + ], + "foamDepthAttenuation": 0, + "foamDissolve": 0, + "foamSpawn": 0, + "materialFilename": 186314, + "patternAngle": 170.55117797851562, + "patternColor": Uint8Array [ + 176, + 180, + 136, + 33, + ], + "patternEdge": 0.509988009929657, + "patternSpeed": 0.6016449928283691, + "patternTile": 10.904817581176758, + "surfaceDeepColor": Uint8Array [ + 23, + 63, + 95, + 0, + ], + "surfaceFresnel": 7.059234142303467, + "surfaceShallowColor": Uint8Array [ + 145, + 193, + 103, + 0, + ], + "textureFilenames": [ + 0, + 186359, + 186361, + ], + "waterFlags": 1, + }, + { + "animAmplitude": 0, + "animChoppiness": -0.4678260087966919, + "animWind": Float32Array [ + -34.065345764160156, + -27.119556427001953, + ], + "bumpAmount": 72.02046203613281, + "bumpAngle0": 70.15873718261719, + "bumpAngle1": 12.396697998046875, + "bumpScale0": 0.22796399891376495, + "bumpScale1": 0.20668700337409973, + "bumpSpeed0": 0.534434974193573, + "bumpSpeed1": 0.7768599987030029, + "bumpTile0": 2.3801651000976562, + "bumpTile1": 13.35779857635498, + "constantTokens": Uint32Array [ + 809906891, + 911119242, + 910462480, + 808137754, + 814574097, + 807298231, + 813734574, + 3101301168, + 1324870500, + 1472906389, + 2953265279, + 3427729611, + 1355227165, + 2983621944, + ], + "constantValues": [ + Float32Array [ + 0.521569013595581, + 0.521569013595581, + 0.521569013595581, + 255, + ], + Float32Array [ + 0.9372550249099731, + 0.8470590114593506, + 0.5803920030593872, + 1, + ], + Float32Array [ + 34.11420440673828, + 0, + 0, + 0, + ], + Float32Array [ + 0.8916540145874023, + 15, + 3, + 0, + ], + Float32Array [ + 0.7337750196456909, + 0.26622501015663147, + 0.3443709909915924, + 1, + ], + Float32Array [ + 0.23426100611686707, + 35, + 1, + 0, + ], + Float32Array [ + 0.49139100313186646, + 0.27417200803756714, + 0.15231800079345703, + 0.5721849799156189, + ], + Float32Array [ + 0, + 0, + 0, + 0, + ], + Float32Array [ + 0, + 0, + 0, + 0, + ], + Float32Array [ + 0, + 0, + 0, + 0, + ], + Float32Array [ + 0, + 0, + 0, + 0, + ], + Float32Array [ + 0, + 0, + 0, + 0, + ], + Float32Array [ + 0, + 0, + 0, + 0, + ], + Float32Array [ + 0, + 0, + 0, + 0, + ], + ], + "depthAttenuation": 431.1845397949219, + "distortAmount": 0.00009999999747378752, + "foamColor0": Uint8Array [ + 51, + 126, + 174, + 38, + ], + "foamColor1": Uint8Array [ + 255, + 255, + 255, + 191, + ], + "foamDepthAttenuation": 0.8999999761581421, + "foamDissolve": 0.949999988079071, + "foamSpawn": 0.5, + "materialFilename": 187551, + "patternAngle": 9.310355186462402, + "patternColor": Uint8Array [ + 179, + 124, + 125, + 34, + ], + "patternEdge": 0.36927199363708496, + "patternSpeed": 0.30727800726890564, + "patternTile": 14.381322860717773, + "surfaceDeepColor": Uint8Array [ + 58, + 94, + 103, + 0, + ], + "surfaceFresnel": 0.8354790210723877, + "surfaceShallowColor": Uint8Array [ + 116, + 218, + 226, + 0, + ], + "textureFilenames": [ + 0, + 186359, + 187574, + 187574, + 187576, + ], + "waterFlags": 1, + }, + { + "animAmplitude": 0, + "animChoppiness": 0.41447365283966064, + "animWind": Float32Array [ + -1.7856776714324951, + -2.7331838607788086, + ], + "bumpAmount": 300, + "bumpAngle0": 0, + "bumpAngle1": 40, + "bumpScale0": 0.10000000149011612, + "bumpScale1": 0.10000000149011612, + "bumpSpeed0": 1, + "bumpSpeed1": 1, + "bumpTile0": 1.7999999523162842, + "bumpTile1": 2.5999999046325684, + "constantTokens": Uint32Array [ + 3101301168, + 1324870500, + 1472906389, + 2953265279, + 3427729611, + 1355227165, + 2983621944, + 2541789506, + ], + "constantValues": [ + Float32Array [ + 0, + 0, + 0, + 0, + ], + Float32Array [ + 0, + 0, + 0, + 0, + ], + Float32Array [ + 0, + 0, + 0, + 0, + ], + Float32Array [ + 0, + 0, + 0, + 0, + ], + Float32Array [ + 0, + 0, + 0, + 0, + ], + Float32Array [ + 0, + 0, + 0, + 0, + ], + Float32Array [ + 0, + 0, + 0, + 0, + ], + Float32Array [ + 0.10000000149011612, + 0.10000000149011612, + 0.10000000149011612, + 0.10000000149011612, + ], + ], + "depthAttenuation": 418.3453674316406, + "distortAmount": 0.010438310913741589, + "foamColor0": Uint8Array [ + 51, + 126, + 174, + 38, + ], + "foamColor1": Uint8Array [ + 255, + 255, + 255, + 191, + ], + "foamDepthAttenuation": 0.8999999761581421, + "foamDissolve": 0.949999988079071, + "foamSpawn": 0.5, + "materialFilename": 188555, + "patternAngle": 0, + "patternColor": Uint8Array [ + 139, + 109, + 107, + 218, + ], + "patternEdge": 1, + "patternSpeed": 1, + "patternTile": 1.7999999523162842, + "surfaceDeepColor": Uint8Array [ + 50, + 16, + 9, + 0, + ], + "surfaceFresnel": 2.5, + "surfaceShallowColor": Uint8Array [ + 190, + 168, + 103, + 0, + ], + "textureFilenames": [ + 0, + 186359, + 187574, + ], + "waterFlags": 1, + }, + ], + "wind": [], + }, + { + "audio": [], + "bindTarget": 1868351169896677902n, + "clouds": { + "layers": [ + { + "altitude": 5895.5986328125, + "attributes": [ + { + "brightness": 1, + "density": 0.572160005569458, + "fadeEnd": 30, + "fadeWidth": 30, + "haze": 0, + "lightIntensity": 1, + "reserved": 0, + "velocity": Float32Array [ + 25.588512420654297, + 50.15349578857422, + ], + }, + { + "brightness": 1, + "density": 0.572160005569458, + "fadeEnd": 30, + "fadeWidth": 30, + "haze": 0, + "lightIntensity": 1, + "reserved": 0, + "velocity": Float32Array [ + 25.588512420654297, + 50.15349578857422, + ], + }, + { + "brightness": 1, + "density": 0, + "fadeEnd": 30, + "fadeWidth": 30, + "haze": 1, + "lightIntensity": 1, + "reserved": 0, + "velocity": Float32Array [ + 0, + 0, + ], + }, + ], + "cutOut": 1000, + "depth": 0.011873000301420689, + "extent": 1, + "name": "", + "reserved": 0, + "scale": 4.677585124969482, + "texture": 188574, + }, + { + "altitude": 462.0123291015625, + "attributes": [ + { + "brightness": 1, + "density": 0, + "fadeEnd": 225, + "fadeWidth": 100, + "haze": 1, + "lightIntensity": 1, + "reserved": 0, + "velocity": Float32Array [ + 0, + 0, + ], + }, + { + "brightness": 1, + "density": 0, + "fadeEnd": 225, + "fadeWidth": 100, + "haze": 1, + "lightIntensity": 1, + "reserved": 0, + "velocity": Float32Array [ + 0, + 0, + ], + }, + { + "brightness": 1, + "density": 0, + "fadeEnd": 225, + "fadeWidth": 100, + "haze": 1, + "lightIntensity": 1, + "reserved": 0, + "velocity": Float32Array [ + 0, + 0, + ], + }, + ], + "cutOut": 2000, + "depth": 0.004569000098854303, + "extent": 1, + "name": "", + "reserved": 0, + "scale": 1.630321979522705, + "texture": 188576, + }, + { + "altitude": 30000, + "attributes": [ + { + "brightness": 1, + "density": 0.43103447556495667, + "fadeEnd": 16, + "fadeWidth": 16, + "haze": 1, + "lightIntensity": 0.36925286054611206, + "reserved": 0, + "velocity": Float32Array [ + -290.2298583984375, + -149.42529296875, + ], + }, + { + "brightness": 1, + "density": 0.43103447556495667, + "fadeEnd": 16, + "fadeWidth": 16, + "haze": 1, + "lightIntensity": 0.36925286054611206, + "reserved": 0, + "velocity": Float32Array [ + -290.2298583984375, + -149.42529296875, + ], + }, + { + "brightness": 1, + "density": 1, + "fadeEnd": 16, + "fadeWidth": 16, + "haze": 1, + "lightIntensity": 1, + "reserved": 0, + "velocity": Float32Array [ + 0, + 0, + ], + }, + ], + "cutOut": 100, + "depth": 0, + "extent": 1, + "name": "", + "reserved": 0, + "scale": 1.3074712753295898, + "texture": 195082, + }, + { + "altitude": 30000, + "attributes": [ + { + "brightness": 1, + "density": 1, + "fadeEnd": 16, + "fadeWidth": 16, + "haze": 1, + "lightIntensity": 1, + "reserved": 0, + "velocity": Float32Array [ + -178.160888671875, + 0, + ], + }, + { + "brightness": 1, + "density": 1, + "fadeEnd": 16, + "fadeWidth": 16, + "haze": 1, + "lightIntensity": 1, + "reserved": 0, + "velocity": Float32Array [ + -178.160888671875, + 0, + ], + }, + { + "brightness": 1, + "density": 1, + "fadeEnd": 16, + "fadeWidth": 16, + "haze": 1, + "lightIntensity": 1, + "reserved": 0, + "velocity": Float32Array [ + 0, + 0, + ], + }, + ], + "cutOut": 100, + "depth": 0, + "extent": 1, + "name": "", + "reserved": 0, + "scale": 0.7471264004707336, + "texture": 195082, + }, + { + "altitude": 22801.72265625, + "attributes": [ + { + "brightness": 1, + "density": 1, + "fadeEnd": 16, + "fadeWidth": 16, + "haze": 1, + "lightIntensity": 1, + "reserved": 0, + "velocity": Float32Array [ + -267.2413330078125, + 83.3333740234375, + ], + }, + { + "brightness": 1, + "density": 1, + "fadeEnd": 16, + "fadeWidth": 16, + "haze": 1, + "lightIntensity": 1, + "reserved": 0, + "velocity": Float32Array [ + -267.2413330078125, + 83.3333740234375, + ], + }, + { + "brightness": 1, + "density": 1, + "fadeEnd": 16, + "fadeWidth": 16, + "haze": 1, + "lightIntensity": 1, + "reserved": 0, + "velocity": Float32Array [ + 0, + 0, + ], + }, + ], + "cutOut": 3000, + "depth": 0, + "extent": 1, + "name": "", + "reserved": 0, + "scale": 0.5172414183616638, + "texture": 195082, + }, + { + "altitude": 20689.65625, + "attributes": [ + { + "brightness": 1, + "density": 1, + "fadeEnd": 16, + "fadeWidth": 16, + "haze": 1, + "lightIntensity": 1, + "reserved": 0, + "velocity": Float32Array [ + -163.7930908203125, + 89.0804443359375, + ], + }, + { + "brightness": 1, + "density": 1, + "fadeEnd": 16, + "fadeWidth": 16, + "haze": 1, + "lightIntensity": 1, + "reserved": 0, + "velocity": Float32Array [ + -163.7930908203125, + 89.0804443359375, + ], + }, + { + "brightness": 1, + "density": 1, + "fadeEnd": 16, + "fadeWidth": 16, + "haze": 1, + "lightIntensity": 1, + "reserved": 0, + "velocity": Float32Array [ + 0, + 0, + ], + }, + ], + "cutOut": 3000, + "depth": 0, + "extent": 1, + "name": "", + "reserved": 0, + "scale": 0.8908045887947083, + "texture": 195082, + }, + ], + }, + "coloredLightRings": [], + "effect": [ + { + "clutTexturePath": 0, + "ext": {}, + "flags": 0, + "focalDepth": 6000, + "focalRange": 4000, + "glow": Uint8Array [ + 9, + 24, + 38, + 0, + ], + "glowAmplify": 0.4000000059604645, + "glowLevel": Uint8Array [ + 51, + 51, + 51, + 0, + ], + "saturation": 1, + "ssaoAmount": 3, + "ssaoBrighten": 0.20000000298023224, + "ssaoContrast": 1, + "ssaoSunScale": 0.5, + "tintAmount": 0, + "tintColor": Uint8Array [ + 0, + 0, + 0, + 0, + ], + "tintFocus": 0, + "tintTargetColor": Uint8Array [ + 0, + 0, + 0, + 0, + ], + }, + { + "clutTexturePath": 0, + "ext": {}, + "flags": 0, + "focalDepth": 6000, + "focalRange": 4000, + "glow": Uint8Array [ + 161, + 122, + 55, + 0, + ], + "glowAmplify": 0.4000000059604645, + "glowLevel": Uint8Array [ + 51, + 51, + 51, + 0, + ], + "saturation": 1, + "ssaoAmount": 3, + "ssaoBrighten": 0.20000000298023224, + "ssaoContrast": 1, + "ssaoSunScale": 0.5, + "tintAmount": 0, + "tintColor": Uint8Array [ + 0, + 0, + 0, + 0, + ], + "tintFocus": 0, + "tintTargetColor": Uint8Array [ + 0, + 0, + 0, + 0, + ], + }, + { + "clutTexturePath": 0, + "ext": {}, + "flags": 0, + "focalDepth": 6000, + "focalRange": 4000, + "glow": Uint8Array [ + 0, + 0, + 0, + 0, + ], + "glowAmplify": 0, + "glowLevel": Uint8Array [ + 0, + 0, + 0, + 0, + ], + "saturation": 1, + "ssaoAmount": 3, + "ssaoBrighten": 0.20000000298023224, + "ssaoContrast": 1, + "ssaoSunScale": 0.5, + "tintAmount": 0, + "tintColor": Uint8Array [ + 255, + 255, + 255, + 255, + ], + "tintFocus": 0, + "tintTargetColor": Uint8Array [ + 255, + 255, + 255, + 0, + ], + }, + ], + "ext": { + "brightMax": 0.5, + "brightMin": 0.30000001192092896, + "brightScale": 1, + "brightTime": 2.5, + "darkCoeff": 1.2000000476837158, + "darkExp": 0.800000011920929, + "darkMax": 0.30000001192092896, + "darkMin": 0.10000000149011612, + "darkScale": 1, + "dimTime": 5, + "ext2": {}, + "waterReflectionParams": Float32Array [ + 0, + 0, + 0, + 0, + ], + }, + "flags": 0, + "guid": 1847600628111540867n, + "haze": [ + { + "depthCue": 0.00041099998634308577, + "distRange": Float32Array [ + 2722.53076171875, + 12594.4951171875, + ], + "farColor": Uint8Array [ + 217, + 159, + 77, + 255, + ], + "heightColor": Uint8Array [ + 38, + 74, + 115, + 255, + ], + "heightRange": Float32Array [ + -34.73039245605469, + 140.40118408203125, + ], + "nearColor": Uint8Array [ + 217, + 159, + 77, + 255, + ], + "sunDirRange": Float32Array [ + 0, + 0, + ], + }, + { + "depthCue": 0.0002519999979995191, + "distRange": Float32Array [ + 5253.01220703125, + 13759.0361328125, + ], + "farColor": Uint8Array [ + 139, + 128, + 107, + 255, + ], + "heightColor": Uint8Array [ + 146, + 115, + 136, + 255, + ], + "heightRange": Float32Array [ + -283.95294189453125, + 399.01202392578125, + ], + "nearColor": Uint8Array [ + 211, + 191, + 24, + 255, + ], + "sunDirRange": Float32Array [ + -1, + 1, + ], + }, + { + "depthCue": 0, + "distRange": Float32Array [ + 0, + 0, + ], + "farColor": Uint8Array [ + 0, + 0, + 0, + 255, + ], + "heightColor": Uint8Array [ + 0, + 0, + 0, + 255, + ], + "heightRange": Float32Array [ + 0, + 0, + ], + "nearColor": Uint8Array [ + 0, + 0, + 0, + 255, + ], + "sunDirRange": Float32Array [ + 0, + 0, + ], + }, + ], + "lighting": [ + { + "backlightColor": Uint8Array [ + 255, + 255, + 255, + ], + "backlightIntensity": 1, + "lights": [ + { + "color": Uint8Array [ + 191, + 248, + 255, + ], + "direction": Float32Array [ + 0.7071067690849304, + 0, + 0.7071067690849304, + ], + "intensity": 1.100000023841858, + }, + { + "color": Uint8Array [ + 46, + 174, + 255, + ], + "direction": Float32Array [ + -0.7071067690849304, + -0.0000012868819112554775, + -0.7071067690849304, + ], + "intensity": 0.4000000059604645, + }, + { + "color": Uint8Array [ + 255, + 221, + 191, + ], + "direction": Float32Array [ + -9.099629210140847e-7, + 1.6560650420438527e-12, + 1, + ], + "intensity": 0.30000001192092896, + }, + { + "color": Uint8Array [ + 32, + 147, + 255, + ], + "direction": Float32Array [ + -9.099629210140847e-7, + 1.6560650420438527e-12, + -1, + ], + "intensity": 0.25, + }, + { + "color": Uint8Array [ + 255, + 201, + 191, + ], + "direction": Float32Array [ + -0.7071067690849304, + -0.0000012868819112554775, + 0.7071067690849304, + ], + "intensity": 0.20000000298023224, + }, + { + "color": Uint8Array [ + 255, + 190, + 199, + ], + "direction": Float32Array [ + -4.371138828673793e-8, + 1, + 0, + ], + "intensity": 0.20000000298023224, + }, + { + "color": Uint8Array [ + 255, + 201, + 191, + ], + "direction": Float32Array [ + 0.7071067690849304, + 0, + -0.7071067690849304, + ], + "intensity": 0.20000000298023224, + }, + { + "color": Uint8Array [ + 255, + 190, + 199, + ], + "direction": Float32Array [ + -4.371138828673793e-8, + -1, + 0, + ], + "intensity": 0.20000000298023224, + }, + ], + "shadowInfluence": 0, + }, + { + "backlightColor": Uint8Array [ + 255, + 255, + 255, + ], + "backlightIntensity": 1, + "lights": [ + { + "color": Uint8Array [ + 240, + 126, + 45, + ], + "direction": Float32Array [ + 0.7071067690849304, + 0, + 0.7071067690849304, + ], + "intensity": 1.2000000476837158, + }, + { + "color": Uint8Array [ + 255, + 234, + 219, + ], + "direction": Float32Array [ + -0.7071067690849304, + -0.0000012868819112554775, + -0.7071067690849304, + ], + "intensity": 0.12171052396297455, + }, + { + "color": Uint8Array [ + 249, + 15, + 98, + ], + "direction": Float32Array [ + -0.0000010291722674082848, + -1.8730171493647196e-12, + -1, + ], + "intensity": 0.06578947603702545, + }, + { + "color": Uint8Array [ + 161, + 255, + 174, + ], + "direction": Float32Array [ + -0.0000010291722674082848, + -1.8730171493647196e-12, + 1, + ], + "intensity": 0.17117099463939667, + }, + { + "color": Uint8Array [ + 255, + 255, + 255, + ], + "direction": Float32Array [ + -0.7071067690849304, + -0.0000012868819112554775, + 0.7071067690849304, + ], + "intensity": 0.08408399671316147, + }, + { + "color": Uint8Array [ + 255, + 255, + 255, + ], + "direction": Float32Array [ + -4.371138828673793e-8, + 1, + 0, + ], + "intensity": 0.06606599688529968, + }, + { + "color": Uint8Array [ + 255, + 255, + 255, + ], + "direction": Float32Array [ + 0.7071067690849304, + 0, + -0.7071067690849304, + ], + "intensity": 0.08408399671316147, + }, + { + "color": Uint8Array [ + 255, + 255, + 255, + ], + "direction": Float32Array [ + -4.371138828673793e-8, + -1, + 0, + ], + "intensity": 0.08408399671316147, + }, + ], + "shadowInfluence": -0.2937690019607544, + }, + { + "backlightColor": Uint8Array [ + 0, + 0, + 0, + ], + "backlightIntensity": 0, + "lights": [ + { + "color": Uint8Array [ + 255, + 233, + 192, + ], + "direction": Float32Array [ + 0.7071067690849304, + 0, + 0.7071067690849304, + ], + "intensity": 1.2999999523162842, + }, + { + "color": Uint8Array [ + 124, + 172, + 248, + ], + "direction": Float32Array [ + -0.7071067690849304, + -0.0000012868819112554775, + -0.7071067690849304, + ], + "intensity": 0.30000001192092896, + }, + { + "color": Uint8Array [ + 191, + 221, + 255, + ], + "direction": Float32Array [ + 0.29848748445510864, + 0.9186500906944275, + 0.258819043636322, + ], + "intensity": 0.10000000149011612, + }, + { + "color": Uint8Array [ + 188, + 204, + 253, + ], + "direction": Float32Array [ + -0.7814504504203796, + 0.5677568912506104, + 0.258819043636322, + ], + "intensity": 0.10000000149011612, + }, + { + "color": Uint8Array [ + 199, + 190, + 255, + ], + "direction": Float32Array [ + -0.8824164271354675, + 0.39287903904914856, + 0.25881901383399963, + ], + "intensity": 0.10000000149011612, + }, + { + "color": Uint8Array [ + 189, + 222, + 255, + ], + "direction": Float32Array [ + 0.2984875440597534, + -0.9186500310897827, + 0.258819043636322, + ], + "intensity": 0.10000000149011612, + }, + { + "color": Uint8Array [ + 204, + 237, + 255, + ], + "direction": Float32Array [ + -9.099629210140847e-7, + 1.6560650420438527e-12, + 1, + ], + "intensity": 0.30000001192092896, + }, + { + "color": Uint8Array [ + 168, + 254, + 189, + ], + "direction": Float32Array [ + -9.099629210140847e-7, + 1.6560650420438527e-12, + -1, + ], + "intensity": 0.15000000596046448, + }, + ], + "shadowInfluence": 0, + }, + ], + "lightingCharGroups": [], + "name": "", + "nightMods": Uint8Array [ + 255, + 255, + 255, + 133, + ], + "particleFieldCutouts": [], + "particleFields": [ + { + "altitude": 0, + "angle": Float32Array [ + 0, + 0, + ], + "clusterCount": 0, + "clustering": Float32Array [ + 0, + 0, + ], + "depth": 0, + "deviation": 0, + "deviationSpeed": Float32Array [ + 0, + 0, + ], + "extent": 0, + "fade": 0, + "fieldDirection": Float32Array [ + 0, + 0, + 0, + ], + "flags": 0, + "lifetime": Float32Array [ + 0, + 0, + ], + "name": "", + "opacity": Float32Array [ + 0, + 0, + ], + "particleCount": 0, + "period": Float32Array [ + 0, + 0, + ], + "reserved": 0, + "rotation": Float32Array [ + 0, + 0, + ], + "scaleX": Float32Array [ + 0, + 0, + ], + "scaleY": Float32Array [ + 0, + 0, + ], + "seed": 0, + "speed": Float32Array [ + 0, + 0, + ], + "texColRow": Uint32Array [ + 0, + 0, + ], + "texFPS": 0, + "texPath": 0, + "type": 0, + }, + ], + "shapeArray": [ + { + "center": Float32Array [ + 5078.7978515625, + 12831.8701171875, + -16259.921875, + ], + "fadeHorizInner": 600, + "fadeHorizOuter": 0, + "fadeVertical": 0, + "height": 3590.421875, + "shapeType": 2, + "vertexArray": [ + Float32Array [ + 10214.435546875, + 19057.51953125, + ], + Float32Array [ + 15681.046875, + 14795.697265625, + ], + Float32Array [ + 14207.33203125, + 10054.9619140625, + ], + Float32Array [ + 9018.99609375, + 6606.220703125, + ], + Float32Array [ + 1179.751953125, + 7879.12744140625, + ], + Float32Array [ + -3394.358154296875, + 9835.7666015625, + ], + Float32Array [ + -5523.451171875, + 18285.791015625, + ], + ], + }, + ], + "sky": { + "dayBrightness": 1.2000000476837158, + "dayHazeBottom": 0, + "dayHazeDensity": 1, + "dayHazeFalloff": 0.5988371968269348, + "dayLightIntensity": 1, + "dayStarDensity": 0, + "flags": 0, + "nightBrightness": 1.5, + "nightHazeBottom": 0.4207436442375183, + "nightHazeDensity": 1, + "nightHazeFalloff": 0.4129158556461334, + "nightLightIntensity": 0.40577900409698486, + "nightStarDensity": 3, + "verticalOffset": 0, + }, + "skyCards": { + "cards": [ + { + "day": { + "azimuth": -3.1322264671325684, + "brightness": 0.7683168053627014, + "density": 0.6336633563041687, + "ext": {}, + "hazeDensity": 0, + "latitude": 0.2787356376647949, + "lensFlare": {}, + "lightIntensity": 1, + "minHaze": 0.5511810183525085, + "scale": Float32Array [ + 23.850574493408203, + 19.080459594726562, + ], + "speed": 0, + "texture": 186349, + "textureUV": Float32Array [ + 1, + 0.6516720056533813, + 0.44175300002098083, + 0.7383180260658264, + ], + }, + "ext": {}, + "flags": 694558725, + "location": Float32Array [ + 0, + 0, + 0, + ], + "material": {}, + "name": "", + "night": { + "azimuth": -3.1102538108825684, + "brightness": 0.26138612627983093, + "density": 1, + "ext": {}, + "hazeDensity": 0, + "latitude": 0.28316831588745117, + "lensFlare": {}, + "lightIntensity": 1, + "minHaze": 0.5511810183525085, + "scale": Float32Array [ + 23.850574493408203, + 19.080459594726562, + ], + "speed": 0, + "texture": 186349, + "textureUV": Float32Array [ + 1, + 0.6516720056533813, + 0.44175300002098083, + 0.7383180260658264, + ], + }, + }, + { + "day": { + "azimuth": -3.141228675842285, + "brightness": 2, + "density": 1, + "ext": {}, + "hazeDensity": 0, + "latitude": 0.30890804529190063, + "lensFlare": {}, + "lightIntensity": 1, + "minHaze": 0.5511810183525085, + "scale": Float32Array [ + 0.9900990128517151, + 0.7920792102813721, + ], + "speed": 0, + "texture": 186349, + "textureUV": Float32Array [ + 1, + 0.6516720056533813, + 0.44175300002098083, + 0.7383180260658264, + ], + }, + "ext": {}, + "flags": 694558727, + "location": Float32Array [ + 0, + 0, + 0, + ], + "material": {}, + "name": "", + "night": { + "azimuth": -3.141228675842285, + "brightness": 2, + "density": 0, + "ext": {}, + "hazeDensity": 0, + "latitude": 0.30890804529190063, + "lensFlare": {}, + "lightIntensity": 1, + "minHaze": 0.5511810183525085, + "scale": Float32Array [ + 1.436781644821167, + 1.1494252681732178, + ], + "speed": 0, + "texture": 186349, + "textureUV": Float32Array [ + 1, + 0.6516720056533813, + 0.44175300002098083, + 0.7383180260658264, + ], + }, + }, + { + "day": { + "azimuth": -3.3969788551330566, + "brightness": 0.2385057508945465, + "density": 0.39470699429512024, + "ext": {}, + "hazeDensity": 0.3886969983577728, + "latitude": 0.17528735101222992, + "lensFlare": {}, + "lightIntensity": 2, + "minHaze": 0.6562860012054443, + "scale": Float32Array [ + 12.356321334838867, + 2.3258962631225586, + ], + "speed": 0.0038112469483166933, + "texture": 190422, + "textureUV": Float32Array [ + 0, + 1, + 1, + 0.7951670289039612, + ], + }, + "ext": {}, + "flags": 560865285, + "location": Float32Array [ + 0, + 0, + 0, + ], + "material": {}, + "name": "", + "night": { + "azimuth": -3.3969788551330566, + "brightness": 0.2385057508945465, + "density": 0.39470699429512024, + "ext": {}, + "hazeDensity": 0.3886969983577728, + "latitude": 0.17528735101222992, + "lensFlare": {}, + "lightIntensity": 2, + "minHaze": 0.6562860012054443, + "scale": Float32Array [ + 12.356321334838867, + 2.3258962631225586, + ], + "speed": 0.0038112469483166933, + "texture": 190422, + "textureUV": Float32Array [ + 0, + 1, + 1, + 0.7951670289039612, + ], + }, + }, + { + "day": { + "azimuth": -0.24371786415576935, + "brightness": 1.1487890481948853, + "density": 0.5166860222816467, + "ext": {}, + "hazeDensity": 0.3068050146102905, + "latitude": 0.09482758492231369, + "lensFlare": {}, + "lightIntensity": 1, + "minHaze": 0.6816610097885132, + "scale": Float32Array [ + 27.384614944458008, + 5.842050552368164, + ], + "speed": 0.006719818338751793, + "texture": 190422, + "textureUV": Float32Array [ + 0, + 1, + 1, + 0.7951670289039612, + ], + }, + "ext": {}, + "flags": 879914764, + "location": Float32Array [ + 0, + 0, + 0, + ], + "material": {}, + "name": "", + "night": { + "azimuth": -0.24371786415576935, + "brightness": 1.1487890481948853, + "density": 0.5166860222816467, + "ext": {}, + "hazeDensity": 0.3068050146102905, + "latitude": 0.09482758492231369, + "lensFlare": {}, + "lightIntensity": 1, + "minHaze": 0.6816610097885132, + "scale": Float32Array [ + 27.384614944458008, + 5.842050552368164, + ], + "speed": 0.006719818338751793, + "texture": 190422, + "textureUV": Float32Array [ + 0, + 1, + 1, + 0.7951670289039612, + ], + }, + }, + { + "day": { + "azimuth": -4.883838176727295, + "brightness": 0.9396551847457886, + "density": 0.37212643027305603, + "ext": {}, + "hazeDensity": 1, + "latitude": 0.23275862634181976, + "lensFlare": {}, + "lightIntensity": 1, + "minHaze": 0, + "scale": Float32Array [ + 11.392404556274414, + 4.0290207862854, + ], + "speed": 0.002808269578963518, + "texture": 190422, + "textureUV": Float32Array [ + 0, + 1, + 0.5143839716911316, + 0.20828500390052795, + ], + }, + "ext": {}, + "flags": 896488192, + "location": Float32Array [ + 0, + 0, + 0, + ], + "material": {}, + "name": "", + "night": { + "azimuth": -4.883838176727295, + "brightness": 0.9396551847457886, + "density": 0.37212643027305603, + "ext": {}, + "hazeDensity": 1, + "latitude": 0.23275862634181976, + "lensFlare": {}, + "lightIntensity": 1, + "minHaze": 0, + "scale": Float32Array [ + 11.392404556274414, + 4.0290207862854, + ], + "speed": 0.002808269578963518, + "texture": 190422, + "textureUV": Float32Array [ + 0, + 1, + 0.5143839716911316, + 0.20828500390052795, + ], + }, + }, + { + "day": { + "azimuth": -2.1302263736724854, + "brightness": 1.09551203250885, + "density": 0.43153101205825806, + "ext": {}, + "hazeDensity": 0.4071510136127472, + "latitude": 0.3002873659133911, + "lensFlare": {}, + "lightIntensity": 1, + "minHaze": 0.6274510025978088, + "scale": Float32Array [ + 12.643678665161133, + 2.0434234142303467, + ], + "speed": 0.004814129788428545, + "texture": 190422, + "textureUV": Float32Array [ + 0, + 1, + 1, + 0.7951670289039612, + ], + }, + "ext": {}, + "flags": 1030059276, + "location": Float32Array [ + 0, + 0, + 0, + ], + "material": {}, + "name": "", + "night": { + "azimuth": -2.1302263736724854, + "brightness": 1.09551203250885, + "density": 0.43153101205825806, + "ext": {}, + "hazeDensity": 0.4071510136127472, + "latitude": 0.3002873659133911, + "lensFlare": {}, + "lightIntensity": 1, + "minHaze": 0.6274510025978088, + "scale": Float32Array [ + 12.643678665161133, + 2.0434234142303467, + ], + "speed": 0.004814129788428545, + "texture": 190422, + "textureUV": Float32Array [ + 0, + 1, + 1, + 0.7951670289039612, + ], + }, + }, + { + "day": { + "azimuth": -3.971675157546997, + "brightness": 1.0574712753295898, + "density": 0.6547759771347046, + "ext": {}, + "hazeDensity": 0, + "latitude": 0.3333333432674408, + "lensFlare": {}, + "lightIntensity": 2, + "minHaze": 0.6321839094161987, + "scale": Float32Array [ + 10.011507987976074, + 1.956272006034851, + ], + "speed": 0.0041120462119579315, + "texture": 190422, + "textureUV": Float32Array [ + 0, + 1, + 0.1990790069103241, + 0, + ], + }, + "ext": {}, + "flags": 538976264, + "location": Float32Array [ + 0, + 0, + 0, + ], + "material": {}, + "name": "", + "night": { + "azimuth": -3.971675157546997, + "brightness": 1.0574712753295898, + "density": 0.6547759771347046, + "ext": {}, + "hazeDensity": 0, + "latitude": 0.3333333432674408, + "lensFlare": {}, + "lightIntensity": 2, + "minHaze": 0.6321839094161987, + "scale": Float32Array [ + 10.011507987976074, + 1.956272006034851, + ], + "speed": 0.0041120462119579315, + "texture": 190422, + "textureUV": Float32Array [ + 0, + 1, + 0.1990790069103241, + 0, + ], + }, + }, + { + "day": { + "azimuth": -3.141228675842285, + "brightness": 2, + "density": 0, + "ext": {}, + "hazeDensity": 0, + "latitude": 0.30890804529190063, + "lensFlare": {}, + "lightIntensity": 1, + "minHaze": 0.5511810183525085, + "scale": Float32Array [ + 1.436781644821167, + 1.1494252681732178, + ], + "speed": 0, + "texture": 186349, + "textureUV": Float32Array [ + 1, + 0.6516720056533813, + 0.44175300002098083, + 0.7383180260658264, + ], + }, + "ext": {}, + "flags": 694558725, + "location": Float32Array [ + 0, + 0, + 0, + ], + "material": {}, + "name": "", + "night": { + "azimuth": -3.141228675842285, + "brightness": 2, + "density": 1, + "ext": {}, + "hazeDensity": 0, + "latitude": 0.30890804529190063, + "lensFlare": {}, + "lightIntensity": 1, + "minHaze": 0.5511810183525085, + "scale": Float32Array [ + 1.436781644821167, + 1.1494252681732178, + ], + "speed": 0, + "texture": 186349, + "textureUV": Float32Array [ + 0.2653465270996094, + 0, + 0.4554455578327179, + 0.6772277355194092, + ], + }, + }, + ], + }, + "spawns": {}, + "type": 5, + "water": [ + { + "animAmplitude": 0, + "animChoppiness": -1, + "animWind": Float32Array [ + -16.866567611694336, + -10.41978931427002, + ], + "bumpAmount": 53.96515655517578, + "bumpAngle0": 143.32440185546875, + "bumpAngle1": 142.3592529296875, + "bumpScale0": 0.0956140011548996, + "bumpScale1": 0.0956140011548996, + "bumpSpeed0": 1.309609055519104, + "bumpSpeed1": 0.030842000618577003, + "bumpTile0": 5.013054847717285, + "bumpTile1": 13.660573959350586, + "constantTokens": [], + "constantValues": [], + "depthAttenuation": 11.484257698059082, + "distortAmount": 0.009999999776482582, + "foamColor0": Uint8Array [ + 0, + 0, + 0, + 0, + ], + "foamColor1": Uint8Array [ + 0, + 0, + 0, + 0, + ], + "foamDepthAttenuation": 0, + "foamDissolve": 0, + "foamSpawn": 0, + "materialFilename": 186314, + "patternAngle": 170.55117797851562, + "patternColor": Uint8Array [ + 176, + 180, + 136, + 33, + ], + "patternEdge": 0.509988009929657, + "patternSpeed": 0.6016449928283691, + "patternTile": 10.904817581176758, + "surfaceDeepColor": Uint8Array [ + 23, + 63, + 95, + 0, + ], + "surfaceFresnel": 7.059234142303467, + "surfaceShallowColor": Uint8Array [ + 145, + 193, + 103, + 0, + ], + "textureFilenames": [ + 0, + 186359, + 186361, + ], + "waterFlags": 1, + }, + { + "animAmplitude": 0, + "animChoppiness": -0.4678260087966919, + "animWind": Float32Array [ + -34.065345764160156, + -27.119556427001953, + ], + "bumpAmount": 72.02046203613281, + "bumpAngle0": 70.15873718261719, + "bumpAngle1": 12.396697998046875, + "bumpScale0": 0.22796399891376495, + "bumpScale1": 0.20668700337409973, + "bumpSpeed0": 0.534434974193573, + "bumpSpeed1": 0.7768599987030029, + "bumpTile0": 2.3801651000976562, + "bumpTile1": 13.35779857635498, + "constantTokens": Uint32Array [ + 809906891, + 911119242, + 910462480, + 808137754, + 814574097, + 807298231, + 813734574, + 3101301168, + 1324870500, + 1472906389, + 2953265279, + 3427729611, + 1355227165, + 2983621944, + ], + "constantValues": [ + Float32Array [ + 0.521569013595581, + 0.521569013595581, + 0.521569013595581, + 255, + ], + Float32Array [ + 0.9372550249099731, + 0.8470590114593506, + 0.5803920030593872, + 1, + ], + Float32Array [ + 34.11420440673828, + 0, + 0, + 0, + ], + Float32Array [ + 0.8916540145874023, + 15, + 3, + 0, + ], + Float32Array [ + 0.7337750196456909, + 0.26622501015663147, + 0.3443709909915924, + 1, + ], + Float32Array [ + 0.23426100611686707, + 35, + 1, + 0, + ], + Float32Array [ + 0.49139100313186646, + 0.27417200803756714, + 0.15231800079345703, + 0.5721849799156189, + ], + Float32Array [ + 0, + 0, + 0, + 0, + ], + Float32Array [ + 0, + 0, + 0, + 0, + ], + Float32Array [ + 0, + 0, + 0, + 0, + ], + Float32Array [ + 0, + 0, + 0, + 0, + ], + Float32Array [ + 0, + 0, + 0, + 0, + ], + Float32Array [ + 0, + 0, + 0, + 0, + ], + Float32Array [ + 0, + 0, + 0, + 0, + ], + ], + "depthAttenuation": 431.1845397949219, + "distortAmount": 0.00009999999747378752, + "foamColor0": Uint8Array [ + 51, + 126, + 174, + 38, + ], + "foamColor1": Uint8Array [ + 255, + 255, + 255, + 191, + ], + "foamDepthAttenuation": 0.8999999761581421, + "foamDissolve": 0.949999988079071, + "foamSpawn": 0.5, + "materialFilename": 187551, + "patternAngle": 9.310355186462402, + "patternColor": Uint8Array [ + 179, + 124, + 125, + 34, + ], + "patternEdge": 0.36927199363708496, + "patternSpeed": 0.30727800726890564, + "patternTile": 14.381322860717773, + "surfaceDeepColor": Uint8Array [ + 58, + 94, + 103, + 0, + ], + "surfaceFresnel": 0.8354790210723877, + "surfaceShallowColor": Uint8Array [ + 116, + 218, + 226, + 0, + ], + "textureFilenames": [ + 0, + 186359, + 187574, + 187574, + 187576, + ], + "waterFlags": 1, + }, + { + "animAmplitude": 0, + "animChoppiness": 0, + "animWind": Float32Array [ + -90, + -30, + ], + "bumpAmount": 300, + "bumpAngle0": 0, + "bumpAngle1": 40, + "bumpScale0": 0.10000000149011612, + "bumpScale1": 0.10000000149011612, + "bumpSpeed0": 1, + "bumpSpeed1": 1, + "bumpTile0": 1.7999999523162842, + "bumpTile1": 2.5999999046325684, + "constantTokens": [], + "constantValues": [], + "depthAttenuation": 200, + "distortAmount": 0.15000000596046448, + "foamColor0": Uint8Array [ + 51, + 126, + 174, + 38, + ], + "foamColor1": Uint8Array [ + 255, + 255, + 255, + 191, + ], + "foamDepthAttenuation": 0.8999999761581421, + "foamDissolve": 0.949999988079071, + "foamSpawn": 0.5, + "materialFilename": 0, + "patternAngle": 0, + "patternColor": Uint8Array [ + 255, + 255, + 255, + 0, + ], + "patternEdge": 1, + "patternSpeed": 1, + "patternTile": 1.7999999523162842, + "surfaceDeepColor": Uint8Array [ + 50, + 16, + 9, + 0, + ], + "surfaceFresnel": 2.5, + "surfaceShallowColor": Uint8Array [ + 190, + 168, + 103, + 0, + ], + "textureFilenames": [], + "waterFlags": 1, + }, + ], + "wind": [ + { + "azimuth": 0, + "elevation": 0, + "gust": 26, + "gustFreq": 19, + "gustSpeed": 128, + "noise": 45, + "speed": 24, + }, + { + "azimuth": 7, + "elevation": 0, + "gust": 6, + "gustFreq": 38, + "gustSpeed": 24, + "noise": 4, + "speed": 10, + }, + { + "azimuth": 0, + "elevation": 0, + "gust": 0, + "gustFreq": 0, + "gustSpeed": 0, + "noise": 0, + "speed": 0, + }, + ], + }, + { + "audio": [], + "bindTarget": 1887241509806309893n, + "clouds": { + "layers": [ + { + "altitude": 4694.8359375, + "attributes": [ + { + "brightness": 0.06416275352239609, + "density": 0.6744914054870605, + "fadeEnd": 30, + "fadeWidth": 30, + "haze": 1, + "lightIntensity": -2, + "reserved": 0, + "velocity": Float32Array [ + 25.588512420654297, + 50.15349578857422, + ], + }, + { + "brightness": 0.06416275352239609, + "density": 0.6744914054870605, + "fadeEnd": 30, + "fadeWidth": 30, + "haze": 1, + "lightIntensity": -2, + "reserved": 0, + "velocity": Float32Array [ + 25.588512420654297, + 50.15349578857422, + ], + }, + { + "brightness": 1, + "density": 0, + "fadeEnd": 30, + "fadeWidth": 30, + "haze": 1, + "lightIntensity": 1, + "reserved": 0, + "velocity": Float32Array [ + 0, + 0, + ], + }, + ], + "cutOut": 1000, + "depth": 0.011873000301420689, + "extent": 0.04694835841655731, + "name": "", + "reserved": 0, + "scale": 4.677585124969482, + "texture": 506588, + }, + ], + }, + "coloredLightRings": [], + "effect": [ + { + "clutTexturePath": 0, + "ext": {}, + "flags": 0, + "focalDepth": 6000, + "focalRange": 4000, + "glow": Uint8Array [ + 86, + 144, + 231, + 0, + ], + "glowAmplify": 0.30000001192092896, + "glowLevel": Uint8Array [ + 26, + 26, + 26, + 0, + ], + "saturation": 1, + "ssaoAmount": 3, + "ssaoBrighten": 0.20000000298023224, + "ssaoContrast": 1, + "ssaoSunScale": 0.5, + "tintAmount": 0, + "tintColor": Uint8Array [ + 0, + 0, + 0, + 0, + ], + "tintFocus": 0, + "tintTargetColor": Uint8Array [ + 0, + 0, + 0, + 0, + ], + }, + { + "clutTexturePath": 0, + "ext": {}, + "flags": 0, + "focalDepth": 6000, + "focalRange": 4000, + "glow": Uint8Array [ + 86, + 144, + 231, + 0, + ], + "glowAmplify": 0.19148936867713928, + "glowLevel": Uint8Array [ + 26, + 26, + 26, + 0, + ], + "saturation": 1, + "ssaoAmount": 3, + "ssaoBrighten": 0.20000000298023224, + "ssaoContrast": 1, + "ssaoSunScale": 0.5, + "tintAmount": 0, + "tintColor": Uint8Array [ + 0, + 0, + 0, + 0, + ], + "tintFocus": 0, + "tintTargetColor": Uint8Array [ + 0, + 0, + 0, + 0, + ], + }, + { + "clutTexturePath": 0, + "ext": {}, + "flags": 0, + "focalDepth": 6000, + "focalRange": 4000, + "glow": Uint8Array [ + 0, + 0, + 0, + 0, + ], + "glowAmplify": 0, + "glowLevel": Uint8Array [ + 0, + 0, + 0, + 0, + ], + "saturation": 1, + "ssaoAmount": 3, + "ssaoBrighten": 0.20000000298023224, + "ssaoContrast": 1, + "ssaoSunScale": 0.5, + "tintAmount": 0, + "tintColor": Uint8Array [ + 255, + 255, + 255, + 255, + ], + "tintFocus": 0, + "tintTargetColor": Uint8Array [ + 255, + 255, + 255, + 0, + ], + }, + ], + "ext": { + "brightMax": 0.5, + "brightMin": 0.30000001192092896, + "brightScale": 1, + "brightTime": 2.5, + "darkCoeff": 1.2000000476837158, + "darkExp": 0.800000011920929, + "darkMax": 0.30000001192092896, + "darkMin": 0.10000000149011612, + "darkScale": 1, + "dimTime": 5, + "ext2": {}, + "waterReflectionParams": Float32Array [ + 0, + 0, + 0, + 0, + ], + }, + "flags": 0, + "guid": 1852734024563327537n, + "haze": [ + { + "depthCue": 0.00041099998634308577, + "distRange": Float32Array [ + 3464.22021484375, + 10333.9453125, + ], + "farColor": Uint8Array [ + 131, + 94, + 54, + 255, + ], + "heightColor": Uint8Array [ + 38, + 74, + 115, + 255, + ], + "heightRange": Float32Array [ + 2678.89892578125, + 7321.09912109375, + ], + "nearColor": Uint8Array [ + 13, + 10, + 5, + 255, + ], + "sunDirRange": Float32Array [ + 0, + 0, + ], + }, + { + "depthCue": 0.00041099998634308577, + "distRange": Float32Array [ + 3464.22021484375, + 10333.9453125, + ], + "farColor": Uint8Array [ + 131, + 94, + 54, + 255, + ], + "heightColor": Uint8Array [ + 38, + 74, + 115, + 255, + ], + "heightRange": Float32Array [ + 2678.89892578125, + 7321.09912109375, + ], + "nearColor": Uint8Array [ + 13, + 10, + 5, + 255, + ], + "sunDirRange": Float32Array [ + 0, + 0, + ], + }, + { + "depthCue": 0, + "distRange": Float32Array [ + 0, + 0, + ], + "farColor": Uint8Array [ + 0, + 0, + 0, + 255, + ], + "heightColor": Uint8Array [ + 0, + 0, + 0, + 255, + ], + "heightRange": Float32Array [ + 0, + 0, + ], + "nearColor": Uint8Array [ + 0, + 0, + 0, + 255, + ], + "sunDirRange": Float32Array [ + 0, + 0, + ], + }, + ], + "lighting": [ + { + "backlightColor": Uint8Array [ + 255, + 255, + 255, + ], + "backlightIntensity": 1, + "lights": [ + { + "color": Uint8Array [ + 138, + 165, + 194, + ], + "direction": Float32Array [ + 0.7071067690849304, + 0, + 0.7071067690849304, + ], + "intensity": 1.2000000476837158, + }, + { + "color": Uint8Array [ + 255, + 199, + 165, + ], + "direction": Float32Array [ + -0.7071067690849304, + -0.0000012868819112554775, + -0.7071067690849304, + ], + "intensity": 0.4000000059604645, + }, + { + "color": Uint8Array [ + 255, + 221, + 191, + ], + "direction": Float32Array [ + -9.099629210140847e-7, + 1.6560650420438527e-12, + 1, + ], + "intensity": 0.30000001192092896, + }, + { + "color": Uint8Array [ + 207, + 255, + 191, + ], + "direction": Float32Array [ + -9.099629210140847e-7, + 1.6560650420438527e-12, + -1, + ], + "intensity": 0.25, + }, + { + "color": Uint8Array [ + 255, + 201, + 191, + ], + "direction": Float32Array [ + -0.7071067690849304, + -0.0000012868819112554775, + 0.7071067690849304, + ], + "intensity": 0.3499999940395355, + }, + { + "color": Uint8Array [ + 255, + 190, + 199, + ], + "direction": Float32Array [ + -4.371138828673793e-8, + 1, + 0, + ], + "intensity": 0.20000000298023224, + }, + { + "color": Uint8Array [ + 255, + 201, + 191, + ], + "direction": Float32Array [ + 0.7071067690849304, + 0, + -0.7071067690849304, + ], + "intensity": 0.05000000074505806, + }, + { + "color": Uint8Array [ + 255, + 190, + 199, + ], + "direction": Float32Array [ + -4.371138828673793e-8, + -1, + 0, + ], + "intensity": 0.05000000074505806, + }, + ], + "shadowInfluence": 0, + }, + { + "backlightColor": Uint8Array [ + 255, + 255, + 255, + ], + "backlightIntensity": 1, + "lights": [ + { + "color": Uint8Array [ + 138, + 165, + 194, + ], + "direction": Float32Array [ + 0.7071067690849304, + 0, + 0.7071067690849304, + ], + "intensity": 0.800000011920929, + }, + { + "color": Uint8Array [ + 255, + 199, + 165, + ], + "direction": Float32Array [ + -0.7071067690849304, + -0.0000012868819112554775, + -0.7071067690849304, + ], + "intensity": 0.2981574535369873, + }, + { + "color": Uint8Array [ + 255, + 221, + 191, + ], + "direction": Float32Array [ + -9.099629210140847e-7, + 1.6560650420438527e-12, + 1, + ], + "intensity": 0.2847571074962616, + }, + { + "color": Uint8Array [ + 207, + 255, + 191, + ], + "direction": Float32Array [ + -9.099629210140847e-7, + 1.6560650420438527e-12, + -1, + ], + "intensity": 0.11390284448862076, + }, + { + "color": Uint8Array [ + 255, + 201, + 191, + ], + "direction": Float32Array [ + -0.7071067690849304, + -0.0000012868819112554775, + 0.7071067690849304, + ], + "intensity": 0.01675041951239109, + }, + { + "color": Uint8Array [ + 255, + 190, + 199, + ], + "direction": Float32Array [ + -4.371138828673793e-8, + 1, + 0, + ], + "intensity": 0.023450586944818497, + }, + { + "color": Uint8Array [ + 255, + 201, + 191, + ], + "direction": Float32Array [ + 0.7071067690849304, + 0, + -0.7071067690849304, + ], + "intensity": 0.05000000074505806, + }, + { + "color": Uint8Array [ + 255, + 190, + 199, + ], + "direction": Float32Array [ + -4.371138828673793e-8, + -1, + 0, + ], + "intensity": 0.05000000074505806, + }, + ], + "shadowInfluence": 0, + }, + { + "backlightColor": Uint8Array [ + 0, + 0, + 0, + ], + "backlightIntensity": 0, + "lights": [ + { + "color": Uint8Array [ + 255, + 233, + 192, + ], + "direction": Float32Array [ + 0.7071067690849304, + 0, + 0.7071067690849304, + ], + "intensity": 1.2999999523162842, + }, + { + "color": Uint8Array [ + 124, + 172, + 248, + ], + "direction": Float32Array [ + -0.7071067690849304, + -0.0000012868819112554775, + -0.7071067690849304, + ], + "intensity": 0.30000001192092896, + }, + { + "color": Uint8Array [ + 191, + 221, + 255, + ], + "direction": Float32Array [ + 0.29848748445510864, + 0.9186500906944275, + 0.258819043636322, + ], + "intensity": 0.10000000149011612, + }, + { + "color": Uint8Array [ + 188, + 204, + 253, + ], + "direction": Float32Array [ + -0.7814504504203796, + 0.5677568912506104, + 0.258819043636322, + ], + "intensity": 0.10000000149011612, + }, + { + "color": Uint8Array [ + 199, + 190, + 255, + ], + "direction": Float32Array [ + -0.8824164271354675, + 0.39287903904914856, + 0.25881901383399963, + ], + "intensity": 0.10000000149011612, + }, + { + "color": Uint8Array [ + 189, + 222, + 255, + ], + "direction": Float32Array [ + 0.2984875440597534, + -0.9186500310897827, + 0.258819043636322, + ], + "intensity": 0.10000000149011612, + }, + { + "color": Uint8Array [ + 204, + 237, + 255, + ], + "direction": Float32Array [ + -9.099629210140847e-7, + 1.6560650420438527e-12, + 1, + ], + "intensity": 0.30000001192092896, + }, + { + "color": Uint8Array [ + 168, + 254, + 189, + ], + "direction": Float32Array [ + -9.099629210140847e-7, + 1.6560650420438527e-12, + -1, + ], + "intensity": 0.15000000596046448, + }, + ], + "shadowInfluence": 0, + }, + ], + "lightingCharGroups": [], + "name": "", + "nightMods": Uint8Array [ + 255, + 255, + 255, + 133, + ], + "particleFieldCutouts": [], + "particleFields": [ + { + "altitude": 0, + "angle": Float32Array [ + 0, + 0, + ], + "clusterCount": 0, + "clustering": Float32Array [ + 0, + 0, + ], + "depth": 0, + "deviation": 0, + "deviationSpeed": Float32Array [ + 0, + 0, + ], + "extent": 0, + "fade": 0, + "fieldDirection": Float32Array [ + 0, + 0, + 0, + ], + "flags": 0, + "lifetime": Float32Array [ + 0, + 0, + ], + "name": "", + "opacity": Float32Array [ + 0, + 0, + ], + "particleCount": 0, + "period": Float32Array [ + 0, + 0, + ], + "reserved": 0, + "rotation": Float32Array [ + 0, + 0, + ], + "scaleX": Float32Array [ + 0, + 0, + ], + "scaleY": Float32Array [ + 0, + 0, + ], + "seed": 0, + "speed": Float32Array [ + 0, + 0, + ], + "texColRow": Uint32Array [ + 0, + 0, + ], + "texFPS": 0, + "texPath": 0, + "type": 0, + }, + ], + "shapeArray": [ + { + "center": Float32Array [ + -16305.8955078125, + 11471.580078125, + -1936.7060546875, + ], + "fadeHorizInner": 500, + "fadeHorizOuter": 0, + "fadeVertical": 0, + "height": 13767.146484375, + "shapeType": 2, + "vertexArray": [ + Float32Array [ + -7043.158203125, + 6917.21728515625, + ], + Float32Array [ + -25568.6328125, + 3926.60791015625, + ], + Float32Array [ + -25247.7109375, + 18896.626953125, + ], + Float32Array [ + -8010.0263671875, + 19016.552734375, + ], + ], + }, + ], + "sky": { + "dayBrightness": 1, + "dayHazeBottom": 0, + "dayHazeDensity": 1, + "dayHazeFalloff": 22.712644577026367, + "dayLightIntensity": 1, + "dayStarDensity": 0, + "flags": 0, + "nightBrightness": 1, + "nightHazeBottom": 0, + "nightHazeDensity": 1, + "nightHazeFalloff": 22.712644577026367, + "nightLightIntensity": 1, + "nightStarDensity": 0, + "verticalOffset": 0, + }, + "skyCards": { + "cards": [ + { + "day": { + "azimuth": -3.132219076156616, + "brightness": 0.7683168053627014, + "density": 0.6336633563041687, + "ext": {}, + "hazeDensity": 0, + "latitude": 0.2787356376647949, + "lensFlare": {}, + "lightIntensity": 1, + "minHaze": 0.5511810183525085, + "scale": Float32Array [ + 23.850574493408203, + 19.080459594726562, + ], + "speed": 0, + "texture": 186349, + "textureUV": Float32Array [ + 1, + 0.6516720056533813, + 0.44175300002098083, + 0.7383180260658264, + ], + }, + "ext": {}, + "flags": 694558725, + "location": Float32Array [ + 0, + 0, + 0, + ], + "material": {}, + "name": "", + "night": { + "azimuth": -3.132219076156616, + "brightness": 0.7683168053627014, + "density": 0.6336633563041687, + "ext": {}, + "hazeDensity": 0, + "latitude": 0.2787356376647949, + "lensFlare": {}, + "lightIntensity": 1, + "minHaze": 0.5511810183525085, + "scale": Float32Array [ + 23.850574493408203, + 19.080459594726562, + ], + "speed": 0, + "texture": 186349, + "textureUV": Float32Array [ + 1, + 0.6516720056533813, + 0.44175300002098083, + 0.7383180260658264, + ], + }, + }, + { + "day": { + "azimuth": -3.141221046447754, + "brightness": 2, + "density": 1, + "ext": {}, + "hazeDensity": 0, + "latitude": 0.30890804529190063, + "lensFlare": {}, + "lightIntensity": 1, + "minHaze": 0.5511810183525085, + "scale": Float32Array [ + 0.9900990128517151, + 0.7920792102813721, + ], + "speed": 0, + "texture": 186349, + "textureUV": Float32Array [ + 1, + 0.6516720056533813, + 0.44175300002098083, + 0.7383180260658264, + ], + }, + "ext": {}, + "flags": 694558727, + "location": Float32Array [ + 0, + 0, + 0, + ], + "material": {}, + "name": "", + "night": { + "azimuth": -3.141221046447754, + "brightness": 2, + "density": 1, + "ext": {}, + "hazeDensity": 0, + "latitude": 0.30890804529190063, + "lensFlare": {}, + "lightIntensity": 1, + "minHaze": 0.5511810183525085, + "scale": Float32Array [ + 0.9900990128517151, + 0.7920792102813721, + ], + "speed": 0, + "texture": 186349, + "textureUV": Float32Array [ + 1, + 0.6516720056533813, + 0.44175300002098083, + 0.7383180260658264, + ], + }, + }, + { + "day": { + "azimuth": -3.396970510482788, + "brightness": 0.2385057508945465, + "density": 0.39470699429512024, + "ext": {}, + "hazeDensity": 0.3886969983577728, + "latitude": 0.17528735101222992, + "lensFlare": {}, + "lightIntensity": 2, + "minHaze": 0.6562860012054443, + "scale": Float32Array [ + 12.356321334838867, + 2.3258962631225586, + ], + "speed": 0.003811237635090947, + "texture": 190422, + "textureUV": Float32Array [ + 0, + 1, + 1, + 0.7951670289039612, + ], + }, + "ext": {}, + "flags": 560865285, + "location": Float32Array [ + 0, + 0, + 0, + ], + "material": {}, + "name": "", + "night": { + "azimuth": -3.396970510482788, + "brightness": 0.2385057508945465, + "density": 0.39470699429512024, + "ext": {}, + "hazeDensity": 0.3886969983577728, + "latitude": 0.17528735101222992, + "lensFlare": {}, + "lightIntensity": 2, + "minHaze": 0.6562860012054443, + "scale": Float32Array [ + 12.356321334838867, + 2.3258962631225586, + ], + "speed": 0.003811237635090947, + "texture": 190422, + "textureUV": Float32Array [ + 0, + 1, + 1, + 0.7951670289039612, + ], + }, + }, + { + "day": { + "azimuth": -0.24371729791164398, + "brightness": 1.1487890481948853, + "density": 0.5166860222816467, + "ext": {}, + "hazeDensity": 0.3068050146102905, + "latitude": 0.09482758492231369, + "lensFlare": {}, + "lightIntensity": 1, + "minHaze": 0.6816610097885132, + "scale": Float32Array [ + 27.384614944458008, + 5.842050552368164, + ], + "speed": 0.006719802040606737, + "texture": 190422, + "textureUV": Float32Array [ + 0, + 1, + 1, + 0.7951670289039612, + ], + }, + "ext": {}, + "flags": 879914764, + "location": Float32Array [ + 0, + 0, + 0, + ], + "material": {}, + "name": "", + "night": { + "azimuth": -0.24371729791164398, + "brightness": 1.1487890481948853, + "density": 0.5166860222816467, + "ext": {}, + "hazeDensity": 0.3068050146102905, + "latitude": 0.09482758492231369, + "lensFlare": {}, + "lightIntensity": 1, + "minHaze": 0.6816610097885132, + "scale": Float32Array [ + 27.384614944458008, + 5.842050552368164, + ], + "speed": 0.006719802040606737, + "texture": 190422, + "textureUV": Float32Array [ + 0, + 1, + 1, + 0.7951670289039612, + ], + }, + }, + { + "day": { + "azimuth": -4.883838176727295, + "brightness": 0.9396551847457886, + "density": 0.37212643027305603, + "ext": {}, + "hazeDensity": 1, + "latitude": 0.23275862634181976, + "lensFlare": {}, + "lightIntensity": 1, + "minHaze": 0, + "scale": Float32Array [ + 11.392404556274414, + 4.0290207862854, + ], + "speed": 0.002808262826874852, + "texture": 190422, + "textureUV": Float32Array [ + 0, + 1, + 0.5143839716911316, + 0.20828500390052795, + ], + }, + "ext": {}, + "flags": 896488192, + "location": Float32Array [ + 0, + 0, + 0, + ], + "material": {}, + "name": "", + "night": { + "azimuth": -4.883838176727295, + "brightness": 0.9396551847457886, + "density": 0.37212643027305603, + "ext": {}, + "hazeDensity": 1, + "latitude": 0.23275862634181976, + "lensFlare": {}, + "lightIntensity": 1, + "minHaze": 0, + "scale": Float32Array [ + 11.392404556274414, + 4.0290207862854, + ], + "speed": 0.002808262826874852, + "texture": 190422, + "textureUV": Float32Array [ + 0, + 1, + 0.5143839716911316, + 0.20828500390052795, + ], + }, + }, + { + "day": { + "azimuth": -2.130220413208008, + "brightness": 1.09551203250885, + "density": 0.43153101205825806, + "ext": {}, + "hazeDensity": 0.4071510136127472, + "latitude": 0.3002873659133911, + "lensFlare": {}, + "lightIntensity": 1, + "minHaze": 0.6274510025978088, + "scale": Float32Array [ + 12.643678665161133, + 2.0434234142303467, + ], + "speed": 0.0048141167499125, + "texture": 190422, + "textureUV": Float32Array [ + 0, + 1, + 1, + 0.7951670289039612, + ], + }, + "ext": {}, + "flags": 1030059276, + "location": Float32Array [ + 0, + 0, + 0, + ], + "material": {}, + "name": "", + "night": { + "azimuth": -2.130220413208008, + "brightness": 1.09551203250885, + "density": 0.43153101205825806, + "ext": {}, + "hazeDensity": 0.4071510136127472, + "latitude": 0.3002873659133911, + "lensFlare": {}, + "lightIntensity": 1, + "minHaze": 0.6274510025978088, + "scale": Float32Array [ + 12.643678665161133, + 2.0434234142303467, + ], + "speed": 0.0048141167499125, + "texture": 190422, + "textureUV": Float32Array [ + 0, + 1, + 1, + 0.7951670289039612, + ], + }, + }, + { + "day": { + "azimuth": -3.971665382385254, + "brightness": 1.0574712753295898, + "density": 0.6547759771347046, + "ext": {}, + "hazeDensity": 0, + "latitude": 0.3333333432674408, + "lensFlare": {}, + "lightIntensity": 2, + "minHaze": 0.6321839094161987, + "scale": Float32Array [ + 10.011507987976074, + 1.956272006034851, + ], + "speed": 0.004112034570425749, + "texture": 190422, + "textureUV": Float32Array [ + 0, + 1, + 0.1990790069103241, + 0, + ], + }, + "ext": {}, + "flags": 538976264, + "location": Float32Array [ + 0, + 0, + 0, + ], + "material": {}, + "name": "", + "night": { + "azimuth": -3.971665382385254, + "brightness": 1.0574712753295898, + "density": 0.6547759771347046, + "ext": {}, + "hazeDensity": 0, + "latitude": 0.3333333432674408, + "lensFlare": {}, + "lightIntensity": 2, + "minHaze": 0.6321839094161987, + "scale": Float32Array [ + 10.011507987976074, + 1.956272006034851, + ], + "speed": 0.004112034570425749, + "texture": 190422, + "textureUV": Float32Array [ + 0, + 1, + 0.1990790069103241, + 0, + ], + }, + }, + { + "day": { + "azimuth": -3.141221046447754, + "brightness": 2, + "density": 0, + "ext": {}, + "hazeDensity": 0, + "latitude": 0.30890804529190063, + "lensFlare": {}, + "lightIntensity": 1, + "minHaze": 0.5511810183525085, + "scale": Float32Array [ + 1.436781644821167, + 1.1494252681732178, + ], + "speed": 0, + "texture": 186349, + "textureUV": Float32Array [ + 1, + 0.6516720056533813, + 0.44175300002098083, + 0.7383180260658264, + ], + }, + "ext": {}, + "flags": 694558725, + "location": Float32Array [ + 0, + 0, + 0, + ], + "material": {}, + "name": "", + "night": { + "azimuth": -3.141221046447754, + "brightness": 2, + "density": 0, + "ext": {}, + "hazeDensity": 0, + "latitude": 0.30890804529190063, + "lensFlare": {}, + "lightIntensity": 1, + "minHaze": 0.5511810183525085, + "scale": Float32Array [ + 1.436781644821167, + 1.1494252681732178, + ], + "speed": 0, + "texture": 186349, + "textureUV": Float32Array [ + 1, + 0.6516720056533813, + 0.44175300002098083, + 0.7383180260658264, + ], + }, + }, + ], + }, + "spawns": {}, + "type": 5, + "water": [ + { + "animAmplitude": 0, + "animChoppiness": -1, + "animWind": Float32Array [ + -16.86655616760254, + -10.419804573059082, + ], + "bumpAmount": 53.96515655517578, + "bumpAngle0": 143.32440185546875, + "bumpAngle1": 142.3592529296875, + "bumpScale0": 0.0956140011548996, + "bumpScale1": 0.2461799681186676, + "bumpSpeed0": 1.309609055519104, + "bumpSpeed1": 0.030842000618577003, + "bumpTile0": 5.013054847717285, + "bumpTile1": 13.660573959350586, + "constantTokens": Uint32Array [ + 809906891, + 3101301168, + 1324870500, + 1472906389, + 2953265279, + 3427729611, + 1355227165, + 2983621944, + ], + "constantValues": [ + Float32Array [ + 1, + 0.9764705896377563, + 0.7333333492279053, + 128, + ], + Float32Array [ + 0, + 0, + 0, + 0, + ], + Float32Array [ + 0, + 0, + 0, + 0, + ], + Float32Array [ + 0, + 0, + 0, + 0, + ], + Float32Array [ + 0, + 0, + 0, + 0, + ], + Float32Array [ + 0, + 0, + 0, + 0, + ], + Float32Array [ + 0, + 0, + 0, + 0, + ], + Float32Array [ + 0, + 0, + 0, + 0, + ], + ], + "depthAttenuation": 11.484257698059082, + "distortAmount": 0.009999999776482582, + "foamColor0": Uint8Array [ + 0, + 0, + 0, + 0, + ], + "foamColor1": Uint8Array [ + 0, + 0, + 0, + 0, + ], + "foamDepthAttenuation": 0, + "foamDissolve": 0, + "foamSpawn": 0, + "materialFilename": 186314, + "patternAngle": 170.55117797851562, + "patternColor": Uint8Array [ + 176, + 180, + 136, + 33, + ], + "patternEdge": 0.509988009929657, + "patternSpeed": 0.10000000149011612, + "patternTile": 10.904817581176758, + "surfaceDeepColor": Uint8Array [ + 60, + 161, + 255, + 0, + ], + "surfaceFresnel": 7.059234142303467, + "surfaceShallowColor": Uint8Array [ + 255, + 176, + 145, + 0, + ], + "textureFilenames": [ + 0, + 186359, + 186361, + ], + "waterFlags": 1, + }, + { + "animAmplitude": 0, + "animChoppiness": -1, + "animWind": Float32Array [ + -16.86656379699707, + -10.4197998046875, + ], + "bumpAmount": 53.96515655517578, + "bumpAngle0": 143.32440185546875, + "bumpAngle1": 142.3592529296875, + "bumpScale0": 0.0956140011548996, + "bumpScale1": 0.0956140011548996, + "bumpSpeed0": 1.309609055519104, + "bumpSpeed1": 0.030842000618577003, + "bumpTile0": 5.013054847717285, + "bumpTile1": 13.660573959350586, + "constantTokens": [], + "constantValues": [], + "depthAttenuation": 11.484257698059082, + "distortAmount": 0.009999999776482582, + "foamColor0": Uint8Array [ + 0, + 0, + 0, + 0, + ], + "foamColor1": Uint8Array [ + 0, + 0, + 0, + 0, + ], + "foamDepthAttenuation": 0, + "foamDissolve": 0, + "foamSpawn": 0, + "materialFilename": 186314, + "patternAngle": 170.55117797851562, + "patternColor": Uint8Array [ + 176, + 180, + 136, + 33, + ], + "patternEdge": 0.509988009929657, + "patternSpeed": 0.10000000149011612, + "patternTile": 10.904817581176758, + "surfaceDeepColor": Uint8Array [ + 23, + 63, + 95, + 0, + ], + "surfaceFresnel": 7.059234142303467, + "surfaceShallowColor": Uint8Array [ + 145, + 193, + 103, + 0, + ], + "textureFilenames": [ + 0, + 186359, + 186361, + ], + "waterFlags": 1, + }, + { + "animAmplitude": 0, + "animChoppiness": 0, + "animWind": Float32Array [ + -90, + -30, + ], + "bumpAmount": 300, + "bumpAngle0": 0, + "bumpAngle1": 40, + "bumpScale0": 0.10000000149011612, + "bumpScale1": 0.10000000149011612, + "bumpSpeed0": 1, + "bumpSpeed1": 1, + "bumpTile0": 1.7999999523162842, + "bumpTile1": 2.5999999046325684, + "constantTokens": [], + "constantValues": [], + "depthAttenuation": 200, + "distortAmount": 0.15000000596046448, + "foamColor0": Uint8Array [ + 51, + 126, + 174, + 38, + ], + "foamColor1": Uint8Array [ + 255, + 255, + 255, + 191, + ], + "foamDepthAttenuation": 0.8999999761581421, + "foamDissolve": 0.949999988079071, + "foamSpawn": 0.5, + "materialFilename": 0, + "patternAngle": 0, + "patternColor": Uint8Array [ + 255, + 255, + 255, + 0, + ], + "patternEdge": 1, + "patternSpeed": 1, + "patternTile": 1.7999999523162842, + "surfaceDeepColor": Uint8Array [ + 50, + 16, + 9, + 0, + ], + "surfaceFresnel": 2.5, + "surfaceShallowColor": Uint8Array [ + 190, + 168, + 103, + 0, + ], + "textureFilenames": [], + "waterFlags": 1, + }, + ], + "wind": [ + { + "azimuth": 0, + "elevation": 0, + "gust": 10, + "gustFreq": 19, + "gustSpeed": 128, + "noise": 45, + "speed": 19, + }, + { + "azimuth": 0, + "elevation": 0, + "gust": 10, + "gustFreq": 19, + "gustSpeed": 128, + "noise": 45, + "speed": 19, + }, + { + "azimuth": 0, + "elevation": 0, + "gust": 0, + "gustFreq": 0, + "gustSpeed": 0, + "noise": 0, + "speed": 0, + }, + ], + }, + { + "audio": [], + "bindTarget": 1861299603972850178n, + "clouds": {}, + "coloredLightRings": [], + "effect": [], + "ext": { + "brightMax": 0.5, + "brightMin": 0.30000001192092896, + "brightScale": 1, + "brightTime": 2.5, + "darkCoeff": 1.2000000476837158, + "darkExp": 0.800000011920929, + "darkMax": 0.30000001192092896, + "darkMin": 0.10000000149011612, + "darkScale": 1, + "dimTime": 5, + "ext2": {}, + "waterReflectionParams": Float32Array [ + 0, + 0, + 0, + 0, + ], + }, + "flags": 0, + "guid": 1853874816698843681n, + "haze": [ + { + "depthCue": 0.00041099998634308577, + "distRange": Float32Array [ + 286.308837890625, + 7152.94140625, + ], + "farColor": Uint8Array [ + 119, + 93, + 116, + 255, + ], + "heightColor": Uint8Array [ + 38, + 74, + 115, + 255, + ], + "heightRange": Float32Array [ + -34.73039245605469, + 140.40118408203125, + ], + "nearColor": Uint8Array [ + 64, + 6, + 34, + 255, + ], + "sunDirRange": Float32Array [ + 0, + 0, + ], + }, + { + "depthCue": 0.00041099998634308577, + "distRange": Float32Array [ + 286.308837890625, + 6676.25927734375, + ], + "farColor": Uint8Array [ + 119, + 93, + 116, + 255, + ], + "heightColor": Uint8Array [ + 38, + 74, + 115, + 255, + ], + "heightRange": Float32Array [ + -34.73039245605469, + 140.40118408203125, + ], + "nearColor": Uint8Array [ + 62, + 41, + 56, + 255, + ], + "sunDirRange": Float32Array [ + 0, + 0, + ], + }, + { + "depthCue": 0, + "distRange": Float32Array [ + 0, + 0, + ], + "farColor": Uint8Array [ + 0, + 0, + 0, + 255, + ], + "heightColor": Uint8Array [ + 0, + 0, + 0, + 255, + ], + "heightRange": Float32Array [ + 0, + 0, + ], + "nearColor": Uint8Array [ + 0, + 0, + 0, + 255, + ], + "sunDirRange": Float32Array [ + 0, + 0, + ], + }, + ], + "lighting": [ + { + "backlightColor": Uint8Array [ + 255, + 255, + 255, + ], + "backlightIntensity": 0.9506579041481018, + "lights": [ + { + "color": Uint8Array [ + 218, + 160, + 225, + ], + "direction": Float32Array [ + 0.7071067690849304, + 0, + 0.7071067690849304, + ], + "intensity": 1.2000000476837158, + }, + { + "color": Uint8Array [ + 230, + 170, + 211, + ], + "direction": Float32Array [ + -0.7071067690849304, + -0.0000012868819112554775, + -0.7071067690849304, + ], + "intensity": 0.15094339847564697, + }, + { + "color": Uint8Array [ + 241, + 131, + 187, + ], + "direction": Float32Array [ + -9.099629210140847e-7, + 1.6560650420438527e-12, + 1, + ], + "intensity": 0.38574424386024475, + }, + { + "color": Uint8Array [ + 207, + 255, + 191, + ], + "direction": Float32Array [ + -9.099629210140847e-7, + 1.6560650420438527e-12, + -1, + ], + "intensity": 0.08881578594446182, + }, + { + "color": Uint8Array [ + 255, + 201, + 191, + ], + "direction": Float32Array [ + -0.7071067690849304, + -0.0000012868819112554775, + 0.7071067690849304, + ], + "intensity": 0, + }, + { + "color": Uint8Array [ + 255, + 190, + 199, + ], + "direction": Float32Array [ + -4.371138828673793e-8, + 1, + 0, + ], + "intensity": 0, + }, + { + "color": Uint8Array [ + 255, + 201, + 191, + ], + "direction": Float32Array [ + 0.7071067690849304, + 0, + -0.7071067690849304, + ], + "intensity": 0.02302631549537182, + }, + { + "color": Uint8Array [ + 255, + 190, + 199, + ], + "direction": Float32Array [ + -4.371138828673793e-8, + -1, + 0, + ], + "intensity": 0, + }, + ], + "shadowInfluence": 0, + }, + { + "backlightColor": Uint8Array [ + 255, + 255, + 255, + ], + "backlightIntensity": 0.9506579041481018, + "lights": [ + { + "color": Uint8Array [ + 218, + 160, + 225, + ], + "direction": Float32Array [ + 0.4999999701976776, + 0, + 0.866025447845459, + ], + "intensity": 0.07565789669752121, + }, + { + "color": Uint8Array [ + 230, + 170, + 211, + ], + "direction": Float32Array [ + -0.7071067690849304, + -0.0000012868819112554775, + -0.7071067690849304, + ], + "intensity": 0.5164473652839661, + }, + { + "color": Uint8Array [ + 241, + 131, + 187, + ], + "direction": Float32Array [ + -9.099629210140847e-7, + 1.6560650420438527e-12, + 1, + ], + "intensity": 0.6578947305679321, + }, + { + "color": Uint8Array [ + 207, + 255, + 191, + ], + "direction": Float32Array [ + -9.099629210140847e-7, + 1.6560650420438527e-12, + -1, + ], + "intensity": 0.08881578594446182, + }, + { + "color": Uint8Array [ + 255, + 201, + 191, + ], + "direction": Float32Array [ + -0.7071067690849304, + -0.0000012868819112554775, + 0.7071067690849304, + ], + "intensity": 0, + }, + { + "color": Uint8Array [ + 255, + 190, + 199, + ], + "direction": Float32Array [ + -4.371138828673793e-8, + 1, + 0, + ], + "intensity": 0, + }, + { + "color": Uint8Array [ + 255, + 201, + 191, + ], + "direction": Float32Array [ + 0.7071067690849304, + 0, + -0.7071067690849304, + ], + "intensity": 0.02302631549537182, + }, + { + "color": Uint8Array [ + 255, + 190, + 199, + ], + "direction": Float32Array [ + -4.371138828673793e-8, + -1, + 0, + ], + "intensity": 0, + }, + ], + "shadowInfluence": 0, + }, + { + "backlightColor": Uint8Array [ + 0, + 0, + 0, + ], + "backlightIntensity": 0, + "lights": [ + { + "color": Uint8Array [ + 255, + 233, + 192, + ], + "direction": Float32Array [ + 0.7071067690849304, + 0, + 0.7071067690849304, + ], + "intensity": 1.2999999523162842, + }, + { + "color": Uint8Array [ + 124, + 172, + 248, + ], + "direction": Float32Array [ + -0.7071067690849304, + -0.0000012868819112554775, + -0.7071067690849304, + ], + "intensity": 0.30000001192092896, + }, + { + "color": Uint8Array [ + 191, + 221, + 255, + ], + "direction": Float32Array [ + 0.29848748445510864, + 0.9186500906944275, + 0.258819043636322, + ], + "intensity": 0.10000000149011612, + }, + { + "color": Uint8Array [ + 188, + 204, + 253, + ], + "direction": Float32Array [ + -0.7814504504203796, + 0.5677568912506104, + 0.258819043636322, + ], + "intensity": 0.10000000149011612, + }, + { + "color": Uint8Array [ + 199, + 190, + 255, + ], + "direction": Float32Array [ + -0.8824164271354675, + 0.39287903904914856, + 0.25881901383399963, + ], + "intensity": 0.10000000149011612, + }, + { + "color": Uint8Array [ + 189, + 222, + 255, + ], + "direction": Float32Array [ + 0.2984875440597534, + -0.9186500310897827, + 0.258819043636322, + ], + "intensity": 0.10000000149011612, + }, + { + "color": Uint8Array [ + 204, + 237, + 255, + ], + "direction": Float32Array [ + -9.099629210140847e-7, + 1.6560650420438527e-12, + 1, + ], + "intensity": 0.30000001192092896, + }, + { + "color": Uint8Array [ + 168, + 254, + 189, + ], + "direction": Float32Array [ + -9.099629210140847e-7, + 1.6560650420438527e-12, + -1, + ], + "intensity": 0.15000000596046448, + }, + ], + "shadowInfluence": 0, + }, + ], + "lightingCharGroups": [], + "name": "", + "nightMods": Uint8Array [ + 255, + 255, + 255, + 133, + ], + "particleFieldCutouts": [], + "particleFields": [ + { + "altitude": 0, + "angle": Float32Array [ + 0, + 0, + ], + "clusterCount": 20, + "clustering": Float32Array [ + 0.8888888955116272, + 1, + ], + "depth": 0, + "deviation": 62.372188568115234, + "deviationSpeed": Float32Array [ + 1, + 1, + ], + "extent": 1000, + "fade": 50, + "fieldDirection": Float32Array [ + 0, + 0, + 1, + ], + "flags": 579, + "lifetime": Float32Array [ + 0, + 0, + ], + "name": "Bfly", + "opacity": Float32Array [ + 1, + 1, + ], + "particleCount": 100, + "period": Float32Array [ + 0, + 0, + ], + "reserved": 0, + "rotation": Float32Array [ + 0, + 0, + ], + "scaleX": Float32Array [ + 4.48024320602417, + 4.48024320602417, + ], + "scaleY": Float32Array [ + 1, + 1, + ], + "seed": 197854, + "speed": Float32Array [ + 0, + 0, + ], + "texColRow": Uint32Array [ + 4, + 4, + ], + "texFPS": 10, + "texPath": 195076, + "type": 2, + }, + ], + "shapeArray": [], + "sky": {}, + "skyCards": { + "cards": [ + { + "day": { + "azimuth": -3.132546901702881, + "brightness": 0.09482758492231369, + "density": 1, + "ext": {}, + "hazeDensity": 0, + "latitude": 0.2787356376647949, + "lensFlare": {}, + "lightIntensity": 1, + "minHaze": 0.5511810183525085, + "scale": Float32Array [ + 23.850574493408203, + 19.080459594726562, + ], + "speed": 0, + "texture": 186349, + "textureUV": Float32Array [ + 1, + 0.6516720056533813, + 0.44175300002098083, + 0.7383180260658264, + ], + }, + "ext": {}, + "flags": 694558725, + "location": Float32Array [ + 0, + 0, + 0, + ], + "material": {}, + "name": "", + "night": { + "azimuth": -3.628807544708252, + "brightness": 1, + "density": 0, + "ext": {}, + "hazeDensity": 0, + "latitude": 0, + "lensFlare": {}, + "lightIntensity": 1, + "minHaze": 0.5511810183525085, + "scale": Float32Array [ + 5.815161228179932, + 4.652129173278809, + ], + "speed": 0, + "texture": 186349, + "textureUV": Float32Array [ + 1, + 0.6516720056533813, + 0.44175300002098083, + 0.7383180260658264, + ], + }, + }, + { + "day": { + "azimuth": -3.1415488719940186, + "brightness": 2, + "density": 1, + "ext": {}, + "hazeDensity": 0, + "latitude": 0.30890804529190063, + "lensFlare": {}, + "lightIntensity": 1, + "minHaze": 0.5511810183525085, + "scale": Float32Array [ + 1.436781644821167, + 1.1494252681732178, + ], + "speed": 0, + "texture": 186349, + "textureUV": Float32Array [ + 1, + 0.6516720056533813, + 0.44175300002098083, + 0.7383180260658264, + ], + }, + "ext": {}, + "flags": 694558727, + "location": Float32Array [ + 0, + 0, + 0, + ], + "material": {}, + "name": "", + "night": { + "azimuth": -3.628807544708252, + "brightness": 1, + "density": 0, + "ext": {}, + "hazeDensity": 0, + "latitude": 0, + "lensFlare": {}, + "lightIntensity": 1, + "minHaze": 0.5511810183525085, + "scale": Float32Array [ + 5.815161228179932, + 4.652129173278809, + ], + "speed": 0, + "texture": 186349, + "textureUV": Float32Array [ + 1, + 0.6516720056533813, + 0.44175300002098083, + 0.7383180260658264, + ], + }, + }, + { + "day": { + "azimuth": -3.39732027053833, + "brightness": 0.2385057508945465, + "density": 0.39470699429512024, + "ext": {}, + "hazeDensity": 0.3886969983577728, + "latitude": 0.17528735101222992, + "lensFlare": {}, + "lightIntensity": 2, + "minHaze": 0.6562860012054443, + "scale": Float32Array [ + 12.356321334838867, + 2.3258962631225586, + ], + "speed": 0.0038116269279271364, + "texture": 190422, + "textureUV": Float32Array [ + 0, + 1, + 1, + 0.7951670289039612, + ], + }, + "ext": {}, + "flags": 560865285, + "location": Float32Array [ + 0, + 0, + 0, + ], + "material": {}, + "name": "", + "night": { + "azimuth": -3.39732027053833, + "brightness": 1.09551203250885, + "density": 0.21241000294685364, + "ext": {}, + "hazeDensity": 0.3886969983577728, + "latitude": 0.10726600140333176, + "lensFlare": {}, + "lightIntensity": 1, + "minHaze": 0.6562860012054443, + "scale": Float32Array [ + 6.444189071655273, + 1.2130240201950073, + ], + "speed": 0, + "texture": 190422, + "textureUV": Float32Array [ + 0, + 1, + 1, + 0.7951670289039612, + ], + }, + }, + ], + }, + "spawns": {}, + "type": 3, + "water": [], + "wind": [], + }, + { + "audio": [], + "bindTarget": 1856561005209879054n, + "clouds": {}, + "coloredLightRings": [], + "effect": [], + "ext": { + "brightMax": 0.5, + "brightMin": 0.30000001192092896, + "brightScale": 1, + "brightTime": 2.5, + "darkCoeff": 1.2000000476837158, + "darkExp": 0.800000011920929, + "darkMax": 0.30000001192092896, + "darkMin": 0.10000000149011612, + "darkScale": 1, + "dimTime": 5, + "ext2": {}, + "waterReflectionParams": Float32Array [ + 0, + 0, + 0, + 0, + ], + }, + "flags": 0, + "guid": 1856510002473239048n, + "haze": [], + "lighting": [], + "lightingCharGroups": [], + "name": "", + "nightMods": Uint8Array [ + 255, + 255, + 255, + 133, + ], + "particleFieldCutouts": [], + "particleFields": [ + { + "altitude": 0, + "angle": Float32Array [ + 0, + 0, + ], + "clusterCount": 0, + "clustering": Float32Array [ + 0, + 0, + ], + "depth": 0, + "deviation": 0, + "deviationSpeed": Float32Array [ + 0, + 0, + ], + "extent": 0, + "fade": 0, + "fieldDirection": Float32Array [ + 0, + 0, + 0, + ], + "flags": 0, + "lifetime": Float32Array [ + 0, + 0, + ], + "name": "", + "opacity": Float32Array [ + 0, + 0, + ], + "particleCount": 0, + "period": Float32Array [ + 0, + 0, + ], + "reserved": 0, + "rotation": Float32Array [ + 0, + 0, + ], + "scaleX": Float32Array [ + 0, + 0, + ], + "scaleY": Float32Array [ + 0, + 0, + ], + "seed": 0, + "speed": Float32Array [ + 0, + 0, + ], + "texColRow": Uint32Array [ + 0, + 0, + ], + "texFPS": 0, + "texPath": 0, + "type": 0, + }, + ], + "shapeArray": [ + { + "center": Float32Array [ + -10821.7919921875, + -10040.677734375, + -16999.837890625, + ], + "fadeHorizInner": 236.4864959716797, + "fadeHorizOuter": 67.56756591796875, + "fadeVertical": 0, + "height": 2107.2578125, + "shapeType": 2, + "vertexArray": [ + Float32Array [ + -9790.6083984375, + -7381.68603515625, + ], + Float32Array [ + -8078.45166015625, + -8931.451171875, + ], + Float32Array [ + -7844.30517578125, + -10955.7724609375, + ], + Float32Array [ + -8765.1533203125, + -12619.2177734375, + ], + Float32Array [ + -10640.9765625, + -12699.6689453125, + ], + Float32Array [ + -11976.703125, + -12196.7626953125, + ], + Float32Array [ + -13138.80078125, + -11223.484375, + ], + Float32Array [ + -13799.2783203125, + -9516.078125, + ], + Float32Array [ + -12319.3125, + -7654.58203125, + ], + ], + }, + ], + "sky": {}, + "skyCards": { + "cards": [ + { + "day": { + "azimuth": -3.132232666015625, + "brightness": 0.7683168053627014, + "density": 0.6336633563041687, + "ext": {}, + "hazeDensity": 0, + "latitude": 0.2787356376647949, + "lensFlare": {}, + "lightIntensity": 1, + "minHaze": 0.5511810183525085, + "scale": Float32Array [ + 23.850574493408203, + 19.080459594726562, + ], + "speed": 0, + "texture": 186349, + "textureUV": Float32Array [ + 1, + 0.6516720056533813, + 0.44175300002098083, + 0.7383180260658264, + ], + }, + "ext": {}, + "flags": 694558725, + "location": Float32Array [ + 0, + 0, + 0, + ], + "material": {}, + "name": "", + "night": { + "azimuth": -3.110260009765625, + "brightness": 0.26138612627983093, + "density": 1, + "ext": {}, + "hazeDensity": 0, + "latitude": 0.28316831588745117, + "lensFlare": {}, + "lightIntensity": 1, + "minHaze": 0.5511810183525085, + "scale": Float32Array [ + 23.850574493408203, + 19.080459594726562, + ], + "speed": 0, + "texture": 186349, + "textureUV": Float32Array [ + 1, + 0.6516720056533813, + 0.44175300002098083, + 0.7383180260658264, + ], + }, + }, + { + "day": { + "azimuth": -3.1412346363067627, + "brightness": 2, + "density": 1, + "ext": {}, + "hazeDensity": 0, + "latitude": 0.30890804529190063, + "lensFlare": {}, + "lightIntensity": 1, + "minHaze": 0.5511810183525085, + "scale": Float32Array [ + 0.9900990128517151, + 0.7920792102813721, + ], + "speed": 0, + "texture": 186349, + "textureUV": Float32Array [ + 1, + 0.6516720056533813, + 0.44175300002098083, + 0.7383180260658264, + ], + }, + "ext": {}, + "flags": 694558727, + "location": Float32Array [ + 0, + 0, + 0, + ], + "material": {}, + "name": "", + "night": { + "azimuth": -3.1412346363067627, + "brightness": 2, + "density": 0, + "ext": {}, + "hazeDensity": 0, + "latitude": 0.30890804529190063, + "lensFlare": {}, + "lightIntensity": 1, + "minHaze": 0.5511810183525085, + "scale": Float32Array [ + 1.436781644821167, + 1.1494252681732178, + ], + "speed": 0, + "texture": 186349, + "textureUV": Float32Array [ + 1, + 0.6516720056533813, + 0.44175300002098083, + 0.7383180260658264, + ], + }, + }, + { + "day": { + "azimuth": -3.3969850540161133, + "brightness": 0.2385057508945465, + "density": 0.39470699429512024, + "ext": {}, + "hazeDensity": 0.3886969983577728, + "latitude": 0.17528735101222992, + "lensFlare": {}, + "lightIntensity": 2, + "minHaze": 0.6562860012054443, + "scale": Float32Array [ + 12.356321334838867, + 2.3258962631225586, + ], + "speed": 0.0038112541660666466, + "texture": 190422, + "textureUV": Float32Array [ + 0, + 1, + 1, + 0.7951670289039612, + ], + }, + "ext": {}, + "flags": 560865285, + "location": Float32Array [ + 0, + 0, + 0, + ], + "material": {}, + "name": "", + "night": { + "azimuth": -3.3969850540161133, + "brightness": 0.2385057508945465, + "density": 0.39470699429512024, + "ext": {}, + "hazeDensity": 0.3886969983577728, + "latitude": 0.17528735101222992, + "lensFlare": {}, + "lightIntensity": 2, + "minHaze": 0.6562860012054443, + "scale": Float32Array [ + 12.356321334838867, + 2.3258962631225586, + ], + "speed": 0.0038112541660666466, + "texture": 190422, + "textureUV": Float32Array [ + 0, + 1, + 1, + 0.7951670289039612, + ], + }, + }, + { + "day": { + "azimuth": -0.24371834099292755, + "brightness": 1.1487890481948853, + "density": 0.5166860222816467, + "ext": {}, + "hazeDensity": 0.3068050146102905, + "latitude": 0.09482758492231369, + "lensFlare": {}, + "lightIntensity": 1, + "minHaze": 0.6816610097885132, + "scale": Float32Array [ + 27.384614944458008, + 5.842050552368164, + ], + "speed": 0.00671983091160655, + "texture": 190422, + "textureUV": Float32Array [ + 0, + 1, + 1, + 0.7951670289039612, + ], + }, + "ext": {}, + "flags": 879914764, + "location": Float32Array [ + 0, + 0, + 0, + ], + "material": {}, + "name": "", + "night": { + "azimuth": -0.24371834099292755, + "brightness": 1.1487890481948853, + "density": 0.5166860222816467, + "ext": {}, + "hazeDensity": 0.3068050146102905, + "latitude": 0.09482758492231369, + "lensFlare": {}, + "lightIntensity": 1, + "minHaze": 0.6816610097885132, + "scale": Float32Array [ + 27.384614944458008, + 5.842050552368164, + ], + "speed": 0.00671983091160655, + "texture": 190422, + "textureUV": Float32Array [ + 0, + 1, + 1, + 0.7951670289039612, + ], + }, + }, + { + "day": { + "azimuth": -4.883838176727295, + "brightness": 0.9396551847457886, + "density": 0.37212643027305603, + "ext": {}, + "hazeDensity": 1, + "latitude": 0.23275862634181976, + "lensFlare": {}, + "lightIntensity": 1, + "minHaze": 0, + "scale": Float32Array [ + 11.392404556274414, + 4.0290207862854, + ], + "speed": 0.002808274934068322, + "texture": 190422, + "textureUV": Float32Array [ + 0, + 1, + 0.5143839716911316, + 0.20828500390052795, + ], + }, + "ext": {}, + "flags": 896488192, + "location": Float32Array [ + 0, + 0, + 0, + ], + "material": {}, + "name": "", + "night": { + "azimuth": -4.883838176727295, + "brightness": 0.9396551847457886, + "density": 0.37212643027305603, + "ext": {}, + "hazeDensity": 1, + "latitude": 0.23275862634181976, + "lensFlare": {}, + "lightIntensity": 1, + "minHaze": 0, + "scale": Float32Array [ + 11.392404556274414, + 4.0290207862854, + ], + "speed": 0.002808274934068322, + "texture": 190422, + "textureUV": Float32Array [ + 0, + 1, + 0.5143839716911316, + 0.20828500390052795, + ], + }, + }, + { + "day": { + "azimuth": -2.1302311420440674, + "brightness": 1.09551203250885, + "density": 0.43153101205825806, + "ext": {}, + "hazeDensity": 0.4071510136127472, + "latitude": 0.3002873659133911, + "lensFlare": {}, + "lightIntensity": 1, + "minHaze": 0.6274510025978088, + "scale": Float32Array [ + 12.643678665161133, + 2.0434234142303467, + ], + "speed": 0.004814140032976866, + "texture": 190422, + "textureUV": Float32Array [ + 0, + 1, + 1, + 0.7951670289039612, + ], + }, + "ext": {}, + "flags": 1030059276, + "location": Float32Array [ + 0, + 0, + 0, + ], + "material": {}, + "name": "", + "night": { + "azimuth": -2.1302311420440674, + "brightness": 1.09551203250885, + "density": 0.43153101205825806, + "ext": {}, + "hazeDensity": 0.4071510136127472, + "latitude": 0.3002873659133911, + "lensFlare": {}, + "lightIntensity": 1, + "minHaze": 0.6274510025978088, + "scale": Float32Array [ + 12.643678665161133, + 2.0434234142303467, + ], + "speed": 0.004814140032976866, + "texture": 190422, + "textureUV": Float32Array [ + 0, + 1, + 1, + 0.7951670289039612, + ], + }, + }, + { + "day": { + "azimuth": -3.9716827869415283, + "brightness": 1.0574712753295898, + "density": 0.6547759771347046, + "ext": {}, + "hazeDensity": 0, + "latitude": 0.3333333432674408, + "lensFlare": {}, + "lightIntensity": 2, + "minHaze": 0.6321839094161987, + "scale": Float32Array [ + 10.011507987976074, + 1.956272006034851, + ], + "speed": 0.004112055525183678, + "texture": 190422, + "textureUV": Float32Array [ + 0, + 1, + 0.1990790069103241, + 0, + ], + }, + "ext": {}, + "flags": 538976264, + "location": Float32Array [ + 0, + 0, + 0, + ], + "material": {}, + "name": "", + "night": { + "azimuth": -3.9716827869415283, + "brightness": 1.0574712753295898, + "density": 0.6547759771347046, + "ext": {}, + "hazeDensity": 0, + "latitude": 0.3333333432674408, + "lensFlare": {}, + "lightIntensity": 2, + "minHaze": 0.6321839094161987, + "scale": Float32Array [ + 10.011507987976074, + 1.956272006034851, + ], + "speed": 0.004112055525183678, + "texture": 190422, + "textureUV": Float32Array [ + 0, + 1, + 0.1990790069103241, + 0, + ], + }, + }, + { + "day": { + "azimuth": -3.1412346363067627, + "brightness": 2, + "density": 0, + "ext": {}, + "hazeDensity": 0, + "latitude": 0.30890804529190063, + "lensFlare": {}, + "lightIntensity": 1, + "minHaze": 0.5511810183525085, + "scale": Float32Array [ + 1.436781644821167, + 1.1494252681732178, + ], + "speed": 0, + "texture": 186349, + "textureUV": Float32Array [ + 1, + 0.6516720056533813, + 0.44175300002098083, + 0.7383180260658264, + ], + }, + "ext": {}, + "flags": 694558725, + "location": Float32Array [ + 0, + 0, + 0, + ], + "material": {}, + "name": "", + "night": { + "azimuth": -3.1412346363067627, + "brightness": 2, + "density": 1, + "ext": {}, + "hazeDensity": 0, + "latitude": 0.30890804529190063, + "lensFlare": {}, + "lightIntensity": 1, + "minHaze": 0.5511810183525085, + "scale": Float32Array [ + 1.436781644821167, + 1.1494252681732178, + ], + "speed": 0, + "texture": 186349, + "textureUV": Float32Array [ + 0.2653465270996094, + 0, + 0.4554455578327179, + 0.6772277355194092, + ], + }, + }, + ], + }, + "spawns": {}, + "type": 5, + "water": [], + "wind": [], + }, + { + "audio": [], + "bindTarget": 1856560081791910411n, + "clouds": {}, + "coloredLightRings": [], + "effect": [], + "ext": { + "brightMax": 0.5, + "brightMin": 0.30000001192092896, + "brightScale": 1, + "brightTime": 2.5, + "darkCoeff": 1.2000000476837158, + "darkExp": 0.800000011920929, + "darkMax": 0.30000001192092896, + "darkMin": 0.10000000149011612, + "darkScale": 1, + "dimTime": 5, + "ext2": {}, + "waterReflectionParams": Float32Array [ + 0, + 0, + 0, + 0, + ], + }, + "flags": 1, + "guid": 1856510131322257929n, + "haze": [], + "lighting": [], + "lightingCharGroups": [], + "name": "", + "nightMods": Uint8Array [ + 255, + 255, + 255, + 133, + ], + "particleFieldCutouts": [], + "particleFields": [], + "shapeArray": [ + { + "center": Float32Array [ + 1779.4853515625, + -3755.223388671875, + -17277.037109375, + ], + "fadeHorizInner": 270.270263671875, + "fadeHorizOuter": 101.35134887695312, + "fadeVertical": 0, + "height": 2520.08203125, + "shapeType": 2, + "vertexArray": [ + Float32Array [ + 2542.819091796875, + -6600.33544921875, + ], + Float32Array [ + 1202.12744140625, + -6269.59326171875, + ], + Float32Array [ + -870.9815063476562, + -5261.96630859375, + ], + Float32Array [ + -449.44677734375, + -2245.5693359375, + ], + Float32Array [ + 1244.9495849609375, + -910.1112060546875, + ], + Float32Array [ + 2683.93359375, + -1027.044921875, + ], + Float32Array [ + 4429.9521484375, + -2323.37646484375, + ], + Float32Array [ + 4167.76708984375, + -5847.75048828125, + ], + ], + }, + ], + "sky": {}, + "skyCards": {}, + "spawns": {}, + "type": 5, + "water": [], + "wind": [ + { + "azimuth": 1, + "elevation": 204, + "gust": 19, + "gustFreq": 105, + "gustSpeed": 39, + "noise": 9, + "speed": 2, + }, + { + "azimuth": 0, + "elevation": 0, + "gust": 0, + "gustFreq": 0, + "gustSpeed": 0, + "noise": 0, + "speed": 0, + }, + { + "azimuth": 0, + "elevation": 0, + "gust": 0, + "gustFreq": 0, + "gustSpeed": 0, + "noise": 0, + "speed": 0, + }, + ], + }, + { + "audio": [], + "bindTarget": 1856560687382299145n, + "clouds": {}, + "coloredLightRings": [], + "effect": [], + "ext": { + "brightMax": 0.5, + "brightMin": 0.30000001192092896, + "brightScale": 1, + "brightTime": 2.5, + "darkCoeff": 1.2000000476837158, + "darkExp": 0.800000011920929, + "darkMax": 0.30000001192092896, + "darkMin": 0.10000000149011612, + "darkScale": 1, + "dimTime": 5, + "ext2": {}, + "waterReflectionParams": Float32Array [ + 0, + 0, + 0, + 0, + ], + }, + "flags": 0, + "guid": 1856510217221603854n, + "haze": [], + "lighting": [], + "lightingCharGroups": [], + "name": "", + "nightMods": Uint8Array [ + 255, + 255, + 255, + 133, + ], + "particleFieldCutouts": [], + "particleFields": [], + "shapeArray": [ + { + "center": Float32Array [ + -7503.37353515625, + 5510.28515625, + -16505.46875, + ], + "fadeHorizInner": 304.0540466308594, + "fadeHorizOuter": 135.1351318359375, + "fadeVertical": 0, + "height": 2439.078125, + "shapeType": 2, + "vertexArray": [ + Float32Array [ + -5882.67919921875, + 3048.126953125, + ], + Float32Array [ + -8331.0087890625, + 2973.181640625, + ], + Float32Array [ + -10132.890625, + 4610.2236328125, + ], + Float32Array [ + -10931.533203125, + 6275.73828125, + ], + Float32Array [ + -9554.8125, + 8047.38818359375, + ], + Float32Array [ + -4870.35888671875, + 7811.228515625, + ], + Float32Array [ + -4075.2138671875, + 6208.08740234375, + ], + Float32Array [ + -4357.4140625, + 4453.94921875, + ], + ], + }, + ], + "sky": {}, + "skyCards": { + "cards": [ + { + "day": { + "azimuth": -3.132232189178467, + "brightness": 0.7683168053627014, + "density": 0.6336633563041687, + "ext": {}, + "hazeDensity": 0, + "latitude": 0.2787356376647949, + "lensFlare": {}, + "lightIntensity": 1, + "minHaze": 0.5511810183525085, + "scale": Float32Array [ + 23.850574493408203, + 19.080459594726562, + ], + "speed": 0, + "texture": 186349, + "textureUV": Float32Array [ + 1, + 0.6516720056533813, + 0.44175300002098083, + 0.7383180260658264, + ], + }, + "ext": {}, + "flags": 694558725, + "location": Float32Array [ + 0, + 0, + 0, + ], + "material": {}, + "name": "", + "night": { + "azimuth": -3.1102592945098877, + "brightness": 0.26138612627983093, + "density": 1, + "ext": {}, + "hazeDensity": 0, + "latitude": 0.28316831588745117, + "lensFlare": {}, + "lightIntensity": 1, + "minHaze": 0.5511810183525085, + "scale": Float32Array [ + 23.850574493408203, + 19.080459594726562, + ], + "speed": 0, + "texture": 186349, + "textureUV": Float32Array [ + 1, + 0.6516720056533813, + 0.44175300002098083, + 0.7383180260658264, + ], + }, + }, + { + "day": { + "azimuth": -3.1412341594696045, + "brightness": 2, + "density": 1, + "ext": {}, + "hazeDensity": 0, + "latitude": 0.30890804529190063, + "lensFlare": {}, + "lightIntensity": 1, + "minHaze": 0.5511810183525085, + "scale": Float32Array [ + 0.9900990128517151, + 0.7920792102813721, + ], + "speed": 0, + "texture": 186349, + "textureUV": Float32Array [ + 1, + 0.6516720056533813, + 0.44175300002098083, + 0.7383180260658264, + ], + }, + "ext": {}, + "flags": 694558727, + "location": Float32Array [ + 0, + 0, + 0, + ], + "material": {}, + "name": "", + "night": { + "azimuth": -3.1412341594696045, + "brightness": 2, + "density": 0, + "ext": {}, + "hazeDensity": 0, + "latitude": 0.30890804529190063, + "lensFlare": {}, + "lightIntensity": 1, + "minHaze": 0.5511810183525085, + "scale": Float32Array [ + 1.436781644821167, + 1.1494252681732178, + ], + "speed": 0, + "texture": 186349, + "textureUV": Float32Array [ + 1, + 0.6516720056533813, + 0.44175300002098083, + 0.7383180260658264, + ], + }, + }, + { + "day": { + "azimuth": -3.396984338760376, + "brightness": 0.2385057508945465, + "density": 0.39470699429512024, + "ext": {}, + "hazeDensity": 0.3886969983577728, + "latitude": 0.17528735101222992, + "lensFlare": {}, + "lightIntensity": 2, + "minHaze": 0.6562860012054443, + "scale": Float32Array [ + 12.356321334838867, + 2.3258962631225586, + ], + "speed": 0.0038112534675747156, + "texture": 190422, + "textureUV": Float32Array [ + 0, + 1, + 1, + 0.7951670289039612, + ], + }, + "ext": {}, + "flags": 560865285, + "location": Float32Array [ + 0, + 0, + 0, + ], + "material": {}, + "name": "", + "night": { + "azimuth": -3.396984338760376, + "brightness": 0.2385057508945465, + "density": 0.39470699429512024, + "ext": {}, + "hazeDensity": 0.3886969983577728, + "latitude": 0.17528735101222992, + "lensFlare": {}, + "lightIntensity": 2, + "minHaze": 0.6562860012054443, + "scale": Float32Array [ + 12.356321334838867, + 2.3258962631225586, + ], + "speed": 0.0038112534675747156, + "texture": 190422, + "textureUV": Float32Array [ + 0, + 1, + 1, + 0.7951670289039612, + ], + }, + }, + { + "day": { + "azimuth": -0.24371829628944397, + "brightness": 1.1487890481948853, + "density": 0.5166860222816467, + "ext": {}, + "hazeDensity": 0.3068050146102905, + "latitude": 0.09482758492231369, + "lensFlare": {}, + "lightIntensity": 1, + "minHaze": 0.6816610097885132, + "scale": Float32Array [ + 27.384614944458008, + 5.842050552368164, + ], + "speed": 0.006719829980283976, + "texture": 190422, + "textureUV": Float32Array [ + 0, + 1, + 1, + 0.7951670289039612, + ], + }, + "ext": {}, + "flags": 879914764, + "location": Float32Array [ + 0, + 0, + 0, + ], + "material": {}, + "name": "", + "night": { + "azimuth": -0.24371829628944397, + "brightness": 1.1487890481948853, + "density": 0.5166860222816467, + "ext": {}, + "hazeDensity": 0.3068050146102905, + "latitude": 0.09482758492231369, + "lensFlare": {}, + "lightIntensity": 1, + "minHaze": 0.6816610097885132, + "scale": Float32Array [ + 27.384614944458008, + 5.842050552368164, + ], + "speed": 0.006719829980283976, + "texture": 190422, + "textureUV": Float32Array [ + 0, + 1, + 1, + 0.7951670289039612, + ], + }, + }, + { + "day": { + "azimuth": -4.883838176727295, + "brightness": 0.9396551847457886, + "density": 0.37212643027305603, + "ext": {}, + "hazeDensity": 1, + "latitude": 0.23275862634181976, + "lensFlare": {}, + "lightIntensity": 1, + "minHaze": 0, + "scale": Float32Array [ + 11.392404556274414, + 4.0290207862854, + ], + "speed": 0.002808274468407035, + "texture": 190422, + "textureUV": Float32Array [ + 0, + 1, + 0.5143839716911316, + 0.20828500390052795, + ], + }, + "ext": {}, + "flags": 896488192, + "location": Float32Array [ + 0, + 0, + 0, + ], + "material": {}, + "name": "", + "night": { + "azimuth": -4.883838176727295, + "brightness": 0.9396551847457886, + "density": 0.37212643027305603, + "ext": {}, + "hazeDensity": 1, + "latitude": 0.23275862634181976, + "lensFlare": {}, + "lightIntensity": 1, + "minHaze": 0, + "scale": Float32Array [ + 11.392404556274414, + 4.0290207862854, + ], + "speed": 0.002808274468407035, + "texture": 190422, + "textureUV": Float32Array [ + 0, + 1, + 0.5143839716911316, + 0.20828500390052795, + ], + }, + }, + { + "day": { + "azimuth": -2.130230665206909, + "brightness": 1.09551203250885, + "density": 0.43153101205825806, + "ext": {}, + "hazeDensity": 0.4071510136127472, + "latitude": 0.3002873659133911, + "lensFlare": {}, + "lightIntensity": 1, + "minHaze": 0.6274510025978088, + "scale": Float32Array [ + 12.643678665161133, + 2.0434234142303467, + ], + "speed": 0.004814139101654291, + "texture": 190422, + "textureUV": Float32Array [ + 0, + 1, + 1, + 0.7951670289039612, + ], + }, + "ext": {}, + "flags": 1030059276, + "location": Float32Array [ + 0, + 0, + 0, + ], + "material": {}, + "name": "", + "night": { + "azimuth": -2.130230665206909, + "brightness": 1.09551203250885, + "density": 0.43153101205825806, + "ext": {}, + "hazeDensity": 0.4071510136127472, + "latitude": 0.3002873659133911, + "lensFlare": {}, + "lightIntensity": 1, + "minHaze": 0.6274510025978088, + "scale": Float32Array [ + 12.643678665161133, + 2.0434234142303467, + ], + "speed": 0.004814139101654291, + "texture": 190422, + "textureUV": Float32Array [ + 0, + 1, + 1, + 0.7951670289039612, + ], + }, + }, + { + "day": { + "azimuth": -3.97168231010437, + "brightness": 1.0574712753295898, + "density": 0.6547759771347046, + "ext": {}, + "hazeDensity": 0, + "latitude": 0.3333333432674408, + "lensFlare": {}, + "lightIntensity": 2, + "minHaze": 0.6321839094161987, + "scale": Float32Array [ + 10.011507987976074, + 1.956272006034851, + ], + "speed": 0.004112054593861103, + "texture": 190422, + "textureUV": Float32Array [ + 0, + 1, + 0.1990790069103241, + 0, + ], + }, + "ext": {}, + "flags": 538976264, + "location": Float32Array [ + 0, + 0, + 0, + ], + "material": {}, + "name": "", + "night": { + "azimuth": -3.97168231010437, + "brightness": 1.0574712753295898, + "density": 0.6547759771347046, + "ext": {}, + "hazeDensity": 0, + "latitude": 0.3333333432674408, + "lensFlare": {}, + "lightIntensity": 2, + "minHaze": 0.6321839094161987, + "scale": Float32Array [ + 10.011507987976074, + 1.956272006034851, + ], + "speed": 0.004112054593861103, + "texture": 190422, + "textureUV": Float32Array [ + 0, + 1, + 0.1990790069103241, + 0, + ], + }, + }, + { + "day": { + "azimuth": -3.1412341594696045, + "brightness": 2, + "density": 0, + "ext": {}, + "hazeDensity": 0, + "latitude": 0.30890804529190063, + "lensFlare": {}, + "lightIntensity": 1, + "minHaze": 0.5511810183525085, + "scale": Float32Array [ + 1.436781644821167, + 1.1494252681732178, + ], + "speed": 0, + "texture": 186349, + "textureUV": Float32Array [ + 1, + 0.6516720056533813, + 0.44175300002098083, + 0.7383180260658264, + ], + }, + "ext": {}, + "flags": 694558725, + "location": Float32Array [ + 0, + 0, + 0, + ], + "material": {}, + "name": "", + "night": { + "azimuth": -3.1412341594696045, + "brightness": 2, + "density": 1, + "ext": {}, + "hazeDensity": 0, + "latitude": 0.30890804529190063, + "lensFlare": {}, + "lightIntensity": 1, + "minHaze": 0.5511810183525085, + "scale": Float32Array [ + 1.436781644821167, + 1.1494252681732178, + ], + "speed": 0, + "texture": 186349, + "textureUV": Float32Array [ + 0.2653465270996094, + 0, + 0.4554455578327179, + 0.6772277355194092, + ], + }, + }, + ], + }, + "spawns": {}, + "type": 5, + "water": [], + "wind": [ + { + "azimuth": 0, + "elevation": 0, + "gust": 10, + "gustFreq": 6, + "gustSpeed": 128, + "noise": 14, + "speed": 12, + }, + { + "azimuth": 0, + "elevation": 0, + "gust": 0, + "gustFreq": 0, + "gustSpeed": 0, + "noise": 0, + "speed": 0, + }, + { + "azimuth": 0, + "elevation": 0, + "gust": 0, + "gustFreq": 0, + "gustSpeed": 0, + "noise": 0, + "speed": 0, + }, + ], + }, + { + "audio": [], + "bindTarget": 0n, + "clouds": { + "layers": [], + }, + "coloredLightRings": [], + "effect": [ + { + "clutTexturePath": 0, + "ext": {}, + "flags": 0, + "focalDepth": 6000, + "focalRange": 4000, + "glow": Uint8Array [ + 0, + 98, + 97, + 0, + ], + "glowAmplify": 0.4000000059604645, + "glowLevel": Uint8Array [ + 76, + 76, + 76, + 0, + ], + "saturation": 1, + "ssaoAmount": 3, + "ssaoBrighten": 0.20000000298023224, + "ssaoContrast": 1, + "ssaoSunScale": 0.5, + "tintAmount": 0, + "tintColor": Uint8Array [ + 0, + 0, + 0, + 0, + ], + "tintFocus": 0, + "tintTargetColor": Uint8Array [ + 0, + 0, + 0, + 0, + ], + }, + { + "clutTexturePath": 0, + "ext": {}, + "flags": 0, + "focalDepth": 6000, + "focalRange": 4000, + "glow": Uint8Array [ + 0, + 98, + 97, + 0, + ], + "glowAmplify": 0.4000000059604645, + "glowLevel": Uint8Array [ + 76, + 76, + 76, + 0, + ], + "saturation": 1, + "ssaoAmount": 3, + "ssaoBrighten": 0.20000000298023224, + "ssaoContrast": 1, + "ssaoSunScale": 0.5, + "tintAmount": 0, + "tintColor": Uint8Array [ + 0, + 0, + 0, + 0, + ], + "tintFocus": 0, + "tintTargetColor": Uint8Array [ + 0, + 0, + 0, + 0, + ], + }, + { + "clutTexturePath": 0, + "ext": {}, + "flags": 0, + "focalDepth": 6000, + "focalRange": 4000, + "glow": Uint8Array [ + 0, + 0, + 0, + 0, + ], + "glowAmplify": 0, + "glowLevel": Uint8Array [ + 0, + 0, + 0, + 0, + ], + "saturation": 1, + "ssaoAmount": 3, + "ssaoBrighten": 0.20000000298023224, + "ssaoContrast": 1, + "ssaoSunScale": 0.5, + "tintAmount": 0, + "tintColor": Uint8Array [ + 255, + 255, + 255, + 255, + ], + "tintFocus": 0, + "tintTargetColor": Uint8Array [ + 255, + 255, + 255, + 0, + ], + }, + ], + "ext": { + "brightMax": 0.5, + "brightMin": 0.30000001192092896, + "brightScale": 1, + "brightTime": 2.5, + "darkCoeff": 1.2000000476837158, + "darkExp": 0.800000011920929, + "darkMax": 0.30000001192092896, + "darkMin": 0.10000000149011612, + "darkScale": 1, + "dimTime": 5, + "ext2": {}, + "waterReflectionParams": Float32Array [ + 0, + 0, + 0, + 0, + ], + }, + "flags": 0, + "guid": 1856510320300818959n, + "haze": [ + { + "depthCue": 0.00041099998634308577, + "distRange": Float32Array [ + 86.33099365234375, + 2014.388427734375, + ], + "farColor": Uint8Array [ + 21, + 60, + 159, + 255, + ], + "heightColor": Uint8Array [ + 38, + 74, + 115, + 255, + ], + "heightRange": Float32Array [ + -34.73039245605469, + 140.40118408203125, + ], + "nearColor": Uint8Array [ + 15, + 165, + 19, + 255, + ], + "sunDirRange": Float32Array [ + 0, + 0, + ], + }, + { + "depthCue": 0.00041099998634308577, + "distRange": Float32Array [ + 86.33099365234375, + 2014.388427734375, + ], + "farColor": Uint8Array [ + 21, + 60, + 159, + 255, + ], + "heightColor": Uint8Array [ + 38, + 74, + 115, + 255, + ], + "heightRange": Float32Array [ + -34.73039245605469, + 140.40118408203125, + ], + "nearColor": Uint8Array [ + 15, + 165, + 19, + 255, + ], + "sunDirRange": Float32Array [ + 0, + 0, + ], + }, + { + "depthCue": 0, + "distRange": Float32Array [ + 0, + 0, + ], + "farColor": Uint8Array [ + 0, + 0, + 0, + 255, + ], + "heightColor": Uint8Array [ + 0, + 0, + 0, + 255, + ], + "heightRange": Float32Array [ + 0, + 0, + ], + "nearColor": Uint8Array [ + 0, + 0, + 0, + 255, + ], + "sunDirRange": Float32Array [ + 0, + 0, + ], + }, + ], + "lighting": [ + { + "backlightColor": Uint8Array [ + 255, + 255, + 255, + ], + "backlightIntensity": 1, + "lights": [ + { + "color": Uint8Array [ + 191, + 248, + 255, + ], + "direction": Float32Array [ + 0.7071067690849304, + 0, + 0.7071067690849304, + ], + "intensity": 0.5, + }, + { + "color": Uint8Array [ + 255, + 199, + 165, + ], + "direction": Float32Array [ + -0.7071067690849304, + -0.0000012868819112554775, + -0.7071067690849304, + ], + "intensity": 0.029604999348521233, + }, + { + "color": Uint8Array [ + 255, + 221, + 191, + ], + "direction": Float32Array [ + -0.0000010291722674082848, + -1.8730171493647196e-12, + 1, + ], + "intensity": 0.0032889998983591795, + }, + { + "color": Uint8Array [ + 207, + 255, + 191, + ], + "direction": Float32Array [ + -0.0000010291722674082848, + -1.8730171493647196e-12, + -1, + ], + "intensity": 0, + }, + { + "color": Uint8Array [ + 216, + 22, + 200, + ], + "direction": Float32Array [ + -0.7071067690849304, + -0.0000012868819112554775, + 0.7071067690849304, + ], + "intensity": 0.3585529923439026, + }, + { + "color": Uint8Array [ + 255, + 190, + 199, + ], + "direction": Float32Array [ + -4.371138828673793e-8, + 1, + 0, + ], + "intensity": 0, + }, + { + "color": Uint8Array [ + 255, + 201, + 191, + ], + "direction": Float32Array [ + 0.7071067690849304, + 0, + -0.7071067690849304, + ], + "intensity": 0, + }, + { + "color": Uint8Array [ + 255, + 190, + 199, + ], + "direction": Float32Array [ + -4.371138828673793e-8, + -1, + 0, + ], + "intensity": 0, + }, + ], + "shadowInfluence": 0, + }, + { + "backlightColor": Uint8Array [ + 255, + 255, + 255, + ], + "backlightIntensity": 1, + "lights": [ + { + "color": Uint8Array [ + 191, + 248, + 255, + ], + "direction": Float32Array [ + 0.7071067690849304, + 0, + 0.7071067690849304, + ], + "intensity": 0.5, + }, + { + "color": Uint8Array [ + 255, + 199, + 165, + ], + "direction": Float32Array [ + -0.7071067690849304, + -0.0000012868819112554775, + -0.7071067690849304, + ], + "intensity": 0.029604999348521233, + }, + { + "color": Uint8Array [ + 255, + 221, + 191, + ], + "direction": Float32Array [ + -0.0000010291722674082848, + -1.8730171493647196e-12, + 1, + ], + "intensity": 0.0032889998983591795, + }, + { + "color": Uint8Array [ + 207, + 255, + 191, + ], + "direction": Float32Array [ + -0.0000010291722674082848, + -1.8730171493647196e-12, + -1, + ], + "intensity": 0, + }, + { + "color": Uint8Array [ + 216, + 22, + 200, + ], + "direction": Float32Array [ + -0.7071067690849304, + -0.0000012868819112554775, + 0.7071067690849304, + ], + "intensity": 0.3585529923439026, + }, + { + "color": Uint8Array [ + 255, + 190, + 199, + ], + "direction": Float32Array [ + -4.371138828673793e-8, + 1, + 0, + ], + "intensity": 0, + }, + { + "color": Uint8Array [ + 255, + 201, + 191, + ], + "direction": Float32Array [ + 0.7071067690849304, + 0, + -0.7071067690849304, + ], + "intensity": 0, + }, + { + "color": Uint8Array [ + 255, + 190, + 199, + ], + "direction": Float32Array [ + -4.371138828673793e-8, + -1, + 0, + ], + "intensity": 0, + }, + ], + "shadowInfluence": 0, + }, + { + "backlightColor": Uint8Array [ + 0, + 0, + 0, + ], + "backlightIntensity": 0, + "lights": [ + { + "color": Uint8Array [ + 255, + 233, + 192, + ], + "direction": Float32Array [ + 0.7071067690849304, + 0, + 0.7071067690849304, + ], + "intensity": 1.2999999523162842, + }, + { + "color": Uint8Array [ + 124, + 172, + 248, + ], + "direction": Float32Array [ + -0.7071067690849304, + -0.0000012868819112554775, + -0.7071067690849304, + ], + "intensity": 0.30000001192092896, + }, + { + "color": Uint8Array [ + 191, + 221, + 255, + ], + "direction": Float32Array [ + 0.29848748445510864, + 0.9186500906944275, + 0.258819043636322, + ], + "intensity": 0.10000000149011612, + }, + { + "color": Uint8Array [ + 188, + 204, + 253, + ], + "direction": Float32Array [ + -0.7814504504203796, + 0.5677568912506104, + 0.258819043636322, + ], + "intensity": 0.10000000149011612, + }, + { + "color": Uint8Array [ + 199, + 190, + 255, + ], + "direction": Float32Array [ + -0.8824164271354675, + 0.39287903904914856, + 0.25881901383399963, + ], + "intensity": 0.10000000149011612, + }, + { + "color": Uint8Array [ + 189, + 222, + 255, + ], + "direction": Float32Array [ + 0.2984875440597534, + -0.9186500310897827, + 0.258819043636322, + ], + "intensity": 0.10000000149011612, + }, + { + "color": Uint8Array [ + 204, + 237, + 255, + ], + "direction": Float32Array [ + -9.099629210140847e-7, + 1.6560650420438527e-12, + 1, + ], + "intensity": 0.30000001192092896, + }, + { + "color": Uint8Array [ + 168, + 254, + 189, + ], + "direction": Float32Array [ + -9.099629210140847e-7, + 1.6560650420438527e-12, + -1, + ], + "intensity": 0.15000000596046448, + }, + ], + "shadowInfluence": 0, + }, + ], + "lightingCharGroups": [], + "name": "", + "nightMods": Uint8Array [ + 255, + 255, + 255, + 133, + ], + "particleFieldCutouts": [], + "particleFields": [ + { + "altitude": 0, + "angle": Float32Array [ + 0, + 0, + ], + "clusterCount": 20, + "clustering": Float32Array [ + 0, + 0, + ], + "depth": 0, + "deviation": 0, + "deviationSpeed": Float32Array [ + 1, + 1, + ], + "extent": 2097, + "fade": 50, + "fieldDirection": Float32Array [ + 0, + 0, + 1, + ], + "flags": 70, + "lifetime": Float32Array [ + 0, + 0, + ], + "name": "Drops", + "opacity": Float32Array [ + 1, + 1, + ], + "particleCount": 10, + "period": Float32Array [ + 0, + 0, + ], + "reserved": 0, + "rotation": Float32Array [ + 0, + 0, + ], + "scaleX": Float32Array [ + 6.89881706237793, + 6.89881706237793, + ], + "scaleY": Float32Array [ + 15.466147422790527, + 15.466147422790527, + ], + "seed": 197854, + "speed": Float32Array [ + 1, + 1, + ], + "texColRow": Uint32Array [ + 1, + 1, + ], + "texFPS": 0, + "texPath": 188556, + "type": 0, + }, + { + "altitude": 0, + "angle": Float32Array [ + 0, + 0, + ], + "clusterCount": 20, + "clustering": Float32Array [ + 0, + 0, + ], + "depth": 0, + "deviation": 0, + "deviationSpeed": Float32Array [ + 0.30000001192092896, + 0.33000001311302185, + ], + "extent": 2000, + "fade": 50, + "fieldDirection": Float32Array [ + 0, + 0, + 1, + ], + "flags": 71, + "lifetime": Float32Array [ + 0, + 0, + ], + "name": "Posion", + "opacity": Float32Array [ + 0.09971900284290314, + 0.20505599677562714, + ], + "particleCount": 100, + "period": Float32Array [ + 0, + 0, + ], + "reserved": 0, + "rotation": Float32Array [ + 0, + 0, + ], + "scaleX": Float32Array [ + 87.09464263916016, + 100, + ], + "scaleY": Float32Array [ + 1, + 1, + ], + "seed": 197854, + "speed": Float32Array [ + 0.028409000486135483, + 0.13636399805545807, + ], + "texColRow": Uint32Array [ + 4, + 4, + ], + "texFPS": 0, + "texPath": 187547, + "type": 2, + }, + ], + "shapeArray": [ + { + "center": Float32Array [ + -8643.49609375, + -15020.70703125, + -17286.927734375, + ], + "fadeHorizInner": 0, + "fadeHorizOuter": 0, + "fadeVertical": 0, + "height": 2116.1484375, + "shapeType": 2, + "vertexArray": [ + Float32Array [ + -7341.7578125, + -13870.1259765625, + ], + Float32Array [ + -7253.12646484375, + -16092.5615234375, + ], + Float32Array [ + -10033.865234375, + -16482.578125, + ], + Float32Array [ + -10009.5361328125, + -13558.8369140625, + ], + ], + }, + ], + "sky": { + "dayBrightness": 1, + "dayHazeBottom": 0, + "dayHazeDensity": 0, + "dayHazeFalloff": 16, + "dayLightIntensity": 1, + "dayStarDensity": 0, + "flags": 0, + "nightBrightness": 1, + "nightHazeBottom": 0, + "nightHazeDensity": 0, + "nightHazeFalloff": 16, + "nightLightIntensity": 1, + "nightStarDensity": 0, + "verticalOffset": 0, + }, + "skyCards": { + "cards": [], + }, + "spawns": {}, + "type": 5, + "water": [ + { + "animAmplitude": 0, + "animChoppiness": 0, + "animWind": Float32Array [ + -90, + -30, + ], + "bumpAmount": 300, + "bumpAngle0": 0, + "bumpAngle1": 40, + "bumpScale0": 0.10000000149011612, + "bumpScale1": 0.10000000149011612, + "bumpSpeed0": 1, + "bumpSpeed1": 1, + "bumpTile0": 1.7999999523162842, + "bumpTile1": 2.5999999046325684, + "constantTokens": [], + "constantValues": [], + "depthAttenuation": 200, + "distortAmount": 0.15000000596046448, + "foamColor0": Uint8Array [ + 51, + 126, + 174, + 38, + ], + "foamColor1": Uint8Array [ + 255, + 255, + 255, + 191, + ], + "foamDepthAttenuation": 0.8999999761581421, + "foamDissolve": 0.949999988079071, + "foamSpawn": 0.5, + "materialFilename": 0, + "patternAngle": 0, + "patternColor": Uint8Array [ + 255, + 255, + 255, + 0, + ], + "patternEdge": 1, + "patternSpeed": 1, + "patternTile": 1.7999999523162842, + "surfaceDeepColor": Uint8Array [ + 50, + 16, + 9, + 0, + ], + "surfaceFresnel": 2.5, + "surfaceShallowColor": Uint8Array [ + 190, + 168, + 103, + 0, + ], + "textureFilenames": [], + "waterFlags": 1, + }, + { + "animAmplitude": 0, + "animChoppiness": 0, + "animWind": Float32Array [ + -90, + -30, + ], + "bumpAmount": 300, + "bumpAngle0": 0, + "bumpAngle1": 40, + "bumpScale0": 0.10000000149011612, + "bumpScale1": 0.10000000149011612, + "bumpSpeed0": 1, + "bumpSpeed1": 1, + "bumpTile0": 1.7999999523162842, + "bumpTile1": 2.5999999046325684, + "constantTokens": [], + "constantValues": [], + "depthAttenuation": 200, + "distortAmount": 0.15000000596046448, + "foamColor0": Uint8Array [ + 51, + 126, + 174, + 38, + ], + "foamColor1": Uint8Array [ + 255, + 255, + 255, + 191, + ], + "foamDepthAttenuation": 0.8999999761581421, + "foamDissolve": 0.949999988079071, + "foamSpawn": 0.5, + "materialFilename": 0, + "patternAngle": 0, + "patternColor": Uint8Array [ + 255, + 255, + 255, + 0, + ], + "patternEdge": 1, + "patternSpeed": 1, + "patternTile": 1.7999999523162842, + "surfaceDeepColor": Uint8Array [ + 50, + 16, + 9, + 0, + ], + "surfaceFresnel": 2.5, + "surfaceShallowColor": Uint8Array [ + 190, + 168, + 103, + 0, + ], + "textureFilenames": [], + "waterFlags": 1, + }, + { + "animAmplitude": 0, + "animChoppiness": 0, + "animWind": Float32Array [ + -90, + -30, + ], + "bumpAmount": 300, + "bumpAngle0": 0, + "bumpAngle1": 40, + "bumpScale0": 0.10000000149011612, + "bumpScale1": 0.10000000149011612, + "bumpSpeed0": 1, + "bumpSpeed1": 1, + "bumpTile0": 1.7999999523162842, + "bumpTile1": 2.5999999046325684, + "constantTokens": [], + "constantValues": [], + "depthAttenuation": 200, + "distortAmount": 0.15000000596046448, + "foamColor0": Uint8Array [ + 51, + 126, + 174, + 38, + ], + "foamColor1": Uint8Array [ + 255, + 255, + 255, + 191, + ], + "foamDepthAttenuation": 0.8999999761581421, + "foamDissolve": 0.949999988079071, + "foamSpawn": 0.5, + "materialFilename": 0, + "patternAngle": 0, + "patternColor": Uint8Array [ + 255, + 255, + 255, + 0, + ], + "patternEdge": 1, + "patternSpeed": 1, + "patternTile": 1.7999999523162842, + "surfaceDeepColor": Uint8Array [ + 50, + 16, + 9, + 0, + ], + "surfaceFresnel": 2.5, + "surfaceShallowColor": Uint8Array [ + 190, + 168, + 103, + 0, + ], + "textureFilenames": [], + "waterFlags": 1, + }, + ], + "wind": [ + { + "azimuth": 0, + "elevation": 0, + "gust": 0, + "gustFreq": 0, + "gustSpeed": 0, + "noise": 0, + "speed": 0, + }, + { + "azimuth": 0, + "elevation": 0, + "gust": 0, + "gustFreq": 0, + "gustSpeed": 0, + "noise": 0, + "speed": 0, + }, + { + "azimuth": 0, + "elevation": 0, + "gust": 0, + "gustFreq": 0, + "gustSpeed": 0, + "noise": 0, + "speed": 0, + }, + ], + }, + { + "audio": [], + "bindTarget": 0n, + "clouds": { + "layers": [], + }, + "coloredLightRings": [], + "effect": [ + { + "clutTexturePath": 0, + "ext": {}, + "flags": 0, + "focalDepth": 6000, + "focalRange": 4000, + "glow": Uint8Array [ + 0, + 98, + 97, + 0, + ], + "glowAmplify": 0.4000000059604645, + "glowLevel": Uint8Array [ + 76, + 76, + 76, + 0, + ], + "saturation": 1, + "ssaoAmount": 3, + "ssaoBrighten": 0.20000000298023224, + "ssaoContrast": 1, + "ssaoSunScale": 0.5, + "tintAmount": 0, + "tintColor": Uint8Array [ + 0, + 0, + 0, + 0, + ], + "tintFocus": 0, + "tintTargetColor": Uint8Array [ + 0, + 0, + 0, + 0, + ], + }, + { + "clutTexturePath": 0, + "ext": {}, + "flags": 0, + "focalDepth": 6000, + "focalRange": 4000, + "glow": Uint8Array [ + 0, + 98, + 97, + 0, + ], + "glowAmplify": 0.4000000059604645, + "glowLevel": Uint8Array [ + 76, + 76, + 76, + 0, + ], + "saturation": 1, + "ssaoAmount": 3, + "ssaoBrighten": 0.20000000298023224, + "ssaoContrast": 1, + "ssaoSunScale": 0.5, + "tintAmount": 0, + "tintColor": Uint8Array [ + 0, + 0, + 0, + 0, + ], + "tintFocus": 0, + "tintTargetColor": Uint8Array [ + 0, + 0, + 0, + 0, + ], + }, + { + "clutTexturePath": 0, + "ext": {}, + "flags": 0, + "focalDepth": 6000, + "focalRange": 4000, + "glow": Uint8Array [ + 0, + 0, + 0, + 0, + ], + "glowAmplify": 0, + "glowLevel": Uint8Array [ + 0, + 0, + 0, + 0, + ], + "saturation": 1, + "ssaoAmount": 3, + "ssaoBrighten": 0.20000000298023224, + "ssaoContrast": 1, + "ssaoSunScale": 0.5, + "tintAmount": 0, + "tintColor": Uint8Array [ + 255, + 255, + 255, + 255, + ], + "tintFocus": 0, + "tintTargetColor": Uint8Array [ + 255, + 255, + 255, + 0, + ], + }, + ], + "ext": { + "brightMax": 0.5, + "brightMin": 0.30000001192092896, + "brightScale": 1, + "brightTime": 2.5, + "darkCoeff": 1.2000000476837158, + "darkExp": 0.800000011920929, + "darkMax": 0.30000001192092896, + "darkMin": 0.10000000149011612, + "darkScale": 1, + "dimTime": 5, + "ext2": {}, + "waterReflectionParams": Float32Array [ + 0, + 0, + 0, + 0, + ], + }, + "flags": 0, + "guid": 1856510444854870540n, + "haze": [ + { + "depthCue": 0.00041099998634308577, + "distRange": Float32Array [ + 86.33099365234375, + 2014.388427734375, + ], + "farColor": Uint8Array [ + 21, + 60, + 159, + 255, + ], + "heightColor": Uint8Array [ + 38, + 74, + 115, + 255, + ], + "heightRange": Float32Array [ + -34.73039245605469, + 140.40118408203125, + ], + "nearColor": Uint8Array [ + 15, + 165, + 19, + 255, + ], + "sunDirRange": Float32Array [ + 0, + 0, + ], + }, + { + "depthCue": 0.00041099998634308577, + "distRange": Float32Array [ + 86.33099365234375, + 2014.388427734375, + ], + "farColor": Uint8Array [ + 21, + 60, + 159, + 255, + ], + "heightColor": Uint8Array [ + 38, + 74, + 115, + 255, + ], + "heightRange": Float32Array [ + -34.73039245605469, + 140.40118408203125, + ], + "nearColor": Uint8Array [ + 15, + 165, + 19, + 255, + ], + "sunDirRange": Float32Array [ + 0, + 0, + ], + }, + { + "depthCue": 0, + "distRange": Float32Array [ + 0, + 0, + ], + "farColor": Uint8Array [ + 0, + 0, + 0, + 255, + ], + "heightColor": Uint8Array [ + 0, + 0, + 0, + 255, + ], + "heightRange": Float32Array [ + 0, + 0, + ], + "nearColor": Uint8Array [ + 0, + 0, + 0, + 255, + ], + "sunDirRange": Float32Array [ + 0, + 0, + ], + }, + ], + "lighting": [ + { + "backlightColor": Uint8Array [ + 255, + 255, + 255, + ], + "backlightIntensity": 1, + "lights": [ + { + "color": Uint8Array [ + 191, + 248, + 255, + ], + "direction": Float32Array [ + 0.7071067690849304, + 0, + 0.7071067690849304, + ], + "intensity": 0.5, + }, + { + "color": Uint8Array [ + 255, + 199, + 165, + ], + "direction": Float32Array [ + -0.7071067690849304, + -0.0000012868819112554775, + -0.7071067690849304, + ], + "intensity": 0.029604999348521233, + }, + { + "color": Uint8Array [ + 255, + 221, + 191, + ], + "direction": Float32Array [ + -0.0000010291722674082848, + -1.8730171493647196e-12, + 1, + ], + "intensity": 0.0032889998983591795, + }, + { + "color": Uint8Array [ + 207, + 255, + 191, + ], + "direction": Float32Array [ + -0.0000010291722674082848, + -1.8730171493647196e-12, + -1, + ], + "intensity": 0, + }, + { + "color": Uint8Array [ + 216, + 22, + 200, + ], + "direction": Float32Array [ + -0.7071067690849304, + -0.0000012868819112554775, + 0.7071067690849304, + ], + "intensity": 0.3585529923439026, + }, + { + "color": Uint8Array [ + 255, + 190, + 199, + ], + "direction": Float32Array [ + -4.371138828673793e-8, + 1, + 0, + ], + "intensity": 0, + }, + { + "color": Uint8Array [ + 255, + 201, + 191, + ], + "direction": Float32Array [ + 0.7071067690849304, + 0, + -0.7071067690849304, + ], + "intensity": 0, + }, + { + "color": Uint8Array [ + 255, + 190, + 199, + ], + "direction": Float32Array [ + -4.371138828673793e-8, + -1, + 0, + ], + "intensity": 0, + }, + ], + "shadowInfluence": 0, + }, + { + "backlightColor": Uint8Array [ + 255, + 255, + 255, + ], + "backlightIntensity": 1, + "lights": [ + { + "color": Uint8Array [ + 191, + 248, + 255, + ], + "direction": Float32Array [ + 0.7071067690849304, + 0, + 0.7071067690849304, + ], + "intensity": 0.5, + }, + { + "color": Uint8Array [ + 255, + 199, + 165, + ], + "direction": Float32Array [ + -0.7071067690849304, + -0.0000012868819112554775, + -0.7071067690849304, + ], + "intensity": 0.029604999348521233, + }, + { + "color": Uint8Array [ + 255, + 221, + 191, + ], + "direction": Float32Array [ + -0.0000010291722674082848, + -1.8730171493647196e-12, + 1, + ], + "intensity": 0.0032889998983591795, + }, + { + "color": Uint8Array [ + 207, + 255, + 191, + ], + "direction": Float32Array [ + -0.0000010291722674082848, + -1.8730171493647196e-12, + -1, + ], + "intensity": 0, + }, + { + "color": Uint8Array [ + 216, + 22, + 200, + ], + "direction": Float32Array [ + -0.7071067690849304, + -0.0000012868819112554775, + 0.7071067690849304, + ], + "intensity": 0.3585529923439026, + }, + { + "color": Uint8Array [ + 255, + 190, + 199, + ], + "direction": Float32Array [ + -4.371138828673793e-8, + 1, + 0, + ], + "intensity": 0, + }, + { + "color": Uint8Array [ + 255, + 201, + 191, + ], + "direction": Float32Array [ + 0.7071067690849304, + 0, + -0.7071067690849304, + ], + "intensity": 0, + }, + { + "color": Uint8Array [ + 255, + 190, + 199, + ], + "direction": Float32Array [ + -4.371138828673793e-8, + -1, + 0, + ], + "intensity": 0, + }, + ], + "shadowInfluence": 0, + }, + { + "backlightColor": Uint8Array [ + 0, + 0, + 0, + ], + "backlightIntensity": 0, + "lights": [ + { + "color": Uint8Array [ + 255, + 233, + 192, + ], + "direction": Float32Array [ + 0.7071067690849304, + 0, + 0.7071067690849304, + ], + "intensity": 1.2999999523162842, + }, + { + "color": Uint8Array [ + 124, + 172, + 248, + ], + "direction": Float32Array [ + -0.7071067690849304, + -0.0000012868819112554775, + -0.7071067690849304, + ], + "intensity": 0.30000001192092896, + }, + { + "color": Uint8Array [ + 191, + 221, + 255, + ], + "direction": Float32Array [ + 0.29848748445510864, + 0.9186500906944275, + 0.258819043636322, + ], + "intensity": 0.10000000149011612, + }, + { + "color": Uint8Array [ + 188, + 204, + 253, + ], + "direction": Float32Array [ + -0.7814504504203796, + 0.5677568912506104, + 0.258819043636322, + ], + "intensity": 0.10000000149011612, + }, + { + "color": Uint8Array [ + 199, + 190, + 255, + ], + "direction": Float32Array [ + -0.8824164271354675, + 0.39287903904914856, + 0.25881901383399963, + ], + "intensity": 0.10000000149011612, + }, + { + "color": Uint8Array [ + 189, + 222, + 255, + ], + "direction": Float32Array [ + 0.2984875440597534, + -0.9186500310897827, + 0.258819043636322, + ], + "intensity": 0.10000000149011612, + }, + { + "color": Uint8Array [ + 204, + 237, + 255, + ], + "direction": Float32Array [ + -9.099629210140847e-7, + 1.6560650420438527e-12, + 1, + ], + "intensity": 0.30000001192092896, + }, + { + "color": Uint8Array [ + 168, + 254, + 189, + ], + "direction": Float32Array [ + -9.099629210140847e-7, + 1.6560650420438527e-12, + -1, + ], + "intensity": 0.15000000596046448, + }, + ], + "shadowInfluence": 0, + }, + ], + "lightingCharGroups": [], + "name": "", + "nightMods": Uint8Array [ + 255, + 255, + 255, + 133, + ], + "particleFieldCutouts": [], + "particleFields": [ + { + "altitude": 0, + "angle": Float32Array [ + 0, + 0, + ], + "clusterCount": 20, + "clustering": Float32Array [ + 0, + 0, + ], + "depth": 0, + "deviation": 0, + "deviationSpeed": Float32Array [ + 1, + 1, + ], + "extent": 2097, + "fade": 50, + "fieldDirection": Float32Array [ + 0, + 0, + 1, + ], + "flags": 70, + "lifetime": Float32Array [ + 0, + 0, + ], + "name": "Drops", + "opacity": Float32Array [ + 1, + 1, + ], + "particleCount": 10, + "period": Float32Array [ + 0, + 0, + ], + "reserved": 0, + "rotation": Float32Array [ + 0, + 0, + ], + "scaleX": Float32Array [ + 6.89881706237793, + 6.89881706237793, + ], + "scaleY": Float32Array [ + 15.466147422790527, + 15.466147422790527, + ], + "seed": 197854, + "speed": Float32Array [ + 1, + 1, + ], + "texColRow": Uint32Array [ + 1, + 1, + ], + "texFPS": 0, + "texPath": 188556, + "type": 0, + }, + { + "altitude": 0, + "angle": Float32Array [ + 0, + 0, + ], + "clusterCount": 20, + "clustering": Float32Array [ + 0, + 0, + ], + "depth": 0, + "deviation": 0, + "deviationSpeed": Float32Array [ + 0.30000001192092896, + 0.33000001311302185, + ], + "extent": 2000, + "fade": 50, + "fieldDirection": Float32Array [ + 0, + 0, + 1, + ], + "flags": 71, + "lifetime": Float32Array [ + 0, + 0, + ], + "name": "Posion", + "opacity": Float32Array [ + 0.09971900284290314, + 0.20505599677562714, + ], + "particleCount": 100, + "period": Float32Array [ + 0, + 0, + ], + "reserved": 0, + "rotation": Float32Array [ + 0, + 0, + ], + "scaleX": Float32Array [ + 87.09464263916016, + 100, + ], + "scaleY": Float32Array [ + 1, + 1, + ], + "seed": 197854, + "speed": Float32Array [ + 0.028409000486135483, + 0.13636399805545807, + ], + "texColRow": Uint32Array [ + 4, + 4, + ], + "texFPS": 0, + "texPath": 187547, + "type": 2, + }, + ], + "shapeArray": [ + { + "center": Float32Array [ + 876.8138427734375, + -4002.725830078125, + -14501.931640625, + ], + "fadeHorizInner": 0, + "fadeHorizOuter": 0, + "fadeVertical": 0, + "height": 1716.71484375, + "shapeType": 2, + "vertexArray": [ + Float32Array [ + -537.5007934570312, + -6375.07177734375, + ], + Float32Array [ + -1474.694091796875, + -3780.42138671875, + ], + Float32Array [ + 1527.168212890625, + -1630.3800048828125, + ], + Float32Array [ + 3228.32177734375, + -3905.142333984375, + ], + Float32Array [ + 2727.296875, + -5766.8095703125, + ], + ], + }, + ], + "sky": { + "dayBrightness": 1, + "dayHazeBottom": 0, + "dayHazeDensity": 0, + "dayHazeFalloff": 16, + "dayLightIntensity": 1, + "dayStarDensity": 0, + "flags": 0, + "nightBrightness": 1, + "nightHazeBottom": 0, + "nightHazeDensity": 0, + "nightHazeFalloff": 16, + "nightLightIntensity": 1, + "nightStarDensity": 0, + "verticalOffset": 0, + }, + "skyCards": { + "cards": [], + }, + "spawns": {}, + "type": 5, + "water": [ + { + "animAmplitude": 0, + "animChoppiness": 0, + "animWind": Float32Array [ + -90, + -30, + ], + "bumpAmount": 300, + "bumpAngle0": 0, + "bumpAngle1": 40, + "bumpScale0": 0.10000000149011612, + "bumpScale1": 0.10000000149011612, + "bumpSpeed0": 1, + "bumpSpeed1": 1, + "bumpTile0": 1.7999999523162842, + "bumpTile1": 2.5999999046325684, + "constantTokens": [], + "constantValues": [], + "depthAttenuation": 200, + "distortAmount": 0.15000000596046448, + "foamColor0": Uint8Array [ + 51, + 126, + 174, + 38, + ], + "foamColor1": Uint8Array [ + 255, + 255, + 255, + 191, + ], + "foamDepthAttenuation": 0.8999999761581421, + "foamDissolve": 0.949999988079071, + "foamSpawn": 0.5, + "materialFilename": 0, + "patternAngle": 0, + "patternColor": Uint8Array [ + 255, + 255, + 255, + 0, + ], + "patternEdge": 1, + "patternSpeed": 1, + "patternTile": 1.7999999523162842, + "surfaceDeepColor": Uint8Array [ + 50, + 16, + 9, + 0, + ], + "surfaceFresnel": 2.5, + "surfaceShallowColor": Uint8Array [ + 190, + 168, + 103, + 0, + ], + "textureFilenames": [], + "waterFlags": 1, + }, + { + "animAmplitude": 0, + "animChoppiness": 0, + "animWind": Float32Array [ + -90, + -30, + ], + "bumpAmount": 300, + "bumpAngle0": 0, + "bumpAngle1": 40, + "bumpScale0": 0.10000000149011612, + "bumpScale1": 0.10000000149011612, + "bumpSpeed0": 1, + "bumpSpeed1": 1, + "bumpTile0": 1.7999999523162842, + "bumpTile1": 2.5999999046325684, + "constantTokens": [], + "constantValues": [], + "depthAttenuation": 200, + "distortAmount": 0.15000000596046448, + "foamColor0": Uint8Array [ + 51, + 126, + 174, + 38, + ], + "foamColor1": Uint8Array [ + 255, + 255, + 255, + 191, + ], + "foamDepthAttenuation": 0.8999999761581421, + "foamDissolve": 0.949999988079071, + "foamSpawn": 0.5, + "materialFilename": 0, + "patternAngle": 0, + "patternColor": Uint8Array [ + 255, + 255, + 255, + 0, + ], + "patternEdge": 1, + "patternSpeed": 1, + "patternTile": 1.7999999523162842, + "surfaceDeepColor": Uint8Array [ + 50, + 16, + 9, + 0, + ], + "surfaceFresnel": 2.5, + "surfaceShallowColor": Uint8Array [ + 190, + 168, + 103, + 0, + ], + "textureFilenames": [], + "waterFlags": 1, + }, + { + "animAmplitude": 0, + "animChoppiness": 0, + "animWind": Float32Array [ + -90, + -30, + ], + "bumpAmount": 300, + "bumpAngle0": 0, + "bumpAngle1": 40, + "bumpScale0": 0.10000000149011612, + "bumpScale1": 0.10000000149011612, + "bumpSpeed0": 1, + "bumpSpeed1": 1, + "bumpTile0": 1.7999999523162842, + "bumpTile1": 2.5999999046325684, + "constantTokens": [], + "constantValues": [], + "depthAttenuation": 200, + "distortAmount": 0.15000000596046448, + "foamColor0": Uint8Array [ + 51, + 126, + 174, + 38, + ], + "foamColor1": Uint8Array [ + 255, + 255, + 255, + 191, + ], + "foamDepthAttenuation": 0.8999999761581421, + "foamDissolve": 0.949999988079071, + "foamSpawn": 0.5, + "materialFilename": 0, + "patternAngle": 0, + "patternColor": Uint8Array [ + 255, + 255, + 255, + 0, + ], + "patternEdge": 1, + "patternSpeed": 1, + "patternTile": 1.7999999523162842, + "surfaceDeepColor": Uint8Array [ + 50, + 16, + 9, + 0, + ], + "surfaceFresnel": 2.5, + "surfaceShallowColor": Uint8Array [ + 190, + 168, + 103, + 0, + ], + "textureFilenames": [], + "waterFlags": 1, + }, + ], + "wind": [ + { + "azimuth": 0, + "elevation": 0, + "gust": 0, + "gustFreq": 0, + "gustSpeed": 0, + "noise": 0, + "speed": 0, + }, + { + "azimuth": 0, + "elevation": 0, + "gust": 0, + "gustFreq": 0, + "gustSpeed": 0, + "noise": 0, + "speed": 0, + }, + { + "azimuth": 0, + "elevation": 0, + "gust": 0, + "gustFreq": 0, + "gustSpeed": 0, + "noise": 0, + "speed": 0, + }, + ], + }, + { + "audio": [], + "bindTarget": 0n, + "clouds": { + "layers": [], + }, + "coloredLightRings": [], + "effect": [ + { + "clutTexturePath": 0, + "ext": {}, + "flags": 0, + "focalDepth": 6000, + "focalRange": 4000, + "glow": Uint8Array [ + 0, + 98, + 97, + 0, + ], + "glowAmplify": 0.4000000059604645, + "glowLevel": Uint8Array [ + 76, + 76, + 76, + 0, + ], + "saturation": 1, + "ssaoAmount": 3, + "ssaoBrighten": 0.20000000298023224, + "ssaoContrast": 1, + "ssaoSunScale": 0.5, + "tintAmount": 0, + "tintColor": Uint8Array [ + 0, + 0, + 0, + 0, + ], + "tintFocus": 0, + "tintTargetColor": Uint8Array [ + 0, + 0, + 0, + 0, + ], + }, + { + "clutTexturePath": 0, + "ext": {}, + "flags": 0, + "focalDepth": 6000, + "focalRange": 4000, + "glow": Uint8Array [ + 0, + 98, + 97, + 0, + ], + "glowAmplify": 0.4000000059604645, + "glowLevel": Uint8Array [ + 76, + 76, + 76, + 0, + ], + "saturation": 1, + "ssaoAmount": 3, + "ssaoBrighten": 0.20000000298023224, + "ssaoContrast": 1, + "ssaoSunScale": 0.5, + "tintAmount": 0, + "tintColor": Uint8Array [ + 0, + 0, + 0, + 0, + ], + "tintFocus": 0, + "tintTargetColor": Uint8Array [ + 0, + 0, + 0, + 0, + ], + }, + { + "clutTexturePath": 0, + "ext": {}, + "flags": 0, + "focalDepth": 6000, + "focalRange": 4000, + "glow": Uint8Array [ + 0, + 0, + 0, + 0, + ], + "glowAmplify": 0, + "glowLevel": Uint8Array [ + 0, + 0, + 0, + 0, + ], + "saturation": 1, + "ssaoAmount": 3, + "ssaoBrighten": 0.20000000298023224, + "ssaoContrast": 1, + "ssaoSunScale": 0.5, + "tintAmount": 0, + "tintColor": Uint8Array [ + 255, + 255, + 255, + 255, + ], + "tintFocus": 0, + "tintTargetColor": Uint8Array [ + 255, + 255, + 255, + 0, + ], + }, + ], + "ext": { + "brightMax": 0.5, + "brightMin": 0.30000001192092896, + "brightScale": 1, + "brightTime": 2.5, + "darkCoeff": 1.2000000476837158, + "darkExp": 0.800000011920929, + "darkMax": 0.30000001192092896, + "darkMin": 0.10000000149011612, + "darkScale": 1, + "dimTime": 5, + "ext2": {}, + "waterReflectionParams": Float32Array [ + 0, + 0, + 0, + 0, + ], + }, + "flags": 1, + "guid": 1856510844286829069n, + "haze": [ + { + "depthCue": 0.00041099998634308577, + "distRange": Float32Array [ + 86.33099365234375, + 2014.388427734375, + ], + "farColor": Uint8Array [ + 21, + 60, + 159, + 255, + ], + "heightColor": Uint8Array [ + 38, + 74, + 115, + 255, + ], + "heightRange": Float32Array [ + -34.73039245605469, + 140.40118408203125, + ], + "nearColor": Uint8Array [ + 15, + 165, + 19, + 255, + ], + "sunDirRange": Float32Array [ + 0, + 0, + ], + }, + { + "depthCue": 0.00041099998634308577, + "distRange": Float32Array [ + 86.33099365234375, + 2014.388427734375, + ], + "farColor": Uint8Array [ + 21, + 60, + 159, + 255, + ], + "heightColor": Uint8Array [ + 38, + 74, + 115, + 255, + ], + "heightRange": Float32Array [ + -34.73039245605469, + 140.40118408203125, + ], + "nearColor": Uint8Array [ + 15, + 165, + 19, + 255, + ], + "sunDirRange": Float32Array [ + 0, + 0, + ], + }, + { + "depthCue": 0, + "distRange": Float32Array [ + 0, + 0, + ], + "farColor": Uint8Array [ + 0, + 0, + 0, + 255, + ], + "heightColor": Uint8Array [ + 0, + 0, + 0, + 255, + ], + "heightRange": Float32Array [ + 0, + 0, + ], + "nearColor": Uint8Array [ + 0, + 0, + 0, + 255, + ], + "sunDirRange": Float32Array [ + 0, + 0, + ], + }, + ], + "lighting": [ + { + "backlightColor": Uint8Array [ + 255, + 255, + 255, + ], + "backlightIntensity": 1, + "lights": [ + { + "color": Uint8Array [ + 191, + 248, + 255, + ], + "direction": Float32Array [ + 0.7071067690849304, + 0, + 0.7071067690849304, + ], + "intensity": 0.5, + }, + { + "color": Uint8Array [ + 255, + 199, + 165, + ], + "direction": Float32Array [ + -0.7071067690849304, + -0.0000012868819112554775, + -0.7071067690849304, + ], + "intensity": 0.029605263844132423, + }, + { + "color": Uint8Array [ + 255, + 221, + 191, + ], + "direction": Float32Array [ + -9.099629210140847e-7, + 1.6560650420438527e-12, + 1, + ], + "intensity": 0.003289473708719015, + }, + { + "color": Uint8Array [ + 207, + 255, + 191, + ], + "direction": Float32Array [ + -9.099629210140847e-7, + 1.6560650420438527e-12, + -1, + ], + "intensity": 0, + }, + { + "color": Uint8Array [ + 216, + 22, + 200, + ], + "direction": Float32Array [ + -0.7071067690849304, + -0.0000012868819112554775, + 0.7071067690849304, + ], + "intensity": 0.35855263471603394, + }, + { + "color": Uint8Array [ + 255, + 190, + 199, + ], + "direction": Float32Array [ + -4.371138828673793e-8, + 1, + 0, + ], + "intensity": 0, + }, + { + "color": Uint8Array [ + 255, + 201, + 191, + ], + "direction": Float32Array [ + 0.7071067690849304, + 0, + -0.7071067690849304, + ], + "intensity": 0, + }, + { + "color": Uint8Array [ + 255, + 190, + 199, + ], + "direction": Float32Array [ + -4.371138828673793e-8, + -1, + 0, + ], + "intensity": 0, + }, + ], + "shadowInfluence": 0, + }, + { + "backlightColor": Uint8Array [ + 255, + 255, + 255, + ], + "backlightIntensity": 1, + "lights": [ + { + "color": Uint8Array [ + 191, + 248, + 255, + ], + "direction": Float32Array [ + 0.7071067690849304, + 0, + 0.7071067690849304, + ], + "intensity": 0.5, + }, + { + "color": Uint8Array [ + 255, + 199, + 165, + ], + "direction": Float32Array [ + -0.7071067690849304, + -0.0000012868819112554775, + -0.7071067690849304, + ], + "intensity": 0.029605263844132423, + }, + { + "color": Uint8Array [ + 255, + 221, + 191, + ], + "direction": Float32Array [ + -9.099629210140847e-7, + 1.6560650420438527e-12, + 1, + ], + "intensity": 0.003289473708719015, + }, + { + "color": Uint8Array [ + 207, + 255, + 191, + ], + "direction": Float32Array [ + -9.099629210140847e-7, + 1.6560650420438527e-12, + -1, + ], + "intensity": 0, + }, + { + "color": Uint8Array [ + 216, + 22, + 200, + ], + "direction": Float32Array [ + -0.7071067690849304, + -0.0000012868819112554775, + 0.7071067690849304, + ], + "intensity": 0.35855263471603394, + }, + { + "color": Uint8Array [ + 255, + 190, + 199, + ], + "direction": Float32Array [ + -4.371138828673793e-8, + 1, + 0, + ], + "intensity": 0, + }, + { + "color": Uint8Array [ + 255, + 201, + 191, + ], + "direction": Float32Array [ + 0.7071067690849304, + 0, + -0.7071067690849304, + ], + "intensity": 0, + }, + { + "color": Uint8Array [ + 255, + 190, + 199, + ], + "direction": Float32Array [ + -4.371138828673793e-8, + -1, + 0, + ], + "intensity": 0, + }, + ], + "shadowInfluence": 0, + }, + { + "backlightColor": Uint8Array [ + 0, + 0, + 0, + ], + "backlightIntensity": 0, + "lights": [ + { + "color": Uint8Array [ + 255, + 233, + 192, + ], + "direction": Float32Array [ + 0.7071067690849304, + 0, + 0.7071067690849304, + ], + "intensity": 1.2999999523162842, + }, + { + "color": Uint8Array [ + 124, + 172, + 248, + ], + "direction": Float32Array [ + -0.7071067690849304, + -0.0000012868819112554775, + -0.7071067690849304, + ], + "intensity": 0.30000001192092896, + }, + { + "color": Uint8Array [ + 191, + 221, + 255, + ], + "direction": Float32Array [ + 0.29848748445510864, + 0.9186500906944275, + 0.258819043636322, + ], + "intensity": 0.10000000149011612, + }, + { + "color": Uint8Array [ + 188, + 204, + 253, + ], + "direction": Float32Array [ + -0.7814504504203796, + 0.5677568912506104, + 0.258819043636322, + ], + "intensity": 0.10000000149011612, + }, + { + "color": Uint8Array [ + 199, + 190, + 255, + ], + "direction": Float32Array [ + -0.8824164271354675, + 0.39287903904914856, + 0.25881901383399963, + ], + "intensity": 0.10000000149011612, + }, + { + "color": Uint8Array [ + 189, + 222, + 255, + ], + "direction": Float32Array [ + 0.2984875440597534, + -0.9186500310897827, + 0.258819043636322, + ], + "intensity": 0.10000000149011612, + }, + { + "color": Uint8Array [ + 204, + 237, + 255, + ], + "direction": Float32Array [ + -9.099629210140847e-7, + 1.6560650420438527e-12, + 1, + ], + "intensity": 0.30000001192092896, + }, + { + "color": Uint8Array [ + 168, + 254, + 189, + ], + "direction": Float32Array [ + -9.099629210140847e-7, + 1.6560650420438527e-12, + -1, + ], + "intensity": 0.15000000596046448, + }, + ], + "shadowInfluence": 0, + }, + ], + "lightingCharGroups": [], + "name": "", + "nightMods": Uint8Array [ + 255, + 255, + 255, + 133, + ], + "particleFieldCutouts": [], + "particleFields": [ + { + "altitude": 0, + "angle": Float32Array [ + 0, + 0, + ], + "clusterCount": 20, + "clustering": Float32Array [ + 0, + 0, + ], + "depth": 0, + "deviation": 0, + "deviationSpeed": Float32Array [ + 1, + 1, + ], + "extent": 2097, + "fade": 50, + "fieldDirection": Float32Array [ + 0, + 0, + 1, + ], + "flags": 70, + "lifetime": Float32Array [ + 0, + 0, + ], + "name": "Drops", + "opacity": Float32Array [ + 1, + 1, + ], + "particleCount": 10, + "period": Float32Array [ + 0, + 0, + ], + "reserved": 0, + "rotation": Float32Array [ + 0, + 0, + ], + "scaleX": Float32Array [ + 6.89881706237793, + 6.89881706237793, + ], + "scaleY": Float32Array [ + 15.466147422790527, + 15.466147422790527, + ], + "seed": 197854, + "speed": Float32Array [ + 1, + 1, + ], + "texColRow": Uint32Array [ + 1, + 1, + ], + "texFPS": 0, + "texPath": 188556, + "type": 0, + }, + { + "altitude": 0, + "angle": Float32Array [ + 0, + 0, + ], + "clusterCount": 20, + "clustering": Float32Array [ + 0, + 0, + ], + "depth": 0, + "deviation": 0, + "deviationSpeed": Float32Array [ + 0.30000001192092896, + 0.33000001311302185, + ], + "extent": 2000, + "fade": 50, + "fieldDirection": Float32Array [ + 0, + 0, + 1, + ], + "flags": 71, + "lifetime": Float32Array [ + 0, + 0, + ], + "name": "Posion", + "opacity": Float32Array [ + 0.09971911460161209, + 0.20505620539188385, + ], + "particleCount": 100, + "period": Float32Array [ + 0, + 0, + ], + "reserved": 0, + "rotation": Float32Array [ + 0, + 0, + ], + "scaleX": Float32Array [ + 87.09464263916016, + 100, + ], + "scaleY": Float32Array [ + 1, + 1, + ], + "seed": 197854, + "speed": Float32Array [ + 0.028409093618392944, + 0.13636362552642822, + ], + "texColRow": Uint32Array [ + 4, + 4, + ], + "texFPS": 0, + "texPath": 187547, + "type": 2, + }, + ], + "shapeArray": [ + { + "center": Float32Array [ + 6582.169921875, + -15536.6552734375, + -14819.34375, + ], + "fadeHorizInner": 0, + "fadeHorizOuter": 0, + "fadeVertical": 0, + "height": 2420.7734375, + "shapeType": 2, + "vertexArray": [ + Float32Array [ + 3558.865234375, + -14097.548828125, + ], + Float32Array [ + 7548.87109375, + -12683.66796875, + ], + Float32Array [ + 9605.474609375, + -17107.591796875, + ], + Float32Array [ + 8365.548828125, + -18389.642578125, + ], + Float32Array [ + 4354.59814453125, + -18232.431640625, + ], + ], + }, + ], + "sky": {}, + "skyCards": { + "cards": [], + }, + "spawns": {}, + "type": 5, + "water": [], + "wind": [], + }, + { + "audio": [], + "bindTarget": 0n, + "clouds": { + "layers": [], + }, + "coloredLightRings": [], + "effect": [ + { + "clutTexturePath": 0, + "ext": {}, + "flags": 0, + "focalDepth": 6000, + "focalRange": 4000, + "glow": Uint8Array [ + 0, + 98, + 97, + 0, + ], + "glowAmplify": 0.4000000059604645, + "glowLevel": Uint8Array [ + 76, + 76, + 76, + 0, + ], + "saturation": 1, + "ssaoAmount": 3, + "ssaoBrighten": 0.20000000298023224, + "ssaoContrast": 1, + "ssaoSunScale": 0.5, + "tintAmount": 0, + "tintColor": Uint8Array [ + 0, + 0, + 0, + 0, + ], + "tintFocus": 0, + "tintTargetColor": Uint8Array [ + 0, + 0, + 0, + 0, + ], + }, + { + "clutTexturePath": 0, + "ext": {}, + "flags": 0, + "focalDepth": 6000, + "focalRange": 4000, + "glow": Uint8Array [ + 0, + 98, + 97, + 0, + ], + "glowAmplify": 0.4000000059604645, + "glowLevel": Uint8Array [ + 76, + 76, + 76, + 0, + ], + "saturation": 1, + "ssaoAmount": 3, + "ssaoBrighten": 0.20000000298023224, + "ssaoContrast": 1, + "ssaoSunScale": 0.5, + "tintAmount": 0, + "tintColor": Uint8Array [ + 0, + 0, + 0, + 0, + ], + "tintFocus": 0, + "tintTargetColor": Uint8Array [ + 0, + 0, + 0, + 0, + ], + }, + { + "clutTexturePath": 0, + "ext": {}, + "flags": 0, + "focalDepth": 6000, + "focalRange": 4000, + "glow": Uint8Array [ + 0, + 0, + 0, + 0, + ], + "glowAmplify": 0, + "glowLevel": Uint8Array [ + 0, + 0, + 0, + 0, + ], + "saturation": 1, + "ssaoAmount": 3, + "ssaoBrighten": 0.20000000298023224, + "ssaoContrast": 1, + "ssaoSunScale": 0.5, + "tintAmount": 0, + "tintColor": Uint8Array [ + 255, + 255, + 255, + 255, + ], + "tintFocus": 0, + "tintTargetColor": Uint8Array [ + 255, + 255, + 255, + 0, + ], + }, + ], + "ext": { + "brightMax": 0.5, + "brightMin": 0.30000001192092896, + "brightScale": 1, + "brightTime": 2.5, + "darkCoeff": 1.2000000476837158, + "darkExp": 0.800000011920929, + "darkMax": 0.30000001192092896, + "darkMin": 0.10000000149011612, + "darkScale": 1, + "dimTime": 5, + "ext2": {}, + "waterReflectionParams": Float32Array [ + 0, + 0, + 0, + 0, + ], + }, + "flags": 0, + "guid": 1856513799224328711n, + "haze": [ + { + "depthCue": 0.00041099998634308577, + "distRange": Float32Array [ + 86.33099365234375, + 2014.388427734375, + ], + "farColor": Uint8Array [ + 21, + 60, + 159, + 255, + ], + "heightColor": Uint8Array [ + 38, + 74, + 115, + 255, + ], + "heightRange": Float32Array [ + -34.73039245605469, + 140.40118408203125, + ], + "nearColor": Uint8Array [ + 15, + 165, + 19, + 255, + ], + "sunDirRange": Float32Array [ + 0, + 0, + ], + }, + { + "depthCue": 0.00041099998634308577, + "distRange": Float32Array [ + 86.33099365234375, + 2014.388427734375, + ], + "farColor": Uint8Array [ + 21, + 60, + 159, + 255, + ], + "heightColor": Uint8Array [ + 38, + 74, + 115, + 255, + ], + "heightRange": Float32Array [ + -34.73039245605469, + 140.40118408203125, + ], + "nearColor": Uint8Array [ + 15, + 165, + 19, + 255, + ], + "sunDirRange": Float32Array [ + 0, + 0, + ], + }, + { + "depthCue": 0, + "distRange": Float32Array [ + 0, + 0, + ], + "farColor": Uint8Array [ + 0, + 0, + 0, + 255, + ], + "heightColor": Uint8Array [ + 0, + 0, + 0, + 255, + ], + "heightRange": Float32Array [ + 0, + 0, + ], + "nearColor": Uint8Array [ + 0, + 0, + 0, + 255, + ], + "sunDirRange": Float32Array [ + 0, + 0, + ], + }, + ], + "lighting": [ + { + "backlightColor": Uint8Array [ + 255, + 255, + 255, + ], + "backlightIntensity": 1, + "lights": [ + { + "color": Uint8Array [ + 191, + 248, + 255, + ], + "direction": Float32Array [ + 0.7071067690849304, + 0, + 0.7071067690849304, + ], + "intensity": 0.5, + }, + { + "color": Uint8Array [ + 255, + 199, + 165, + ], + "direction": Float32Array [ + -0.7071067690849304, + -0.0000012868819112554775, + -0.7071067690849304, + ], + "intensity": 0.029604999348521233, + }, + { + "color": Uint8Array [ + 255, + 221, + 191, + ], + "direction": Float32Array [ + -0.0000010291722674082848, + -1.8730171493647196e-12, + 1, + ], + "intensity": 0.0032889998983591795, + }, + { + "color": Uint8Array [ + 207, + 255, + 191, + ], + "direction": Float32Array [ + -0.0000010291722674082848, + -1.8730171493647196e-12, + -1, + ], + "intensity": 0, + }, + { + "color": Uint8Array [ + 216, + 22, + 200, + ], + "direction": Float32Array [ + -0.7071067690849304, + -0.0000012868819112554775, + 0.7071067690849304, + ], + "intensity": 0.3585529923439026, + }, + { + "color": Uint8Array [ + 255, + 190, + 199, + ], + "direction": Float32Array [ + -4.371138828673793e-8, + 1, + 0, + ], + "intensity": 0, + }, + { + "color": Uint8Array [ + 255, + 201, + 191, + ], + "direction": Float32Array [ + 0.7071067690849304, + 0, + -0.7071067690849304, + ], + "intensity": 0, + }, + { + "color": Uint8Array [ + 255, + 190, + 199, + ], + "direction": Float32Array [ + -4.371138828673793e-8, + -1, + 0, + ], + "intensity": 0, + }, + ], + "shadowInfluence": 0, + }, + { + "backlightColor": Uint8Array [ + 255, + 255, + 255, + ], + "backlightIntensity": 1, + "lights": [ + { + "color": Uint8Array [ + 191, + 248, + 255, + ], + "direction": Float32Array [ + 0.7071067690849304, + 0, + 0.7071067690849304, + ], + "intensity": 0.5, + }, + { + "color": Uint8Array [ + 255, + 199, + 165, + ], + "direction": Float32Array [ + -0.7071067690849304, + -0.0000012868819112554775, + -0.7071067690849304, + ], + "intensity": 0.029604999348521233, + }, + { + "color": Uint8Array [ + 255, + 221, + 191, + ], + "direction": Float32Array [ + -0.0000010291722674082848, + -1.8730171493647196e-12, + 1, + ], + "intensity": 0.0032889998983591795, + }, + { + "color": Uint8Array [ + 207, + 255, + 191, + ], + "direction": Float32Array [ + -0.0000010291722674082848, + -1.8730171493647196e-12, + -1, + ], + "intensity": 0, + }, + { + "color": Uint8Array [ + 216, + 22, + 200, + ], + "direction": Float32Array [ + -0.7071067690849304, + -0.0000012868819112554775, + 0.7071067690849304, + ], + "intensity": 0.3585529923439026, + }, + { + "color": Uint8Array [ + 255, + 190, + 199, + ], + "direction": Float32Array [ + -4.371138828673793e-8, + 1, + 0, + ], + "intensity": 0, + }, + { + "color": Uint8Array [ + 255, + 201, + 191, + ], + "direction": Float32Array [ + 0.7071067690849304, + 0, + -0.7071067690849304, + ], + "intensity": 0, + }, + { + "color": Uint8Array [ + 255, + 190, + 199, + ], + "direction": Float32Array [ + -4.371138828673793e-8, + -1, + 0, + ], + "intensity": 0, + }, + ], + "shadowInfluence": 0, + }, + { + "backlightColor": Uint8Array [ + 0, + 0, + 0, + ], + "backlightIntensity": 0, + "lights": [ + { + "color": Uint8Array [ + 255, + 233, + 192, + ], + "direction": Float32Array [ + 0.7071067690849304, + 0, + 0.7071067690849304, + ], + "intensity": 1.2999999523162842, + }, + { + "color": Uint8Array [ + 124, + 172, + 248, + ], + "direction": Float32Array [ + -0.7071067690849304, + -0.0000012868819112554775, + -0.7071067690849304, + ], + "intensity": 0.30000001192092896, + }, + { + "color": Uint8Array [ + 191, + 221, + 255, + ], + "direction": Float32Array [ + 0.29848748445510864, + 0.9186500906944275, + 0.258819043636322, + ], + "intensity": 0.10000000149011612, + }, + { + "color": Uint8Array [ + 188, + 204, + 253, + ], + "direction": Float32Array [ + -0.7814504504203796, + 0.5677568912506104, + 0.258819043636322, + ], + "intensity": 0.10000000149011612, + }, + { + "color": Uint8Array [ + 199, + 190, + 255, + ], + "direction": Float32Array [ + -0.8824164271354675, + 0.39287903904914856, + 0.25881901383399963, + ], + "intensity": 0.10000000149011612, + }, + { + "color": Uint8Array [ + 189, + 222, + 255, + ], + "direction": Float32Array [ + 0.2984875440597534, + -0.9186500310897827, + 0.258819043636322, + ], + "intensity": 0.10000000149011612, + }, + { + "color": Uint8Array [ + 204, + 237, + 255, + ], + "direction": Float32Array [ + -9.099629210140847e-7, + 1.6560650420438527e-12, + 1, + ], + "intensity": 0.30000001192092896, + }, + { + "color": Uint8Array [ + 168, + 254, + 189, + ], + "direction": Float32Array [ + -9.099629210140847e-7, + 1.6560650420438527e-12, + -1, + ], + "intensity": 0.15000000596046448, + }, + ], + "shadowInfluence": 0, + }, + ], + "lightingCharGroups": [], + "name": "", + "nightMods": Uint8Array [ + 255, + 255, + 255, + 133, + ], + "particleFieldCutouts": [], + "particleFields": [ + { + "altitude": 0, + "angle": Float32Array [ + 0, + 0, + ], + "clusterCount": 20, + "clustering": Float32Array [ + 0, + 0, + ], + "depth": 0, + "deviation": 0, + "deviationSpeed": Float32Array [ + 1, + 1, + ], + "extent": 2097, + "fade": 50, + "fieldDirection": Float32Array [ + 0, + 0, + 1, + ], + "flags": 70, + "lifetime": Float32Array [ + 0, + 0, + ], + "name": "Drops", + "opacity": Float32Array [ + 1, + 1, + ], + "particleCount": 10, + "period": Float32Array [ + 0, + 0, + ], + "reserved": 0, + "rotation": Float32Array [ + 0, + 0, + ], + "scaleX": Float32Array [ + 6.89881706237793, + 6.89881706237793, + ], + "scaleY": Float32Array [ + 15.466147422790527, + 15.466147422790527, + ], + "seed": 197854, + "speed": Float32Array [ + 1, + 1, + ], + "texColRow": Uint32Array [ + 1, + 1, + ], + "texFPS": 0, + "texPath": 188556, + "type": 0, + }, + { + "altitude": 0, + "angle": Float32Array [ + 0, + 0, + ], + "clusterCount": 20, + "clustering": Float32Array [ + 0, + 0, + ], + "depth": 0, + "deviation": 0, + "deviationSpeed": Float32Array [ + 0.30000001192092896, + 0.33000001311302185, + ], + "extent": 2000, + "fade": 50, + "fieldDirection": Float32Array [ + 0, + 0, + 1, + ], + "flags": 71, + "lifetime": Float32Array [ + 0, + 0, + ], + "name": "Posion", + "opacity": Float32Array [ + 0.09971900284290314, + 0.20505599677562714, + ], + "particleCount": 100, + "period": Float32Array [ + 0, + 0, + ], + "reserved": 0, + "rotation": Float32Array [ + 0, + 0, + ], + "scaleX": Float32Array [ + 87.09464263916016, + 100, + ], + "scaleY": Float32Array [ + 1, + 1, + ], + "seed": 197854, + "speed": Float32Array [ + 0.028409000486135483, + 0.13636399805545807, + ], + "texColRow": Uint32Array [ + 4, + 4, + ], + "texFPS": 0, + "texPath": 187547, + "type": 2, + }, + ], + "shapeArray": [ + { + "center": Float32Array [ + -7414.845703125, + 3872.58447265625, + -14456.609375, + ], + "fadeHorizInner": 0, + "fadeHorizOuter": 0, + "fadeVertical": 0, + "height": 2103.9296875, + "shapeType": 2, + "vertexArray": [ + Float32Array [ + -4589.29833984375, + 6563.7509765625, + ], + Float32Array [ + -5205.28759765625, + 1416.083984375, + ], + Float32Array [ + -9611.7666015625, + 1181.41796875, + ], + Float32Array [ + -10240.3935546875, + 6000.72021484375, + ], + ], + }, + ], + "sky": { + "dayBrightness": 1, + "dayHazeBottom": 0, + "dayHazeDensity": 0, + "dayHazeFalloff": 16, + "dayLightIntensity": 1, + "dayStarDensity": 0, + "flags": 0, + "nightBrightness": 1, + "nightHazeBottom": 0, + "nightHazeDensity": 0, + "nightHazeFalloff": 16, + "nightLightIntensity": 1, + "nightStarDensity": 0, + "verticalOffset": 0, + }, + "skyCards": { + "cards": [], + }, + "spawns": {}, + "type": 5, + "water": [ + { + "animAmplitude": 0, + "animChoppiness": 0, + "animWind": Float32Array [ + -90, + -30, + ], + "bumpAmount": 300, + "bumpAngle0": 0, + "bumpAngle1": 40, + "bumpScale0": 0.10000000149011612, + "bumpScale1": 0.10000000149011612, + "bumpSpeed0": 1, + "bumpSpeed1": 1, + "bumpTile0": 1.7999999523162842, + "bumpTile1": 2.5999999046325684, + "constantTokens": [], + "constantValues": [], + "depthAttenuation": 200, + "distortAmount": 0.15000000596046448, + "foamColor0": Uint8Array [ + 51, + 126, + 174, + 38, + ], + "foamColor1": Uint8Array [ + 255, + 255, + 255, + 191, + ], + "foamDepthAttenuation": 0.8999999761581421, + "foamDissolve": 0.949999988079071, + "foamSpawn": 0.5, + "materialFilename": 0, + "patternAngle": 0, + "patternColor": Uint8Array [ + 255, + 255, + 255, + 0, + ], + "patternEdge": 1, + "patternSpeed": 1, + "patternTile": 1.7999999523162842, + "surfaceDeepColor": Uint8Array [ + 50, + 16, + 9, + 0, + ], + "surfaceFresnel": 2.5, + "surfaceShallowColor": Uint8Array [ + 190, + 168, + 103, + 0, + ], + "textureFilenames": [], + "waterFlags": 1, + }, + { + "animAmplitude": 0, + "animChoppiness": 0, + "animWind": Float32Array [ + -90, + -30, + ], + "bumpAmount": 300, + "bumpAngle0": 0, + "bumpAngle1": 40, + "bumpScale0": 0.10000000149011612, + "bumpScale1": 0.10000000149011612, + "bumpSpeed0": 1, + "bumpSpeed1": 1, + "bumpTile0": 1.7999999523162842, + "bumpTile1": 2.5999999046325684, + "constantTokens": [], + "constantValues": [], + "depthAttenuation": 200, + "distortAmount": 0.15000000596046448, + "foamColor0": Uint8Array [ + 51, + 126, + 174, + 38, + ], + "foamColor1": Uint8Array [ + 255, + 255, + 255, + 191, + ], + "foamDepthAttenuation": 0.8999999761581421, + "foamDissolve": 0.949999988079071, + "foamSpawn": 0.5, + "materialFilename": 0, + "patternAngle": 0, + "patternColor": Uint8Array [ + 255, + 255, + 255, + 0, + ], + "patternEdge": 1, + "patternSpeed": 1, + "patternTile": 1.7999999523162842, + "surfaceDeepColor": Uint8Array [ + 50, + 16, + 9, + 0, + ], + "surfaceFresnel": 2.5, + "surfaceShallowColor": Uint8Array [ + 190, + 168, + 103, + 0, + ], + "textureFilenames": [], + "waterFlags": 1, + }, + { + "animAmplitude": 0, + "animChoppiness": 0, + "animWind": Float32Array [ + -90, + -30, + ], + "bumpAmount": 300, + "bumpAngle0": 0, + "bumpAngle1": 40, + "bumpScale0": 0.10000000149011612, + "bumpScale1": 0.10000000149011612, + "bumpSpeed0": 1, + "bumpSpeed1": 1, + "bumpTile0": 1.7999999523162842, + "bumpTile1": 2.5999999046325684, + "constantTokens": [], + "constantValues": [], + "depthAttenuation": 200, + "distortAmount": 0.15000000596046448, + "foamColor0": Uint8Array [ + 51, + 126, + 174, + 38, + ], + "foamColor1": Uint8Array [ + 255, + 255, + 255, + 191, + ], + "foamDepthAttenuation": 0.8999999761581421, + "foamDissolve": 0.949999988079071, + "foamSpawn": 0.5, + "materialFilename": 0, + "patternAngle": 0, + "patternColor": Uint8Array [ + 255, + 255, + 255, + 0, + ], + "patternEdge": 1, + "patternSpeed": 1, + "patternTile": 1.7999999523162842, + "surfaceDeepColor": Uint8Array [ + 50, + 16, + 9, + 0, + ], + "surfaceFresnel": 2.5, + "surfaceShallowColor": Uint8Array [ + 190, + 168, + 103, + 0, + ], + "textureFilenames": [], + "waterFlags": 1, + }, + ], + "wind": [ + { + "azimuth": 0, + "elevation": 0, + "gust": 0, + "gustFreq": 0, + "gustSpeed": 0, + "noise": 0, + "speed": 0, + }, + { + "azimuth": 0, + "elevation": 0, + "gust": 0, + "gustFreq": 0, + "gustSpeed": 0, + "noise": 0, + "speed": 0, + }, + { + "azimuth": 0, + "elevation": 0, + "gust": 0, + "gustFreq": 0, + "gustSpeed": 0, + "noise": 0, + "speed": 0, + }, + ], + }, + { + "audio": [], + "bindTarget": 1856555280018473494n, + "clouds": {}, + "coloredLightRings": [], + "effect": [], + "ext": { + "brightMax": 0.5, + "brightMin": 0.30000001192092896, + "brightScale": 1, + "brightTime": 2.5, + "darkCoeff": 1.2000000476837158, + "darkExp": 0.800000011920929, + "darkMax": 0.30000001192092896, + "darkMin": 0.10000000149011612, + "darkScale": 1, + "dimTime": 5, + "ext2": {}, + "waterReflectionParams": Float32Array [ + 0, + 0, + 0, + 0, + ], + }, + "flags": 0, + "guid": 1856509890804089355n, + "haze": [], + "lighting": [], + "lightingCharGroups": [], + "name": "", + "nightMods": Uint8Array [ + 255, + 255, + 255, + 133, + ], + "particleFieldCutouts": [], + "particleFields": [], + "shapeArray": [ + { + "center": Float32Array [ + 7501.9501953125, + -13324.162109375, + -17045.4375, + ], + "fadeHorizInner": 202.70269775390625, + "fadeHorizOuter": 101.35134887695312, + "fadeVertical": 0, + "height": 2078.6953125, + "shapeType": 2, + "vertexArray": [ + Float32Array [ + 11348.75390625, + -12766.654296875, + ], + Float32Array [ + 9841.6455078125, + -16351.54296875, + ], + Float32Array [ + 6877.55517578125, + -16915.830078125, + ], + Float32Array [ + 4520.96533203125, + -15616.6298828125, + ], + Float32Array [ + 3655.146240234375, + -13128.60546875, + ], + Float32Array [ + 4667.595703125, + -10875.6552734375, + ], + Float32Array [ + 6863.5908203125, + -9732.4951171875, + ], + Float32Array [ + 9718.986328125, + -9878.9296875, + ], + ], + }, + ], + "sky": {}, + "skyCards": { + "cards": [ + { + "day": { + "azimuth": -3.1322312355041504, + "brightness": 0.7683168053627014, + "density": 0.6336633563041687, + "ext": {}, + "hazeDensity": 0, + "latitude": 0.2787356376647949, + "lensFlare": {}, + "lightIntensity": 1, + "minHaze": 0.5511810183525085, + "scale": Float32Array [ + 23.850574493408203, + 19.080459594726562, + ], + "speed": 0, + "texture": 186349, + "textureUV": Float32Array [ + 1, + 0.6516720056533813, + 0.44175300002098083, + 0.7383180260658264, + ], + }, + "ext": {}, + "flags": 694558725, + "location": Float32Array [ + 0, + 0, + 0, + ], + "material": {}, + "name": "", + "night": { + "azimuth": -3.1102585792541504, + "brightness": 0.26138612627983093, + "density": 1, + "ext": {}, + "hazeDensity": 0, + "latitude": 0.28316831588745117, + "lensFlare": {}, + "lightIntensity": 1, + "minHaze": 0.5511810183525085, + "scale": Float32Array [ + 23.850574493408203, + 19.080459594726562, + ], + "speed": 0, + "texture": 186349, + "textureUV": Float32Array [ + 1, + 0.6516720056533813, + 0.44175300002098083, + 0.7383180260658264, + ], + }, + }, + { + "day": { + "azimuth": -3.1412336826324463, + "brightness": 2, + "density": 1, + "ext": {}, + "hazeDensity": 0, + "latitude": 0.30890804529190063, + "lensFlare": {}, + "lightIntensity": 1, + "minHaze": 0.5511810183525085, + "scale": Float32Array [ + 0.9900990128517151, + 0.7920792102813721, + ], + "speed": 0, + "texture": 186349, + "textureUV": Float32Array [ + 1, + 0.6516720056533813, + 0.44175300002098083, + 0.7383180260658264, + ], + }, + "ext": {}, + "flags": 694558727, + "location": Float32Array [ + 0, + 0, + 0, + ], + "material": {}, + "name": "", + "night": { + "azimuth": -3.1412336826324463, + "brightness": 2, + "density": 0, + "ext": {}, + "hazeDensity": 0, + "latitude": 0.30890804529190063, + "lensFlare": {}, + "lightIntensity": 1, + "minHaze": 0.5511810183525085, + "scale": Float32Array [ + 1.436781644821167, + 1.1494252681732178, + ], + "speed": 0, + "texture": 186349, + "textureUV": Float32Array [ + 1, + 0.6516720056533813, + 0.44175300002098083, + 0.7383180260658264, + ], + }, + }, + { + "day": { + "azimuth": -3.3969838619232178, + "brightness": 0.2385057508945465, + "density": 0.39470699429512024, + "ext": {}, + "hazeDensity": 0.3886969983577728, + "latitude": 0.17528735101222992, + "lensFlare": {}, + "lightIntensity": 2, + "minHaze": 0.6562860012054443, + "scale": Float32Array [ + 12.356321334838867, + 2.3258962631225586, + ], + "speed": 0.003811252536252141, + "texture": 190422, + "textureUV": Float32Array [ + 0, + 1, + 1, + 0.7951670289039612, + ], + }, + "ext": {}, + "flags": 560865285, + "location": Float32Array [ + 0, + 0, + 0, + ], + "material": {}, + "name": "", + "night": { + "azimuth": -3.3969838619232178, + "brightness": 0.2385057508945465, + "density": 0.39470699429512024, + "ext": {}, + "hazeDensity": 0.3886969983577728, + "latitude": 0.17528735101222992, + "lensFlare": {}, + "lightIntensity": 2, + "minHaze": 0.6562860012054443, + "scale": Float32Array [ + 12.356321334838867, + 2.3258962631225586, + ], + "speed": 0.003811252536252141, + "texture": 190422, + "textureUV": Float32Array [ + 0, + 1, + 1, + 0.7951670289039612, + ], + }, + }, + { + "day": { + "azimuth": -0.24371826648712158, + "brightness": 1.1487890481948853, + "density": 0.5166860222816467, + "ext": {}, + "hazeDensity": 0.3068050146102905, + "latitude": 0.09482758492231369, + "lensFlare": {}, + "lightIntensity": 1, + "minHaze": 0.6816610097885132, + "scale": Float32Array [ + 27.384614944458008, + 5.842050552368164, + ], + "speed": 0.006719828583300114, + "texture": 190422, + "textureUV": Float32Array [ + 0, + 1, + 1, + 0.7951670289039612, + ], + }, + "ext": {}, + "flags": 879914764, + "location": Float32Array [ + 0, + 0, + 0, + ], + "material": {}, + "name": "", + "night": { + "azimuth": -0.24371826648712158, + "brightness": 1.1487890481948853, + "density": 0.5166860222816467, + "ext": {}, + "hazeDensity": 0.3068050146102905, + "latitude": 0.09482758492231369, + "lensFlare": {}, + "lightIntensity": 1, + "minHaze": 0.6816610097885132, + "scale": Float32Array [ + 27.384614944458008, + 5.842050552368164, + ], + "speed": 0.006719828583300114, + "texture": 190422, + "textureUV": Float32Array [ + 0, + 1, + 1, + 0.7951670289039612, + ], + }, + }, + { + "day": { + "azimuth": -4.883838176727295, + "brightness": 0.9396551847457886, + "density": 0.37212643027305603, + "ext": {}, + "hazeDensity": 1, + "latitude": 0.23275862634181976, + "lensFlare": {}, + "lightIntensity": 1, + "minHaze": 0, + "scale": Float32Array [ + 11.392404556274414, + 4.0290207862854, + ], + "speed": 0.0028082740027457476, + "texture": 190422, + "textureUV": Float32Array [ + 0, + 1, + 0.5143839716911316, + 0.20828500390052795, + ], + }, + "ext": {}, + "flags": 896488192, + "location": Float32Array [ + 0, + 0, + 0, + ], + "material": {}, + "name": "", + "night": { + "azimuth": -4.883838176727295, + "brightness": 0.9396551847457886, + "density": 0.37212643027305603, + "ext": {}, + "hazeDensity": 1, + "latitude": 0.23275862634181976, + "lensFlare": {}, + "lightIntensity": 1, + "minHaze": 0, + "scale": Float32Array [ + 11.392404556274414, + 4.0290207862854, + ], + "speed": 0.0028082740027457476, + "texture": 190422, + "textureUV": Float32Array [ + 0, + 1, + 0.5143839716911316, + 0.20828500390052795, + ], + }, + }, + { + "day": { + "azimuth": -2.130230188369751, + "brightness": 1.09551203250885, + "density": 0.43153101205825806, + "ext": {}, + "hazeDensity": 0.4071510136127472, + "latitude": 0.3002873659133911, + "lensFlare": {}, + "lightIntensity": 1, + "minHaze": 0.6274510025978088, + "scale": Float32Array [ + 12.643678665161133, + 2.0434234142303467, + ], + "speed": 0.0048141381703317165, + "texture": 190422, + "textureUV": Float32Array [ + 0, + 1, + 1, + 0.7951670289039612, + ], + }, + "ext": {}, + "flags": 1030059276, + "location": Float32Array [ + 0, + 0, + 0, + ], + "material": {}, + "name": "", + "night": { + "azimuth": -2.130230188369751, + "brightness": 1.09551203250885, + "density": 0.43153101205825806, + "ext": {}, + "hazeDensity": 0.4071510136127472, + "latitude": 0.3002873659133911, + "lensFlare": {}, + "lightIntensity": 1, + "minHaze": 0.6274510025978088, + "scale": Float32Array [ + 12.643678665161133, + 2.0434234142303467, + ], + "speed": 0.0048141381703317165, + "texture": 190422, + "textureUV": Float32Array [ + 0, + 1, + 1, + 0.7951670289039612, + ], + }, + }, + { + "day": { + "azimuth": -3.9716813564300537, + "brightness": 1.0574712753295898, + "density": 0.6547759771347046, + "ext": {}, + "hazeDensity": 0, + "latitude": 0.3333333432674408, + "lensFlare": {}, + "lightIntensity": 2, + "minHaze": 0.6321839094161987, + "scale": Float32Array [ + 10.011507987976074, + 1.956272006034851, + ], + "speed": 0.0041120536625385284, + "texture": 190422, + "textureUV": Float32Array [ + 0, + 1, + 0.1990790069103241, + 0, + ], + }, + "ext": {}, + "flags": 538976264, + "location": Float32Array [ + 0, + 0, + 0, + ], + "material": {}, + "name": "", + "night": { + "azimuth": -3.9716813564300537, + "brightness": 1.0574712753295898, + "density": 0.6547759771347046, + "ext": {}, + "hazeDensity": 0, + "latitude": 0.3333333432674408, + "lensFlare": {}, + "lightIntensity": 2, + "minHaze": 0.6321839094161987, + "scale": Float32Array [ + 10.011507987976074, + 1.956272006034851, + ], + "speed": 0.0041120536625385284, + "texture": 190422, + "textureUV": Float32Array [ + 0, + 1, + 0.1990790069103241, + 0, + ], + }, + }, + { + "day": { + "azimuth": -3.1412336826324463, + "brightness": 2, + "density": 0, + "ext": {}, + "hazeDensity": 0, + "latitude": 0.30890804529190063, + "lensFlare": {}, + "lightIntensity": 1, + "minHaze": 0.5511810183525085, + "scale": Float32Array [ + 1.436781644821167, + 1.1494252681732178, + ], + "speed": 0, + "texture": 186349, + "textureUV": Float32Array [ + 1, + 0.6516720056533813, + 0.44175300002098083, + 0.7383180260658264, + ], + }, + "ext": {}, + "flags": 694558725, + "location": Float32Array [ + 0, + 0, + 0, + ], + "material": {}, + "name": "", + "night": { + "azimuth": -3.1412336826324463, + "brightness": 2, + "density": 1, + "ext": {}, + "hazeDensity": 0, + "latitude": 0.30890804529190063, + "lensFlare": {}, + "lightIntensity": 1, + "minHaze": 0.5511810183525085, + "scale": Float32Array [ + 1.436781644821167, + 1.1494252681732178, + ], + "speed": 0, + "texture": 186349, + "textureUV": Float32Array [ + 0.2653465270996094, + 0, + 0.4554455578327179, + 0.6772277355194092, + ], + }, + }, + ], + }, + "spawns": {}, + "type": 5, + "water": [], + "wind": [ + { + "azimuth": 0, + "elevation": 0, + "gust": 18, + "gustFreq": 19, + "gustSpeed": 128, + "noise": 6, + "speed": 12, + }, + { + "azimuth": 0, + "elevation": 0, + "gust": 0, + "gustFreq": 0, + "gustSpeed": 0, + "noise": 0, + "speed": 0, + }, + { + "azimuth": 0, + "elevation": 0, + "gust": 0, + "gustFreq": 0, + "gustSpeed": 0, + "noise": 0, + "speed": 0, + }, + ], + }, + { + "audio": [], + "bindTarget": 0n, + "clouds": {}, + "coloredLightRings": [], + "effect": [ + { + "clutTexturePath": 0, + "ext": {}, + "flags": 0, + "focalDepth": 6000, + "focalRange": 4000, + "glow": Uint8Array [ + 24, + 93, + 74, + 0, + ], + "glowAmplify": 0.4000000059604645, + "glowLevel": Uint8Array [ + 51, + 51, + 51, + 0, + ], + "saturation": 1, + "ssaoAmount": 3, + "ssaoBrighten": 0.20000000298023224, + "ssaoContrast": 1, + "ssaoSunScale": 0.5, + "tintAmount": 0, + "tintColor": Uint8Array [ + 0, + 0, + 0, + 0, + ], + "tintFocus": 0, + "tintTargetColor": Uint8Array [ + 0, + 0, + 0, + 0, + ], + }, + { + "clutTexturePath": 0, + "ext": {}, + "flags": 0, + "focalDepth": 6000, + "focalRange": 4000, + "glow": Uint8Array [ + 24, + 93, + 74, + 0, + ], + "glowAmplify": 0.4000000059604645, + "glowLevel": Uint8Array [ + 51, + 51, + 51, + 0, + ], + "saturation": 1, + "ssaoAmount": 3, + "ssaoBrighten": 0.20000000298023224, + "ssaoContrast": 1, + "ssaoSunScale": 0.5, + "tintAmount": 0, + "tintColor": Uint8Array [ + 0, + 0, + 0, + 0, + ], + "tintFocus": 0, + "tintTargetColor": Uint8Array [ + 0, + 0, + 0, + 0, + ], + }, + { + "clutTexturePath": 0, + "ext": {}, + "flags": 0, + "focalDepth": 6000, + "focalRange": 4000, + "glow": Uint8Array [ + 0, + 0, + 0, + 0, + ], + "glowAmplify": 0, + "glowLevel": Uint8Array [ + 0, + 0, + 0, + 0, + ], + "saturation": 1, + "ssaoAmount": 3, + "ssaoBrighten": 0.20000000298023224, + "ssaoContrast": 1, + "ssaoSunScale": 0.5, + "tintAmount": 0, + "tintColor": Uint8Array [ + 255, + 255, + 255, + 255, + ], + "tintFocus": 0, + "tintTargetColor": Uint8Array [ + 255, + 255, + 255, + 0, + ], + }, + ], + "ext": { + "brightMax": 0.5, + "brightMin": 0.30000001192092896, + "brightScale": 1, + "brightTime": 2.5, + "darkCoeff": 1.2000000476837158, + "darkExp": 0.800000011920929, + "darkMax": 0.30000001192092896, + "darkMin": 0.10000000149011612, + "darkScale": 1, + "dimTime": 5, + "ext2": {}, + "waterReflectionParams": Float32Array [ + 0, + 0, + 0, + 0, + ], + }, + "flags": 0, + "guid": 1856555280018473494n, + "haze": [ + { + "depthCue": 0.00041099998634308577, + "distRange": Float32Array [ + 115.10791778564453, + 2618.705078125, + ], + "farColor": Uint8Array [ + 138, + 159, + 56, + 255, + ], + "heightColor": Uint8Array [ + 38, + 74, + 115, + 255, + ], + "heightRange": Float32Array [ + -34.73039245605469, + 140.40118408203125, + ], + "nearColor": Uint8Array [ + 165, + 102, + 12, + 255, + ], + "sunDirRange": Float32Array [ + 0, + 0, + ], + }, + { + "depthCue": 0.00041099998634308577, + "distRange": Float32Array [ + 115.10791778564453, + 2618.705078125, + ], + "farColor": Uint8Array [ + 138, + 159, + 56, + 255, + ], + "heightColor": Uint8Array [ + 38, + 74, + 115, + 255, + ], + "heightRange": Float32Array [ + -34.73039245605469, + 140.40118408203125, + ], + "nearColor": Uint8Array [ + 165, + 102, + 12, + 255, + ], + "sunDirRange": Float32Array [ + 0, + 0, + ], + }, + { + "depthCue": 0, + "distRange": Float32Array [ + 0, + 0, + ], + "farColor": Uint8Array [ + 0, + 0, + 0, + 255, + ], + "heightColor": Uint8Array [ + 0, + 0, + 0, + 255, + ], + "heightRange": Float32Array [ + 0, + 0, + ], + "nearColor": Uint8Array [ + 0, + 0, + 0, + 255, + ], + "sunDirRange": Float32Array [ + 0, + 0, + ], + }, + ], + "lighting": [ + { + "backlightColor": Uint8Array [ + 255, + 255, + 255, + ], + "backlightIntensity": 1, + "lights": [ + { + "color": Uint8Array [ + 46, + 255, + 198, + ], + "direction": Float32Array [ + 0.7071067690849304, + 0, + 0.7071067690849304, + ], + "intensity": 0.5756579041481018, + }, + { + "color": Uint8Array [ + 165, + 255, + 190, + ], + "direction": Float32Array [ + -0.7071067690849304, + -0.0000012868819112554775, + -0.7071067690849304, + ], + "intensity": 0.22697368264198303, + }, + { + "color": Uint8Array [ + 255, + 221, + 191, + ], + "direction": Float32Array [ + -9.099629210140847e-7, + 1.6560650420438527e-12, + 1, + ], + "intensity": 0.30000001192092896, + }, + { + "color": Uint8Array [ + 207, + 255, + 191, + ], + "direction": Float32Array [ + -9.099629210140847e-7, + 1.6560650420438527e-12, + -1, + ], + "intensity": 0.25, + }, + { + "color": Uint8Array [ + 255, + 201, + 191, + ], + "direction": Float32Array [ + -0.7071067690849304, + -0.0000012868819112554775, + 0.7071067690849304, + ], + "intensity": 0.20000000298023224, + }, + { + "color": Uint8Array [ + 255, + 190, + 199, + ], + "direction": Float32Array [ + -4.371138828673793e-8, + 1, + 0, + ], + "intensity": 0.20000000298023224, + }, + { + "color": Uint8Array [ + 255, + 201, + 191, + ], + "direction": Float32Array [ + 0.7071067690849304, + 0, + -0.7071067690849304, + ], + "intensity": 0.20000000298023224, + }, + { + "color": Uint8Array [ + 255, + 190, + 199, + ], + "direction": Float32Array [ + -4.371138828673793e-8, + -1, + 0, + ], + "intensity": 0.20000000298023224, + }, + ], + "shadowInfluence": 0, + }, + { + "backlightColor": Uint8Array [ + 255, + 255, + 255, + ], + "backlightIntensity": 1, + "lights": [ + { + "color": Uint8Array [ + 46, + 255, + 198, + ], + "direction": Float32Array [ + 0.7071067690849304, + 0, + 0.7071067690849304, + ], + "intensity": 0.5756579041481018, + }, + { + "color": Uint8Array [ + 165, + 255, + 190, + ], + "direction": Float32Array [ + -0.7071067690849304, + -0.0000012868819112554775, + -0.7071067690849304, + ], + "intensity": 0.22697368264198303, + }, + { + "color": Uint8Array [ + 255, + 221, + 191, + ], + "direction": Float32Array [ + -9.099629210140847e-7, + 1.6560650420438527e-12, + 1, + ], + "intensity": 0.30000001192092896, + }, + { + "color": Uint8Array [ + 207, + 255, + 191, + ], + "direction": Float32Array [ + -9.099629210140847e-7, + 1.6560650420438527e-12, + -1, + ], + "intensity": 0.25, + }, + { + "color": Uint8Array [ + 255, + 201, + 191, + ], + "direction": Float32Array [ + -0.7071067690849304, + -0.0000012868819112554775, + 0.7071067690849304, + ], + "intensity": 0.20000000298023224, + }, + { + "color": Uint8Array [ + 255, + 190, + 199, + ], + "direction": Float32Array [ + -4.371138828673793e-8, + 1, + 0, + ], + "intensity": 0.20000000298023224, + }, + { + "color": Uint8Array [ + 255, + 201, + 191, + ], + "direction": Float32Array [ + 0.7071067690849304, + 0, + -0.7071067690849304, + ], + "intensity": 0.20000000298023224, + }, + { + "color": Uint8Array [ + 255, + 190, + 199, + ], + "direction": Float32Array [ + -4.371138828673793e-8, + -1, + 0, + ], + "intensity": 0.20000000298023224, + }, + ], + "shadowInfluence": 0, + }, + { + "backlightColor": Uint8Array [ + 0, + 0, + 0, + ], + "backlightIntensity": 0, + "lights": [ + { + "color": Uint8Array [ + 255, + 233, + 192, + ], + "direction": Float32Array [ + 0.7071067690849304, + 0, + 0.7071067690849304, + ], + "intensity": 1.2999999523162842, + }, + { + "color": Uint8Array [ + 124, + 172, + 248, + ], + "direction": Float32Array [ + -0.7071067690849304, + -0.0000012868819112554775, + -0.7071067690849304, + ], + "intensity": 0.30000001192092896, + }, + { + "color": Uint8Array [ + 191, + 221, + 255, + ], + "direction": Float32Array [ + 0.29848748445510864, + 0.9186500906944275, + 0.258819043636322, + ], + "intensity": 0.10000000149011612, + }, + { + "color": Uint8Array [ + 188, + 204, + 253, + ], + "direction": Float32Array [ + -0.7814504504203796, + 0.5677568912506104, + 0.258819043636322, + ], + "intensity": 0.10000000149011612, + }, + { + "color": Uint8Array [ + 199, + 190, + 255, + ], + "direction": Float32Array [ + -0.8824164271354675, + 0.39287903904914856, + 0.25881901383399963, + ], + "intensity": 0.10000000149011612, + }, + { + "color": Uint8Array [ + 189, + 222, + 255, + ], + "direction": Float32Array [ + 0.2984875440597534, + -0.9186500310897827, + 0.258819043636322, + ], + "intensity": 0.10000000149011612, + }, + { + "color": Uint8Array [ + 204, + 237, + 255, + ], + "direction": Float32Array [ + -9.099629210140847e-7, + 1.6560650420438527e-12, + 1, + ], + "intensity": 0.30000001192092896, + }, + { + "color": Uint8Array [ + 168, + 254, + 189, + ], + "direction": Float32Array [ + -9.099629210140847e-7, + 1.6560650420438527e-12, + -1, + ], + "intensity": 0.15000000596046448, + }, + ], + "shadowInfluence": 0, + }, + ], + "lightingCharGroups": [], + "name": "", + "nightMods": Uint8Array [ + 255, + 255, + 255, + 133, + ], + "particleFieldCutouts": [], + "particleFields": [], + "shapeArray": [], + "sky": { + "dayBrightness": 1.2000000476837158, + "dayHazeBottom": 0.27984344959259033, + "dayHazeDensity": 1, + "dayHazeFalloff": 1, + "dayLightIntensity": 1, + "dayStarDensity": 0, + "flags": 0, + "nightBrightness": 1.2000000476837158, + "nightHazeBottom": 0.27984344959259033, + "nightHazeDensity": 1, + "nightHazeFalloff": 1, + "nightLightIntensity": 1, + "nightStarDensity": 0, + "verticalOffset": 0, + }, + "skyCards": { + "cards": [ + { + "day": { + "azimuth": -3.1322293281555176, + "brightness": 0.7683168053627014, + "density": 0.6336633563041687, + "ext": {}, + "hazeDensity": 0, + "latitude": 0.2787356376647949, + "lensFlare": {}, + "lightIntensity": 1, + "minHaze": 0.5511810183525085, + "scale": Float32Array [ + 23.850574493408203, + 19.080459594726562, + ], + "speed": 0, + "texture": 186349, + "textureUV": Float32Array [ + 1, + 0.6516720056533813, + 0.44175300002098083, + 0.7383180260658264, + ], + }, + "ext": {}, + "flags": 694558725, + "location": Float32Array [ + 0, + 0, + 0, + ], + "material": {}, + "name": "", + "night": { + "azimuth": -3.1102564334869385, + "brightness": 0.26138612627983093, + "density": 1, + "ext": {}, + "hazeDensity": 0, + "latitude": 0.28316831588745117, + "lensFlare": {}, + "lightIntensity": 1, + "minHaze": 0.5511810183525085, + "scale": Float32Array [ + 23.850574493408203, + 19.080459594726562, + ], + "speed": 0, + "texture": 186349, + "textureUV": Float32Array [ + 1, + 0.6516720056533813, + 0.44175300002098083, + 0.7383180260658264, + ], + }, + }, + { + "day": { + "azimuth": -3.1412315368652344, + "brightness": 2, + "density": 1, + "ext": {}, + "hazeDensity": 0, + "latitude": 0.30890804529190063, + "lensFlare": {}, + "lightIntensity": 1, + "minHaze": 0.5511810183525085, + "scale": Float32Array [ + 0.9900990128517151, + 0.7920792102813721, + ], + "speed": 0, + "texture": 186349, + "textureUV": Float32Array [ + 1, + 0.6516720056533813, + 0.44175300002098083, + 0.7383180260658264, + ], + }, + "ext": {}, + "flags": 694558727, + "location": Float32Array [ + 0, + 0, + 0, + ], + "material": {}, + "name": "", + "night": { + "azimuth": -3.1412315368652344, + "brightness": 2, + "density": 0, + "ext": {}, + "hazeDensity": 0, + "latitude": 0.30890804529190063, + "lensFlare": {}, + "lightIntensity": 1, + "minHaze": 0.5511810183525085, + "scale": Float32Array [ + 1.436781644821167, + 1.1494252681732178, + ], + "speed": 0, + "texture": 186349, + "textureUV": Float32Array [ + 1, + 0.6516720056533813, + 0.44175300002098083, + 0.7383180260658264, + ], + }, + }, + { + "day": { + "azimuth": -3.3969814777374268, + "brightness": 0.2385057508945465, + "density": 0.39470699429512024, + "ext": {}, + "hazeDensity": 0.3886969983577728, + "latitude": 0.17528735101222992, + "lensFlare": {}, + "lightIntensity": 2, + "minHaze": 0.6562860012054443, + "scale": Float32Array [ + 12.356321334838867, + 2.3258962631225586, + ], + "speed": 0.003811249975115061, + "texture": 190422, + "textureUV": Float32Array [ + 0, + 1, + 1, + 0.7951670289039612, + ], + }, + "ext": {}, + "flags": 560865285, + "location": Float32Array [ + 0, + 0, + 0, + ], + "material": {}, + "name": "", + "night": { + "azimuth": -3.3969814777374268, + "brightness": 0.2385057508945465, + "density": 0.39470699429512024, + "ext": {}, + "hazeDensity": 0.3886969983577728, + "latitude": 0.17528735101222992, + "lensFlare": {}, + "lightIntensity": 2, + "minHaze": 0.6562860012054443, + "scale": Float32Array [ + 12.356321334838867, + 2.3258962631225586, + ], + "speed": 0.003811249975115061, + "texture": 190422, + "textureUV": Float32Array [ + 0, + 1, + 1, + 0.7951670289039612, + ], + }, + }, + { + "day": { + "azimuth": -0.24371808767318726, + "brightness": 1.1487890481948853, + "density": 0.5166860222816467, + "ext": {}, + "hazeDensity": 0.3068050146102905, + "latitude": 0.09482758492231369, + "lensFlare": {}, + "lightIntensity": 1, + "minHaze": 0.6816610097885132, + "scale": Float32Array [ + 27.384614944458008, + 5.842050552368164, + ], + "speed": 0.006719824392348528, + "texture": 190422, + "textureUV": Float32Array [ + 0, + 1, + 1, + 0.7951670289039612, + ], + }, + "ext": {}, + "flags": 879914764, + "location": Float32Array [ + 0, + 0, + 0, + ], + "material": {}, + "name": "", + "night": { + "azimuth": -0.24371808767318726, + "brightness": 1.1487890481948853, + "density": 0.5166860222816467, + "ext": {}, + "hazeDensity": 0.3068050146102905, + "latitude": 0.09482758492231369, + "lensFlare": {}, + "lightIntensity": 1, + "minHaze": 0.6816610097885132, + "scale": Float32Array [ + 27.384614944458008, + 5.842050552368164, + ], + "speed": 0.006719824392348528, + "texture": 190422, + "textureUV": Float32Array [ + 0, + 1, + 1, + 0.7951670289039612, + ], + }, + }, + { + "day": { + "azimuth": -4.883838176727295, + "brightness": 0.9396551847457886, + "density": 0.37212643027305603, + "ext": {}, + "hazeDensity": 1, + "latitude": 0.23275862634181976, + "lensFlare": {}, + "lightIntensity": 1, + "minHaze": 0, + "scale": Float32Array [ + 11.392404556274414, + 4.0290207862854, + ], + "speed": 0.0028082721401005983, + "texture": 190422, + "textureUV": Float32Array [ + 0, + 1, + 0.5143839716911316, + 0.20828500390052795, + ], + }, + "ext": {}, + "flags": 896488192, + "location": Float32Array [ + 0, + 0, + 0, + ], + "material": {}, + "name": "", + "night": { + "azimuth": -4.883838176727295, + "brightness": 0.9396551847457886, + "density": 0.37212643027305603, + "ext": {}, + "hazeDensity": 1, + "latitude": 0.23275862634181976, + "lensFlare": {}, + "lightIntensity": 1, + "minHaze": 0, + "scale": Float32Array [ + 11.392404556274414, + 4.0290207862854, + ], + "speed": 0.0028082721401005983, + "texture": 190422, + "textureUV": Float32Array [ + 0, + 1, + 0.5143839716911316, + 0.20828500390052795, + ], + }, + }, + { + "day": { + "azimuth": -2.1302285194396973, + "brightness": 1.09551203250885, + "density": 0.43153101205825806, + "ext": {}, + "hazeDensity": 0.4071510136127472, + "latitude": 0.3002873659133911, + "lensFlare": {}, + "lightIntensity": 1, + "minHaze": 0.6274510025978088, + "scale": Float32Array [ + 12.643678665161133, + 2.0434234142303467, + ], + "speed": 0.004814134445041418, + "texture": 190422, + "textureUV": Float32Array [ + 0, + 1, + 1, + 0.7951670289039612, + ], + }, + "ext": {}, + "flags": 1030059276, + "location": Float32Array [ + 0, + 0, + 0, + ], + "material": {}, + "name": "", + "night": { + "azimuth": -2.1302285194396973, + "brightness": 1.09551203250885, + "density": 0.43153101205825806, + "ext": {}, + "hazeDensity": 0.4071510136127472, + "latitude": 0.3002873659133911, + "lensFlare": {}, + "lightIntensity": 1, + "minHaze": 0.6274510025978088, + "scale": Float32Array [ + 12.643678665161133, + 2.0434234142303467, + ], + "speed": 0.004814134445041418, + "texture": 190422, + "textureUV": Float32Array [ + 0, + 1, + 1, + 0.7951670289039612, + ], + }, + }, + { + "day": { + "azimuth": -3.9716787338256836, + "brightness": 1.0574712753295898, + "density": 0.6547759771347046, + "ext": {}, + "hazeDensity": 0, + "latitude": 0.3333333432674408, + "lensFlare": {}, + "lightIntensity": 2, + "minHaze": 0.6321839094161987, + "scale": Float32Array [ + 10.011507987976074, + 1.956272006034851, + ], + "speed": 0.004112050402909517, + "texture": 190422, + "textureUV": Float32Array [ + 0, + 1, + 0.1990790069103241, + 0, + ], + }, + "ext": {}, + "flags": 538976264, + "location": Float32Array [ + 0, + 0, + 0, + ], + "material": {}, + "name": "", + "night": { + "azimuth": -3.9716787338256836, + "brightness": 1.0574712753295898, + "density": 0.6547759771347046, + "ext": {}, + "hazeDensity": 0, + "latitude": 0.3333333432674408, + "lensFlare": {}, + "lightIntensity": 2, + "minHaze": 0.6321839094161987, + "scale": Float32Array [ + 10.011507987976074, + 1.956272006034851, + ], + "speed": 0.004112050402909517, + "texture": 190422, + "textureUV": Float32Array [ + 0, + 1, + 0.1990790069103241, + 0, + ], + }, + }, + { + "day": { + "azimuth": -3.1412315368652344, + "brightness": 2, + "density": 0, + "ext": {}, + "hazeDensity": 0, + "latitude": 0.30890804529190063, + "lensFlare": {}, + "lightIntensity": 1, + "minHaze": 0.5511810183525085, + "scale": Float32Array [ + 1.436781644821167, + 1.1494252681732178, + ], + "speed": 0, + "texture": 186349, + "textureUV": Float32Array [ + 1, + 0.6516720056533813, + 0.44175300002098083, + 0.7383180260658264, + ], + }, + "ext": {}, + "flags": 694558725, + "location": Float32Array [ + 0, + 0, + 0, + ], + "material": {}, + "name": "", + "night": { + "azimuth": -3.1412315368652344, + "brightness": 2, + "density": 1, + "ext": {}, + "hazeDensity": 0, + "latitude": 0.30890804529190063, + "lensFlare": {}, + "lightIntensity": 1, + "minHaze": 0.5511810183525085, + "scale": Float32Array [ + 1.436781644821167, + 1.1494252681732178, + ], + "speed": 0, + "texture": 186349, + "textureUV": Float32Array [ + 0.2653465270996094, + 0, + 0.4554455578327179, + 0.6772277355194092, + ], + }, + }, + ], + }, + "spawns": {}, + "type": 3, + "water": [], + "wind": [], + }, + { + "audio": [], + "bindTarget": 0n, + "clouds": {}, + "coloredLightRings": [], + "effect": [ + { + "clutTexturePath": 0, + "ext": {}, + "flags": 0, + "focalDepth": 6000, + "focalRange": 4000, + "glow": Uint8Array [ + 93, + 116, + 19, + 0, + ], + "glowAmplify": 0.4000000059604645, + "glowLevel": Uint8Array [ + 76, + 76, + 76, + 0, + ], + "saturation": 1, + "ssaoAmount": 3, + "ssaoBrighten": 0.20000000298023224, + "ssaoContrast": 1, + "ssaoSunScale": 0.5, + "tintAmount": 0, + "tintColor": Uint8Array [ + 255, + 255, + 255, + 255, + ], + "tintFocus": 0, + "tintTargetColor": Uint8Array [ + 255, + 255, + 255, + 0, + ], + }, + { + "clutTexturePath": 0, + "ext": {}, + "flags": 0, + "focalDepth": 6000, + "focalRange": 4000, + "glow": Uint8Array [ + 93, + 116, + 19, + 0, + ], + "glowAmplify": 0.4000000059604645, + "glowLevel": Uint8Array [ + 76, + 76, + 76, + 0, + ], + "saturation": 1, + "ssaoAmount": 3, + "ssaoBrighten": 0.20000000298023224, + "ssaoContrast": 1, + "ssaoSunScale": 0.5, + "tintAmount": 0, + "tintColor": Uint8Array [ + 255, + 255, + 255, + 255, + ], + "tintFocus": 0, + "tintTargetColor": Uint8Array [ + 255, + 255, + 255, + 0, + ], + }, + { + "clutTexturePath": 0, + "ext": {}, + "flags": 0, + "focalDepth": 6000, + "focalRange": 4000, + "glow": Uint8Array [ + 0, + 0, + 0, + 0, + ], + "glowAmplify": 0, + "glowLevel": Uint8Array [ + 0, + 0, + 0, + 0, + ], + "saturation": 1, + "ssaoAmount": 3, + "ssaoBrighten": 0.20000000298023224, + "ssaoContrast": 1, + "ssaoSunScale": 0.5, + "tintAmount": 0, + "tintColor": Uint8Array [ + 255, + 255, + 255, + 255, + ], + "tintFocus": 0, + "tintTargetColor": Uint8Array [ + 255, + 255, + 255, + 0, + ], + }, + ], + "ext": { + "brightMax": 0.5, + "brightMin": 0.30000001192092896, + "brightScale": 1, + "brightTime": 2.5, + "darkCoeff": 1.2000000476837158, + "darkExp": 0.800000011920929, + "darkMax": 0.30000001192092896, + "darkMin": 0.10000000149011612, + "darkScale": 1, + "dimTime": 5, + "ext2": {}, + "waterReflectionParams": Float32Array [ + 0, + 0, + 0, + 0, + ], + }, + "flags": 0, + "guid": 1856560081791910411n, + "haze": [ + { + "depthCue": 0.00041099998634308577, + "distRange": Float32Array [ + 115.10791778564453, + 2618.705078125, + ], + "farColor": Uint8Array [ + 123, + 118, + 27, + 255, + ], + "heightColor": Uint8Array [ + 38, + 74, + 115, + 255, + ], + "heightRange": Float32Array [ + -34.73039245605469, + 140.40118408203125, + ], + "nearColor": Uint8Array [ + 159, + 74, + 60, + 255, + ], + "sunDirRange": Float32Array [ + 0, + 0, + ], + }, + { + "depthCue": 0.00041099998634308577, + "distRange": Float32Array [ + 115.10791778564453, + 2618.705078125, + ], + "farColor": Uint8Array [ + 123, + 118, + 27, + 255, + ], + "heightColor": Uint8Array [ + 38, + 74, + 115, + 255, + ], + "heightRange": Float32Array [ + -34.73039245605469, + 140.40118408203125, + ], + "nearColor": Uint8Array [ + 159, + 74, + 60, + 255, + ], + "sunDirRange": Float32Array [ + 0, + 0, + ], + }, + { + "depthCue": 0, + "distRange": Float32Array [ + 0, + 0, + ], + "farColor": Uint8Array [ + 0, + 0, + 0, + 255, + ], + "heightColor": Uint8Array [ + 0, + 0, + 0, + 255, + ], + "heightRange": Float32Array [ + 0, + 0, + ], + "nearColor": Uint8Array [ + 0, + 0, + 0, + 255, + ], + "sunDirRange": Float32Array [ + 0, + 0, + ], + }, + ], + "lighting": [ + { + "backlightColor": Uint8Array [ + 255, + 255, + 255, + ], + "backlightIntensity": 1, + "lights": [ + { + "color": Uint8Array [ + 46, + 255, + 198, + ], + "direction": Float32Array [ + 0.7071067690849304, + 0, + 0.7071067690849304, + ], + "intensity": 0.5756580233573914, + }, + { + "color": Uint8Array [ + 165, + 255, + 190, + ], + "direction": Float32Array [ + -0.7071067690849304, + -0.0000012868819112554775, + -0.7071067690849304, + ], + "intensity": 0.2269739955663681, + }, + { + "color": Uint8Array [ + 255, + 221, + 191, + ], + "direction": Float32Array [ + -0.0000010291722674082848, + -1.8730171493647196e-12, + 1, + ], + "intensity": 0.30000001192092896, + }, + { + "color": Uint8Array [ + 207, + 255, + 191, + ], + "direction": Float32Array [ + -0.0000010291722674082848, + -1.8730171493647196e-12, + -1, + ], + "intensity": 0.25, + }, + { + "color": Uint8Array [ + 255, + 201, + 191, + ], + "direction": Float32Array [ + -0.7071067690849304, + -0.0000012868819112554775, + 0.7071067690849304, + ], + "intensity": 0.20000000298023224, + }, + { + "color": Uint8Array [ + 255, + 190, + 199, + ], + "direction": Float32Array [ + -4.371138828673793e-8, + 1, + 0, + ], + "intensity": 0.20000000298023224, + }, + { + "color": Uint8Array [ + 255, + 201, + 191, + ], + "direction": Float32Array [ + 0.7071067690849304, + 0, + -0.7071067690849304, + ], + "intensity": 0.20000000298023224, + }, + { + "color": Uint8Array [ + 255, + 190, + 199, + ], + "direction": Float32Array [ + -4.371138828673793e-8, + -1, + 0, + ], + "intensity": 0.20000000298023224, + }, + ], + "shadowInfluence": 0, + }, + { + "backlightColor": Uint8Array [ + 255, + 255, + 255, + ], + "backlightIntensity": 1, + "lights": [ + { + "color": Uint8Array [ + 46, + 255, + 198, + ], + "direction": Float32Array [ + 0.7071067690849304, + 0, + 0.7071067690849304, + ], + "intensity": 0.5756580233573914, + }, + { + "color": Uint8Array [ + 165, + 255, + 190, + ], + "direction": Float32Array [ + -0.7071067690849304, + -0.0000012868819112554775, + -0.7071067690849304, + ], + "intensity": 0.2269739955663681, + }, + { + "color": Uint8Array [ + 255, + 221, + 191, + ], + "direction": Float32Array [ + -0.0000010291722674082848, + -1.8730171493647196e-12, + 1, + ], + "intensity": 0.30000001192092896, + }, + { + "color": Uint8Array [ + 207, + 255, + 191, + ], + "direction": Float32Array [ + -0.0000010291722674082848, + -1.8730171493647196e-12, + -1, + ], + "intensity": 0.25, + }, + { + "color": Uint8Array [ + 255, + 201, + 191, + ], + "direction": Float32Array [ + -0.7071067690849304, + -0.0000012868819112554775, + 0.7071067690849304, + ], + "intensity": 0.20000000298023224, + }, + { + "color": Uint8Array [ + 255, + 190, + 199, + ], + "direction": Float32Array [ + -4.371138828673793e-8, + 1, + 0, + ], + "intensity": 0.20000000298023224, + }, + { + "color": Uint8Array [ + 255, + 201, + 191, + ], + "direction": Float32Array [ + 0.7071067690849304, + 0, + -0.7071067690849304, + ], + "intensity": 0.20000000298023224, + }, + { + "color": Uint8Array [ + 255, + 190, + 199, + ], + "direction": Float32Array [ + -4.371138828673793e-8, + -1, + 0, + ], + "intensity": 0.20000000298023224, + }, + ], + "shadowInfluence": 0, + }, + { + "backlightColor": Uint8Array [ + 0, + 0, + 0, + ], + "backlightIntensity": 0, + "lights": [ + { + "color": Uint8Array [ + 255, + 233, + 192, + ], + "direction": Float32Array [ + 0.7071067690849304, + 0, + 0.7071067690849304, + ], + "intensity": 1.2999999523162842, + }, + { + "color": Uint8Array [ + 124, + 172, + 248, + ], + "direction": Float32Array [ + -0.7071067690849304, + -0.0000012868819112554775, + -0.7071067690849304, + ], + "intensity": 0.30000001192092896, + }, + { + "color": Uint8Array [ + 191, + 221, + 255, + ], + "direction": Float32Array [ + 0.29848748445510864, + 0.9186500906944275, + 0.258819043636322, + ], + "intensity": 0.10000000149011612, + }, + { + "color": Uint8Array [ + 188, + 204, + 253, + ], + "direction": Float32Array [ + -0.7814504504203796, + 0.5677568912506104, + 0.258819043636322, + ], + "intensity": 0.10000000149011612, + }, + { + "color": Uint8Array [ + 199, + 190, + 255, + ], + "direction": Float32Array [ + -0.8824164271354675, + 0.39287903904914856, + 0.25881901383399963, + ], + "intensity": 0.10000000149011612, + }, + { + "color": Uint8Array [ + 189, + 222, + 255, + ], + "direction": Float32Array [ + 0.2984875440597534, + -0.9186500310897827, + 0.258819043636322, + ], + "intensity": 0.10000000149011612, + }, + { + "color": Uint8Array [ + 204, + 237, + 255, + ], + "direction": Float32Array [ + -9.099629210140847e-7, + 1.6560650420438527e-12, + 1, + ], + "intensity": 0.30000001192092896, + }, + { + "color": Uint8Array [ + 168, + 254, + 189, + ], + "direction": Float32Array [ + -9.099629210140847e-7, + 1.6560650420438527e-12, + -1, + ], + "intensity": 0.15000000596046448, + }, + ], + "shadowInfluence": 0, + }, + ], + "lightingCharGroups": [], + "name": "", + "nightMods": Uint8Array [ + 255, + 255, + 255, + 133, + ], + "particleFieldCutouts": [], + "particleFields": [ + { + "altitude": 0, + "angle": Float32Array [ + 0, + 0, + ], + "clusterCount": 0, + "clustering": Float32Array [ + 0, + 0, + ], + "depth": 0, + "deviation": 0, + "deviationSpeed": Float32Array [ + 0, + 0, + ], + "extent": 0, + "fade": 0, + "fieldDirection": Float32Array [ + 0, + 0, + 0, + ], + "flags": 0, + "lifetime": Float32Array [ + 0, + 0, + ], + "name": "", + "opacity": Float32Array [ + 0, + 0, + ], + "particleCount": 0, + "period": Float32Array [ + 0, + 0, + ], + "reserved": 0, + "rotation": Float32Array [ + 0, + 0, + ], + "scaleX": Float32Array [ + 0, + 0, + ], + "scaleY": Float32Array [ + 0, + 0, + ], + "seed": 0, + "speed": Float32Array [ + 0, + 0, + ], + "texColRow": Uint32Array [ + 0, + 0, + ], + "texFPS": 0, + "texPath": 0, + "type": 0, + }, + ], + "shapeArray": [], + "sky": { + "dayBrightness": 1, + "dayHazeBottom": 0, + "dayHazeDensity": 1, + "dayHazeFalloff": 1, + "dayLightIntensity": 1, + "dayStarDensity": 0, + "flags": 0, + "nightBrightness": 1, + "nightHazeBottom": 0, + "nightHazeDensity": 1, + "nightHazeFalloff": 1, + "nightLightIntensity": 1, + "nightStarDensity": 0, + "verticalOffset": 0, + }, + "skyCards": { + "cards": [], + }, + "spawns": {}, + "type": 3, + "water": [ + { + "animAmplitude": 0, + "animChoppiness": 0, + "animWind": Float32Array [ + -90, + -30, + ], + "bumpAmount": 300, + "bumpAngle0": 0, + "bumpAngle1": 40, + "bumpScale0": 0.10000000149011612, + "bumpScale1": 0.10000000149011612, + "bumpSpeed0": 1, + "bumpSpeed1": 1, + "bumpTile0": 1.7999999523162842, + "bumpTile1": 2.5999999046325684, + "constantTokens": [], + "constantValues": [], + "depthAttenuation": 200, + "distortAmount": 0.15000000596046448, + "foamColor0": Uint8Array [ + 51, + 126, + 174, + 38, + ], + "foamColor1": Uint8Array [ + 255, + 255, + 255, + 191, + ], + "foamDepthAttenuation": 0.8999999761581421, + "foamDissolve": 0.949999988079071, + "foamSpawn": 0.5, + "materialFilename": 0, + "patternAngle": 0, + "patternColor": Uint8Array [ + 255, + 255, + 255, + 0, + ], + "patternEdge": 1, + "patternSpeed": 1, + "patternTile": 1.7999999523162842, + "surfaceDeepColor": Uint8Array [ + 50, + 16, + 9, + 0, + ], + "surfaceFresnel": 2.5, + "surfaceShallowColor": Uint8Array [ + 190, + 168, + 103, + 0, + ], + "textureFilenames": [], + "waterFlags": 1, + }, + { + "animAmplitude": 0, + "animChoppiness": -0.4678260087966919, + "animWind": Float32Array [ + -34.065345764160156, + -27.119556427001953, + ], + "bumpAmount": 72.02046203613281, + "bumpAngle0": 70.15873718261719, + "bumpAngle1": 12.396697998046875, + "bumpScale0": 0.22796399891376495, + "bumpScale1": 0.20668700337409973, + "bumpSpeed0": 0.534434974193573, + "bumpSpeed1": 0.7768599987030029, + "bumpTile0": 2.3801651000976562, + "bumpTile1": 13.35779857635498, + "constantTokens": Uint32Array [ + 809906891, + 911119242, + 910462480, + 808137754, + 814574097, + 807298231, + 813734574, + 3101301168, + 1324870500, + 1472906389, + 2953265279, + 3427729611, + 1355227165, + 2983621944, + ], + "constantValues": [ + Float32Array [ + 0.521569013595581, + 0.521569013595581, + 0.521569013595581, + 255, + ], + Float32Array [ + 0.9372550249099731, + 0.8470590114593506, + 0.5803920030593872, + 1, + ], + Float32Array [ + 34.11420440673828, + 0, + 0, + 0, + ], + Float32Array [ + 0.8916540145874023, + 15, + 3, + 0, + ], + Float32Array [ + 0.7337750196456909, + 0.26622501015663147, + 0.3443709909915924, + 1, + ], + Float32Array [ + 0.23426100611686707, + 35, + 1, + 0, + ], + Float32Array [ + 0.49139100313186646, + 0.27417200803756714, + 0.15231800079345703, + 0.5721849799156189, + ], + Float32Array [ + 0, + 0, + 0, + 0, + ], + Float32Array [ + 0, + 0, + 0, + 0, + ], + Float32Array [ + 0, + 0, + 0, + 0, + ], + Float32Array [ + 0, + 0, + 0, + 0, + ], + Float32Array [ + 0, + 0, + 0, + 0, + ], + Float32Array [ + 0, + 0, + 0, + 0, + ], + Float32Array [ + 0, + 0, + 0, + 0, + ], + ], + "depthAttenuation": 431.1845397949219, + "distortAmount": 0.00009999999747378752, + "foamColor0": Uint8Array [ + 51, + 126, + 174, + 38, + ], + "foamColor1": Uint8Array [ + 255, + 255, + 255, + 191, + ], + "foamDepthAttenuation": 0.8999999761581421, + "foamDissolve": 0.949999988079071, + "foamSpawn": 0.5, + "materialFilename": 187551, + "patternAngle": 9.310355186462402, + "patternColor": Uint8Array [ + 179, + 124, + 125, + 34, + ], + "patternEdge": 0.36927199363708496, + "patternSpeed": 0.30727800726890564, + "patternTile": 14.381322860717773, + "surfaceDeepColor": Uint8Array [ + 58, + 94, + 103, + 0, + ], + "surfaceFresnel": 0.8354790210723877, + "surfaceShallowColor": Uint8Array [ + 116, + 218, + 226, + 0, + ], + "textureFilenames": [ + 0, + 186359, + 187574, + 187574, + 187576, + ], + "waterFlags": 1, + }, + { + "animAmplitude": 0, + "animChoppiness": 0, + "animWind": Float32Array [ + -90, + -30, + ], + "bumpAmount": 300, + "bumpAngle0": 0, + "bumpAngle1": 40, + "bumpScale0": 0.10000000149011612, + "bumpScale1": 0.10000000149011612, + "bumpSpeed0": 1, + "bumpSpeed1": 1, + "bumpTile0": 1.7999999523162842, + "bumpTile1": 2.5999999046325684, + "constantTokens": [], + "constantValues": [], + "depthAttenuation": 200, + "distortAmount": 0.15000000596046448, + "foamColor0": Uint8Array [ + 51, + 126, + 174, + 38, + ], + "foamColor1": Uint8Array [ + 255, + 255, + 255, + 191, + ], + "foamDepthAttenuation": 0.8999999761581421, + "foamDissolve": 0.949999988079071, + "foamSpawn": 0.5, + "materialFilename": 0, + "patternAngle": 0, + "patternColor": Uint8Array [ + 255, + 255, + 255, + 0, + ], + "patternEdge": 1, + "patternSpeed": 1, + "patternTile": 1.7999999523162842, + "surfaceDeepColor": Uint8Array [ + 50, + 16, + 9, + 0, + ], + "surfaceFresnel": 2.5, + "surfaceShallowColor": Uint8Array [ + 190, + 168, + 103, + 0, + ], + "textureFilenames": [], + "waterFlags": 1, + }, + ], + "wind": [ + { + "azimuth": 0, + "elevation": 0, + "gust": 0, + "gustFreq": 0, + "gustSpeed": 0, + "noise": 0, + "speed": 0, + }, + { + "azimuth": 0, + "elevation": 0, + "gust": 0, + "gustFreq": 0, + "gustSpeed": 0, + "noise": 0, + "speed": 0, + }, + { + "azimuth": 0, + "elevation": 0, + "gust": 0, + "gustFreq": 0, + "gustSpeed": 0, + "noise": 0, + "speed": 0, + }, + ], + }, + { + "audio": [], + "bindTarget": 0n, + "clouds": {}, + "coloredLightRings": [], + "effect": [ + { + "clutTexturePath": 0, + "ext": {}, + "flags": 0, + "focalDepth": 6000, + "focalRange": 4000, + "glow": Uint8Array [ + 95, + 117, + 6, + 0, + ], + "glowAmplify": 0.4000000059604645, + "glowLevel": Uint8Array [ + 51, + 51, + 51, + 0, + ], + "saturation": 1, + "ssaoAmount": 3, + "ssaoBrighten": 0.20000000298023224, + "ssaoContrast": 1, + "ssaoSunScale": 0.5, + "tintAmount": 0, + "tintColor": Uint8Array [ + 255, + 255, + 255, + 255, + ], + "tintFocus": 0, + "tintTargetColor": Uint8Array [ + 255, + 255, + 255, + 0, + ], + }, + { + "clutTexturePath": 0, + "ext": {}, + "flags": 0, + "focalDepth": 6000, + "focalRange": 4000, + "glow": Uint8Array [ + 95, + 117, + 6, + 0, + ], + "glowAmplify": 0.4000000059604645, + "glowLevel": Uint8Array [ + 51, + 51, + 51, + 0, + ], + "saturation": 1, + "ssaoAmount": 3, + "ssaoBrighten": 0.20000000298023224, + "ssaoContrast": 1, + "ssaoSunScale": 0.5, + "tintAmount": 0, + "tintColor": Uint8Array [ + 255, + 255, + 255, + 255, + ], + "tintFocus": 0, + "tintTargetColor": Uint8Array [ + 255, + 255, + 255, + 0, + ], + }, + { + "clutTexturePath": 0, + "ext": {}, + "flags": 0, + "focalDepth": 6000, + "focalRange": 4000, + "glow": Uint8Array [ + 0, + 0, + 0, + 0, + ], + "glowAmplify": 0, + "glowLevel": Uint8Array [ + 0, + 0, + 0, + 0, + ], + "saturation": 1, + "ssaoAmount": 3, + "ssaoBrighten": 0.20000000298023224, + "ssaoContrast": 1, + "ssaoSunScale": 0.5, + "tintAmount": 0, + "tintColor": Uint8Array [ + 255, + 255, + 255, + 255, + ], + "tintFocus": 0, + "tintTargetColor": Uint8Array [ + 255, + 255, + 255, + 0, + ], + }, + ], + "ext": { + "brightMax": 0.5, + "brightMin": 0.30000001192092896, + "brightScale": 1, + "brightTime": 2.5, + "darkCoeff": 1.2000000476837158, + "darkExp": 0.800000011920929, + "darkMax": 0.30000001192092896, + "darkMin": 0.10000000149011612, + "darkScale": 1, + "dimTime": 5, + "ext2": {}, + "waterReflectionParams": Float32Array [ + 0, + 0, + 0, + 0, + ], + }, + "flags": 0, + "guid": 1856560687382299145n, + "haze": [ + { + "depthCue": 0.00041099998634308577, + "distRange": Float32Array [ + 115.10791778564453, + 2618.705078125, + ], + "farColor": Uint8Array [ + 76, + 70, + 42, + 255, + ], + "heightColor": Uint8Array [ + 38, + 74, + 115, + 255, + ], + "heightRange": Float32Array [ + -34.73039245605469, + 140.40118408203125, + ], + "nearColor": Uint8Array [ + 84, + 141, + 52, + 255, + ], + "sunDirRange": Float32Array [ + 0, + 0, + ], + }, + { + "depthCue": 0.00041099998634308577, + "distRange": Float32Array [ + 115.10791778564453, + 2618.705078125, + ], + "farColor": Uint8Array [ + 76, + 70, + 42, + 255, + ], + "heightColor": Uint8Array [ + 38, + 74, + 115, + 255, + ], + "heightRange": Float32Array [ + -34.73039245605469, + 140.40118408203125, + ], + "nearColor": Uint8Array [ + 84, + 141, + 52, + 255, + ], + "sunDirRange": Float32Array [ + 0, + 0, + ], + }, + { + "depthCue": 0, + "distRange": Float32Array [ + 0, + 0, + ], + "farColor": Uint8Array [ + 0, + 0, + 0, + 255, + ], + "heightColor": Uint8Array [ + 0, + 0, + 0, + 255, + ], + "heightRange": Float32Array [ + 0, + 0, + ], + "nearColor": Uint8Array [ + 0, + 0, + 0, + 255, + ], + "sunDirRange": Float32Array [ + 0, + 0, + ], + }, + ], + "lighting": [ + { + "backlightColor": Uint8Array [ + 255, + 255, + 255, + ], + "backlightIntensity": 1, + "lights": [ + { + "color": Uint8Array [ + 46, + 255, + 198, + ], + "direction": Float32Array [ + 0.7071067690849304, + 0, + 0.7071067690849304, + ], + "intensity": 0.5756580233573914, + }, + { + "color": Uint8Array [ + 165, + 255, + 190, + ], + "direction": Float32Array [ + -0.7071067690849304, + -0.0000012868819112554775, + -0.7071067690849304, + ], + "intensity": 0.2269739955663681, + }, + { + "color": Uint8Array [ + 255, + 221, + 191, + ], + "direction": Float32Array [ + -0.0000010291722674082848, + -1.8730171493647196e-12, + 1, + ], + "intensity": 0.30000001192092896, + }, + { + "color": Uint8Array [ + 207, + 255, + 191, + ], + "direction": Float32Array [ + -0.0000010291722674082848, + -1.8730171493647196e-12, + -1, + ], + "intensity": 0.25, + }, + { + "color": Uint8Array [ + 255, + 201, + 191, + ], + "direction": Float32Array [ + -0.7071067690849304, + -0.0000012868819112554775, + 0.7071067690849304, + ], + "intensity": 0.20000000298023224, + }, + { + "color": Uint8Array [ + 255, + 190, + 199, + ], + "direction": Float32Array [ + -4.371138828673793e-8, + 1, + 0, + ], + "intensity": 0.20000000298023224, + }, + { + "color": Uint8Array [ + 255, + 201, + 191, + ], + "direction": Float32Array [ + 0.7071067690849304, + 0, + -0.7071067690849304, + ], + "intensity": 0.20000000298023224, + }, + { + "color": Uint8Array [ + 255, + 190, + 199, + ], + "direction": Float32Array [ + -4.371138828673793e-8, + -1, + 0, + ], + "intensity": 0.20000000298023224, + }, + ], + "shadowInfluence": 0, + }, + { + "backlightColor": Uint8Array [ + 255, + 255, + 255, + ], + "backlightIntensity": 1, + "lights": [ + { + "color": Uint8Array [ + 46, + 255, + 198, + ], + "direction": Float32Array [ + 0.7071067690849304, + 0, + 0.7071067690849304, + ], + "intensity": 0.5756580233573914, + }, + { + "color": Uint8Array [ + 165, + 255, + 190, + ], + "direction": Float32Array [ + -0.7071067690849304, + -0.0000012868819112554775, + -0.7071067690849304, + ], + "intensity": 0.2269739955663681, + }, + { + "color": Uint8Array [ + 255, + 221, + 191, + ], + "direction": Float32Array [ + -0.0000010291722674082848, + -1.8730171493647196e-12, + 1, + ], + "intensity": 0.30000001192092896, + }, + { + "color": Uint8Array [ + 207, + 255, + 191, + ], + "direction": Float32Array [ + -0.0000010291722674082848, + -1.8730171493647196e-12, + -1, + ], + "intensity": 0.25, + }, + { + "color": Uint8Array [ + 255, + 201, + 191, + ], + "direction": Float32Array [ + -0.7071067690849304, + -0.0000012868819112554775, + 0.7071067690849304, + ], + "intensity": 0.20000000298023224, + }, + { + "color": Uint8Array [ + 255, + 190, + 199, + ], + "direction": Float32Array [ + -4.371138828673793e-8, + 1, + 0, + ], + "intensity": 0.20000000298023224, + }, + { + "color": Uint8Array [ + 255, + 201, + 191, + ], + "direction": Float32Array [ + 0.7071067690849304, + 0, + -0.7071067690849304, + ], + "intensity": 0.20000000298023224, + }, + { + "color": Uint8Array [ + 255, + 190, + 199, + ], + "direction": Float32Array [ + -4.371138828673793e-8, + -1, + 0, + ], + "intensity": 0.20000000298023224, + }, + ], + "shadowInfluence": 0, + }, + { + "backlightColor": Uint8Array [ + 0, + 0, + 0, + ], + "backlightIntensity": 0, + "lights": [ + { + "color": Uint8Array [ + 255, + 233, + 192, + ], + "direction": Float32Array [ + 0.7071067690849304, + 0, + 0.7071067690849304, + ], + "intensity": 1.2999999523162842, + }, + { + "color": Uint8Array [ + 124, + 172, + 248, + ], + "direction": Float32Array [ + -0.7071067690849304, + -0.0000012868819112554775, + -0.7071067690849304, + ], + "intensity": 0.30000001192092896, + }, + { + "color": Uint8Array [ + 191, + 221, + 255, + ], + "direction": Float32Array [ + 0.29848748445510864, + 0.9186500906944275, + 0.258819043636322, + ], + "intensity": 0.10000000149011612, + }, + { + "color": Uint8Array [ + 188, + 204, + 253, + ], + "direction": Float32Array [ + -0.7814504504203796, + 0.5677568912506104, + 0.258819043636322, + ], + "intensity": 0.10000000149011612, + }, + { + "color": Uint8Array [ + 199, + 190, + 255, + ], + "direction": Float32Array [ + -0.8824164271354675, + 0.39287903904914856, + 0.25881901383399963, + ], + "intensity": 0.10000000149011612, + }, + { + "color": Uint8Array [ + 189, + 222, + 255, + ], + "direction": Float32Array [ + 0.2984875440597534, + -0.9186500310897827, + 0.258819043636322, + ], + "intensity": 0.10000000149011612, + }, + { + "color": Uint8Array [ + 204, + 237, + 255, + ], + "direction": Float32Array [ + -9.099629210140847e-7, + 1.6560650420438527e-12, + 1, + ], + "intensity": 0.30000001192092896, + }, + { + "color": Uint8Array [ + 168, + 254, + 189, + ], + "direction": Float32Array [ + -9.099629210140847e-7, + 1.6560650420438527e-12, + -1, + ], + "intensity": 0.15000000596046448, + }, + ], + "shadowInfluence": 0, + }, + ], + "lightingCharGroups": [], + "name": "", + "nightMods": Uint8Array [ + 255, + 255, + 255, + 133, + ], + "particleFieldCutouts": [], + "particleFields": [ + { + "altitude": 0, + "angle": Float32Array [ + 0, + 0, + ], + "clusterCount": 0, + "clustering": Float32Array [ + 0, + 0, + ], + "depth": 0, + "deviation": 0, + "deviationSpeed": Float32Array [ + 0, + 0, + ], + "extent": 0, + "fade": 0, + "fieldDirection": Float32Array [ + 0, + 0, + 0, + ], + "flags": 0, + "lifetime": Float32Array [ + 0, + 0, + ], + "name": "", + "opacity": Float32Array [ + 0, + 0, + ], + "particleCount": 0, + "period": Float32Array [ + 0, + 0, + ], + "reserved": 0, + "rotation": Float32Array [ + 0, + 0, + ], + "scaleX": Float32Array [ + 0, + 0, + ], + "scaleY": Float32Array [ + 0, + 0, + ], + "seed": 0, + "speed": Float32Array [ + 0, + 0, + ], + "texColRow": Uint32Array [ + 0, + 0, + ], + "texFPS": 0, + "texPath": 0, + "type": 0, + }, + ], + "shapeArray": [], + "sky": { + "dayBrightness": 1, + "dayHazeBottom": 0, + "dayHazeDensity": 1, + "dayHazeFalloff": 1, + "dayLightIntensity": 1.5, + "dayStarDensity": 0, + "flags": 0, + "nightBrightness": 1, + "nightHazeBottom": 0, + "nightHazeDensity": 1, + "nightHazeFalloff": 1, + "nightLightIntensity": 1.5, + "nightStarDensity": 0, + "verticalOffset": 0, + }, + "skyCards": {}, + "spawns": {}, + "type": 3, + "water": [ + { + "animAmplitude": 0, + "animChoppiness": 0, + "animWind": Float32Array [ + -90, + -30, + ], + "bumpAmount": 300, + "bumpAngle0": 0, + "bumpAngle1": 40, + "bumpScale0": 0.10000000149011612, + "bumpScale1": 0.10000000149011612, + "bumpSpeed0": 1, + "bumpSpeed1": 1, + "bumpTile0": 1.7999999523162842, + "bumpTile1": 2.5999999046325684, + "constantTokens": [], + "constantValues": [], + "depthAttenuation": 200, + "distortAmount": 0.15000000596046448, + "foamColor0": Uint8Array [ + 51, + 126, + 174, + 38, + ], + "foamColor1": Uint8Array [ + 255, + 255, + 255, + 191, + ], + "foamDepthAttenuation": 0.8999999761581421, + "foamDissolve": 0.949999988079071, + "foamSpawn": 0.5, + "materialFilename": 0, + "patternAngle": 0, + "patternColor": Uint8Array [ + 255, + 255, + 255, + 0, + ], + "patternEdge": 1, + "patternSpeed": 1, + "patternTile": 1.7999999523162842, + "surfaceDeepColor": Uint8Array [ + 50, + 16, + 9, + 0, + ], + "surfaceFresnel": 2.5, + "surfaceShallowColor": Uint8Array [ + 190, + 168, + 103, + 0, + ], + "textureFilenames": [], + "waterFlags": 1, + }, + { + "animAmplitude": 0, + "animChoppiness": -0.4678260087966919, + "animWind": Float32Array [ + -34.065345764160156, + -27.119556427001953, + ], + "bumpAmount": 72.02046203613281, + "bumpAngle0": 70.15873718261719, + "bumpAngle1": 12.396697998046875, + "bumpScale0": 0.22796399891376495, + "bumpScale1": 0.20668700337409973, + "bumpSpeed0": 0.534434974193573, + "bumpSpeed1": 0.7768599987030029, + "bumpTile0": 2.3801651000976562, + "bumpTile1": 13.35779857635498, + "constantTokens": Uint32Array [ + 809906891, + 911119242, + 910462480, + 808137754, + 814574097, + 807298231, + 813734574, + 3101301168, + 1324870500, + 1472906389, + 2953265279, + 3427729611, + 1355227165, + 2983621944, + ], + "constantValues": [ + Float32Array [ + 0.521569013595581, + 0.521569013595581, + 0.521569013595581, + 255, + ], + Float32Array [ + 0.9372550249099731, + 0.8470590114593506, + 0.5803920030593872, + 1, + ], + Float32Array [ + 34.11420440673828, + 0, + 0, + 0, + ], + Float32Array [ + 0.8916540145874023, + 15, + 3, + 0, + ], + Float32Array [ + 0.7337750196456909, + 0.26622501015663147, + 0.3443709909915924, + 1, + ], + Float32Array [ + 0.23426100611686707, + 35, + 1, + 0, + ], + Float32Array [ + 0.49139100313186646, + 0.27417200803756714, + 0.15231800079345703, + 0.5721849799156189, + ], + Float32Array [ + 0, + 0, + 0, + 0, + ], + Float32Array [ + 0, + 0, + 0, + 0, + ], + Float32Array [ + 0, + 0, + 0, + 0, + ], + Float32Array [ + 0, + 0, + 0, + 0, + ], + Float32Array [ + 0, + 0, + 0, + 0, + ], + Float32Array [ + 0, + 0, + 0, + 0, + ], + Float32Array [ + 0, + 0, + 0, + 0, + ], + ], + "depthAttenuation": 431.1845397949219, + "distortAmount": 0.00009999999747378752, + "foamColor0": Uint8Array [ + 51, + 126, + 174, + 38, + ], + "foamColor1": Uint8Array [ + 255, + 255, + 255, + 191, + ], + "foamDepthAttenuation": 0.8999999761581421, + "foamDissolve": 0.949999988079071, + "foamSpawn": 0.5, + "materialFilename": 187551, + "patternAngle": 9.310355186462402, + "patternColor": Uint8Array [ + 179, + 124, + 125, + 34, + ], + "patternEdge": 0.36927199363708496, + "patternSpeed": 0.30727800726890564, + "patternTile": 14.381322860717773, + "surfaceDeepColor": Uint8Array [ + 58, + 94, + 103, + 0, + ], + "surfaceFresnel": 0.8354790210723877, + "surfaceShallowColor": Uint8Array [ + 116, + 218, + 226, + 0, + ], + "textureFilenames": [ + 0, + 186359, + 187574, + 187574, + 187576, + ], + "waterFlags": 1, + }, + { + "animAmplitude": 0, + "animChoppiness": 0, + "animWind": Float32Array [ + -90, + -30, + ], + "bumpAmount": 300, + "bumpAngle0": 0, + "bumpAngle1": 40, + "bumpScale0": 0.10000000149011612, + "bumpScale1": 0.10000000149011612, + "bumpSpeed0": 1, + "bumpSpeed1": 1, + "bumpTile0": 1.7999999523162842, + "bumpTile1": 2.5999999046325684, + "constantTokens": [], + "constantValues": [], + "depthAttenuation": 200, + "distortAmount": 0.15000000596046448, + "foamColor0": Uint8Array [ + 51, + 126, + 174, + 38, + ], + "foamColor1": Uint8Array [ + 255, + 255, + 255, + 191, + ], + "foamDepthAttenuation": 0.8999999761581421, + "foamDissolve": 0.949999988079071, + "foamSpawn": 0.5, + "materialFilename": 0, + "patternAngle": 0, + "patternColor": Uint8Array [ + 255, + 255, + 255, + 0, + ], + "patternEdge": 1, + "patternSpeed": 1, + "patternTile": 1.7999999523162842, + "surfaceDeepColor": Uint8Array [ + 50, + 16, + 9, + 0, + ], + "surfaceFresnel": 2.5, + "surfaceShallowColor": Uint8Array [ + 190, + 168, + 103, + 0, + ], + "textureFilenames": [], + "waterFlags": 1, + }, + ], + "wind": [ + { + "azimuth": 0, + "elevation": 0, + "gust": 0, + "gustFreq": 0, + "gustSpeed": 0, + "noise": 0, + "speed": 0, + }, + { + "azimuth": 0, + "elevation": 0, + "gust": 0, + "gustFreq": 0, + "gustSpeed": 0, + "noise": 0, + "speed": 0, + }, + { + "azimuth": 0, + "elevation": 0, + "gust": 0, + "gustFreq": 0, + "gustSpeed": 0, + "noise": 0, + "speed": 0, + }, + ], + }, + { + "audio": [], + "bindTarget": 0n, + "clouds": {}, + "coloredLightRings": [], + "effect": [ + { + "clutTexturePath": 0, + "ext": {}, + "flags": 0, + "focalDepth": 6000, + "focalRange": 4000, + "glow": Uint8Array [ + 73, + 79, + 45, + 0, + ], + "glowAmplify": 0.4000000059604645, + "glowLevel": Uint8Array [ + 76, + 76, + 76, + 0, + ], + "saturation": 1, + "ssaoAmount": 3, + "ssaoBrighten": 0.20000000298023224, + "ssaoContrast": 1, + "ssaoSunScale": 0.5, + "tintAmount": 0, + "tintColor": Uint8Array [ + 255, + 255, + 255, + 255, + ], + "tintFocus": 0, + "tintTargetColor": Uint8Array [ + 255, + 255, + 255, + 0, + ], + }, + { + "clutTexturePath": 0, + "ext": {}, + "flags": 0, + "focalDepth": 6000, + "focalRange": 4000, + "glow": Uint8Array [ + 73, + 79, + 45, + 0, + ], + "glowAmplify": 0.4000000059604645, + "glowLevel": Uint8Array [ + 76, + 76, + 76, + 0, + ], + "saturation": 1, + "ssaoAmount": 3, + "ssaoBrighten": 0.20000000298023224, + "ssaoContrast": 1, + "ssaoSunScale": 0.5, + "tintAmount": 0, + "tintColor": Uint8Array [ + 255, + 255, + 255, + 255, + ], + "tintFocus": 0, + "tintTargetColor": Uint8Array [ + 255, + 255, + 255, + 0, + ], + }, + { + "clutTexturePath": 0, + "ext": {}, + "flags": 0, + "focalDepth": 6000, + "focalRange": 4000, + "glow": Uint8Array [ + 0, + 0, + 0, + 0, + ], + "glowAmplify": 0, + "glowLevel": Uint8Array [ + 0, + 0, + 0, + 0, + ], + "saturation": 1, + "ssaoAmount": 3, + "ssaoBrighten": 0.20000000298023224, + "ssaoContrast": 1, + "ssaoSunScale": 0.5, + "tintAmount": 0, + "tintColor": Uint8Array [ + 255, + 255, + 255, + 255, + ], + "tintFocus": 0, + "tintTargetColor": Uint8Array [ + 255, + 255, + 255, + 0, + ], + }, + ], + "ext": { + "brightMax": 0.5, + "brightMin": 0.30000001192092896, + "brightScale": 1, + "brightTime": 2.5, + "darkCoeff": 1.2000000476837158, + "darkExp": 0.800000011920929, + "darkMax": 0.30000001192092896, + "darkMin": 0.10000000149011612, + "darkScale": 1, + "dimTime": 5, + "ext2": {}, + "waterReflectionParams": Float32Array [ + 0, + 0, + 0, + 0, + ], + }, + "flags": 0, + "guid": 1856561005209879054n, + "haze": [ + { + "depthCue": 0.00041099998634308577, + "distRange": Float32Array [ + 115.10791778564453, + 2618.705078125, + ], + "farColor": Uint8Array [ + 95, + 107, + 39, + 255, + ], + "heightColor": Uint8Array [ + 38, + 74, + 115, + 255, + ], + "heightRange": Float32Array [ + -34.73039245605469, + 140.40118408203125, + ], + "nearColor": Uint8Array [ + 156, + 165, + 13, + 255, + ], + "sunDirRange": Float32Array [ + 0, + 0, + ], + }, + { + "depthCue": 0.00041099998634308577, + "distRange": Float32Array [ + 115.10791778564453, + 2618.705078125, + ], + "farColor": Uint8Array [ + 95, + 107, + 39, + 255, + ], + "heightColor": Uint8Array [ + 38, + 74, + 115, + 255, + ], + "heightRange": Float32Array [ + -34.73039245605469, + 140.40118408203125, + ], + "nearColor": Uint8Array [ + 156, + 165, + 13, + 255, + ], + "sunDirRange": Float32Array [ + 0, + 0, + ], + }, + { + "depthCue": 0, + "distRange": Float32Array [ + 0, + 0, + ], + "farColor": Uint8Array [ + 0, + 0, + 0, + 255, + ], + "heightColor": Uint8Array [ + 0, + 0, + 0, + 255, + ], + "heightRange": Float32Array [ + 0, + 0, + ], + "nearColor": Uint8Array [ + 0, + 0, + 0, + 255, + ], + "sunDirRange": Float32Array [ + 0, + 0, + ], + }, + ], + "lighting": [ + { + "backlightColor": Uint8Array [ + 255, + 255, + 255, + ], + "backlightIntensity": 1, + "lights": [ + { + "color": Uint8Array [ + 46, + 255, + 198, + ], + "direction": Float32Array [ + 0.7071067690849304, + 0, + 0.7071067690849304, + ], + "intensity": 0.5756580233573914, + }, + { + "color": Uint8Array [ + 165, + 255, + 190, + ], + "direction": Float32Array [ + -0.7071067690849304, + -0.0000012868819112554775, + -0.7071067690849304, + ], + "intensity": 0.2269739955663681, + }, + { + "color": Uint8Array [ + 255, + 221, + 191, + ], + "direction": Float32Array [ + -0.0000010291722674082848, + -1.8730171493647196e-12, + 1, + ], + "intensity": 0.30000001192092896, + }, + { + "color": Uint8Array [ + 207, + 255, + 191, + ], + "direction": Float32Array [ + -0.0000010291722674082848, + -1.8730171493647196e-12, + -1, + ], + "intensity": 0.25, + }, + { + "color": Uint8Array [ + 255, + 201, + 191, + ], + "direction": Float32Array [ + -0.7071067690849304, + -0.0000012868819112554775, + 0.7071067690849304, + ], + "intensity": 0.20000000298023224, + }, + { + "color": Uint8Array [ + 255, + 190, + 199, + ], + "direction": Float32Array [ + -4.371138828673793e-8, + 1, + 0, + ], + "intensity": 0.20000000298023224, + }, + { + "color": Uint8Array [ + 255, + 201, + 191, + ], + "direction": Float32Array [ + 0.7071067690849304, + 0, + -0.7071067690849304, + ], + "intensity": 0.20000000298023224, + }, + { + "color": Uint8Array [ + 255, + 190, + 199, + ], + "direction": Float32Array [ + -4.371138828673793e-8, + -1, + 0, + ], + "intensity": 0.20000000298023224, + }, + ], + "shadowInfluence": 0, + }, + { + "backlightColor": Uint8Array [ + 255, + 255, + 255, + ], + "backlightIntensity": 1, + "lights": [ + { + "color": Uint8Array [ + 46, + 255, + 198, + ], + "direction": Float32Array [ + 0.7071067690849304, + 0, + 0.7071067690849304, + ], + "intensity": 0.5756580233573914, + }, + { + "color": Uint8Array [ + 165, + 255, + 190, + ], + "direction": Float32Array [ + -0.7071067690849304, + -0.0000012868819112554775, + -0.7071067690849304, + ], + "intensity": 0.2269739955663681, + }, + { + "color": Uint8Array [ + 255, + 221, + 191, + ], + "direction": Float32Array [ + -0.0000010291722674082848, + -1.8730171493647196e-12, + 1, + ], + "intensity": 0.30000001192092896, + }, + { + "color": Uint8Array [ + 207, + 255, + 191, + ], + "direction": Float32Array [ + -0.0000010291722674082848, + -1.8730171493647196e-12, + -1, + ], + "intensity": 0.25, + }, + { + "color": Uint8Array [ + 255, + 201, + 191, + ], + "direction": Float32Array [ + -0.7071067690849304, + -0.0000012868819112554775, + 0.7071067690849304, + ], + "intensity": 0.20000000298023224, + }, + { + "color": Uint8Array [ + 255, + 190, + 199, + ], + "direction": Float32Array [ + -4.371138828673793e-8, + 1, + 0, + ], + "intensity": 0.20000000298023224, + }, + { + "color": Uint8Array [ + 255, + 201, + 191, + ], + "direction": Float32Array [ + 0.7071067690849304, + 0, + -0.7071067690849304, + ], + "intensity": 0.20000000298023224, + }, + { + "color": Uint8Array [ + 255, + 190, + 199, + ], + "direction": Float32Array [ + -4.371138828673793e-8, + -1, + 0, + ], + "intensity": 0.20000000298023224, + }, + ], + "shadowInfluence": 0, + }, + { + "backlightColor": Uint8Array [ + 0, + 0, + 0, + ], + "backlightIntensity": 0, + "lights": [ + { + "color": Uint8Array [ + 255, + 233, + 192, + ], + "direction": Float32Array [ + 0.7071067690849304, + 0, + 0.7071067690849304, + ], + "intensity": 1.2999999523162842, + }, + { + "color": Uint8Array [ + 124, + 172, + 248, + ], + "direction": Float32Array [ + -0.7071067690849304, + -0.0000012868819112554775, + -0.7071067690849304, + ], + "intensity": 0.30000001192092896, + }, + { + "color": Uint8Array [ + 191, + 221, + 255, + ], + "direction": Float32Array [ + 0.29848748445510864, + 0.9186500906944275, + 0.258819043636322, + ], + "intensity": 0.10000000149011612, + }, + { + "color": Uint8Array [ + 188, + 204, + 253, + ], + "direction": Float32Array [ + -0.7814504504203796, + 0.5677568912506104, + 0.258819043636322, + ], + "intensity": 0.10000000149011612, + }, + { + "color": Uint8Array [ + 199, + 190, + 255, + ], + "direction": Float32Array [ + -0.8824164271354675, + 0.39287903904914856, + 0.25881901383399963, + ], + "intensity": 0.10000000149011612, + }, + { + "color": Uint8Array [ + 189, + 222, + 255, + ], + "direction": Float32Array [ + 0.2984875440597534, + -0.9186500310897827, + 0.258819043636322, + ], + "intensity": 0.10000000149011612, + }, + { + "color": Uint8Array [ + 204, + 237, + 255, + ], + "direction": Float32Array [ + -9.099629210140847e-7, + 1.6560650420438527e-12, + 1, + ], + "intensity": 0.30000001192092896, + }, + { + "color": Uint8Array [ + 168, + 254, + 189, + ], + "direction": Float32Array [ + -9.099629210140847e-7, + 1.6560650420438527e-12, + -1, + ], + "intensity": 0.15000000596046448, + }, + ], + "shadowInfluence": 0, + }, + ], + "lightingCharGroups": [], + "name": "", + "nightMods": Uint8Array [ + 255, + 255, + 255, + 133, + ], + "particleFieldCutouts": [], + "particleFields": [ + { + "altitude": 0, + "angle": Float32Array [ + 0, + 0, + ], + "clusterCount": 0, + "clustering": Float32Array [ + 0, + 0, + ], + "depth": 0, + "deviation": 0, + "deviationSpeed": Float32Array [ + 0, + 0, + ], + "extent": 0, + "fade": 0, + "fieldDirection": Float32Array [ + 0, + 0, + 0, + ], + "flags": 0, + "lifetime": Float32Array [ + 0, + 0, + ], + "name": "", + "opacity": Float32Array [ + 0, + 0, + ], + "particleCount": 0, + "period": Float32Array [ + 0, + 0, + ], + "reserved": 0, + "rotation": Float32Array [ + 0, + 0, + ], + "scaleX": Float32Array [ + 0, + 0, + ], + "scaleY": Float32Array [ + 0, + 0, + ], + "seed": 0, + "speed": Float32Array [ + 0, + 0, + ], + "texColRow": Uint32Array [ + 0, + 0, + ], + "texFPS": 0, + "texPath": 0, + "type": 0, + }, + ], + "shapeArray": [], + "sky": { + "dayBrightness": 1, + "dayHazeBottom": 0, + "dayHazeDensity": 1, + "dayHazeFalloff": 16, + "dayLightIntensity": 1, + "dayStarDensity": 0, + "flags": 0, + "nightBrightness": 1, + "nightHazeBottom": 0, + "nightHazeDensity": 1, + "nightHazeFalloff": 16, + "nightLightIntensity": 1, + "nightStarDensity": 0, + "verticalOffset": 0, + }, + "skyCards": {}, + "spawns": {}, + "type": 3, + "water": [ + { + "animAmplitude": 0, + "animChoppiness": 0, + "animWind": Float32Array [ + -90, + -30, + ], + "bumpAmount": 300, + "bumpAngle0": 0, + "bumpAngle1": 40, + "bumpScale0": 0.10000000149011612, + "bumpScale1": 0.10000000149011612, + "bumpSpeed0": 1, + "bumpSpeed1": 1, + "bumpTile0": 1.7999999523162842, + "bumpTile1": 2.5999999046325684, + "constantTokens": [], + "constantValues": [], + "depthAttenuation": 200, + "distortAmount": 0.15000000596046448, + "foamColor0": Uint8Array [ + 51, + 126, + 174, + 38, + ], + "foamColor1": Uint8Array [ + 255, + 255, + 255, + 191, + ], + "foamDepthAttenuation": 0.8999999761581421, + "foamDissolve": 0.949999988079071, + "foamSpawn": 0.5, + "materialFilename": 0, + "patternAngle": 0, + "patternColor": Uint8Array [ + 255, + 255, + 255, + 0, + ], + "patternEdge": 1, + "patternSpeed": 1, + "patternTile": 1.7999999523162842, + "surfaceDeepColor": Uint8Array [ + 50, + 16, + 9, + 0, + ], + "surfaceFresnel": 2.5, + "surfaceShallowColor": Uint8Array [ + 190, + 168, + 103, + 0, + ], + "textureFilenames": [], + "waterFlags": 1, + }, + { + "animAmplitude": 0, + "animChoppiness": -0.4678260087966919, + "animWind": Float32Array [ + -34.065345764160156, + -27.119556427001953, + ], + "bumpAmount": 72.02046203613281, + "bumpAngle0": 70.15873718261719, + "bumpAngle1": 12.396697998046875, + "bumpScale0": 0.22796399891376495, + "bumpScale1": 0.20668700337409973, + "bumpSpeed0": 0.534434974193573, + "bumpSpeed1": 0.7768599987030029, + "bumpTile0": 2.3801651000976562, + "bumpTile1": 13.35779857635498, + "constantTokens": Uint32Array [ + 809906891, + 911119242, + 910462480, + 808137754, + 814574097, + 807298231, + 813734574, + 3101301168, + 1324870500, + 1472906389, + 2953265279, + 3427729611, + 1355227165, + 2983621944, + ], + "constantValues": [ + Float32Array [ + 0.521569013595581, + 0.521569013595581, + 0.521569013595581, + 255, + ], + Float32Array [ + 0.9372550249099731, + 0.8470590114593506, + 0.5803920030593872, + 1, + ], + Float32Array [ + 34.11420440673828, + 0, + 0, + 0, + ], + Float32Array [ + 0.8916540145874023, + 15, + 3, + 0, + ], + Float32Array [ + 0.7337750196456909, + 0.26622501015663147, + 0.3443709909915924, + 1, + ], + Float32Array [ + 0.23426100611686707, + 35, + 1, + 0, + ], + Float32Array [ + 0.49139100313186646, + 0.27417200803756714, + 0.15231800079345703, + 0.5721849799156189, + ], + Float32Array [ + 0, + 0, + 0, + 0, + ], + Float32Array [ + 0, + 0, + 0, + 0, + ], + Float32Array [ + 0, + 0, + 0, + 0, + ], + Float32Array [ + 0, + 0, + 0, + 0, + ], + Float32Array [ + 0, + 0, + 0, + 0, + ], + Float32Array [ + 0, + 0, + 0, + 0, + ], + Float32Array [ + 0, + 0, + 0, + 0, + ], + ], + "depthAttenuation": 431.1845397949219, + "distortAmount": 0.00009999999747378752, + "foamColor0": Uint8Array [ + 51, + 126, + 174, + 38, + ], + "foamColor1": Uint8Array [ + 255, + 255, + 255, + 191, + ], + "foamDepthAttenuation": 0.8999999761581421, + "foamDissolve": 0.949999988079071, + "foamSpawn": 0.5, + "materialFilename": 187551, + "patternAngle": 9.310355186462402, + "patternColor": Uint8Array [ + 179, + 124, + 125, + 34, + ], + "patternEdge": 0.36927199363708496, + "patternSpeed": 0.30727800726890564, + "patternTile": 14.381322860717773, + "surfaceDeepColor": Uint8Array [ + 58, + 94, + 103, + 0, + ], + "surfaceFresnel": 0.8354790210723877, + "surfaceShallowColor": Uint8Array [ + 116, + 218, + 226, + 0, + ], + "textureFilenames": [ + 0, + 186359, + 187574, + 187574, + 187576, + ], + "waterFlags": 1, + }, + { + "animAmplitude": 0, + "animChoppiness": 0, + "animWind": Float32Array [ + -90, + -30, + ], + "bumpAmount": 300, + "bumpAngle0": 0, + "bumpAngle1": 40, + "bumpScale0": 0.10000000149011612, + "bumpScale1": 0.10000000149011612, + "bumpSpeed0": 1, + "bumpSpeed1": 1, + "bumpTile0": 1.7999999523162842, + "bumpTile1": 2.5999999046325684, + "constantTokens": [], + "constantValues": [], + "depthAttenuation": 200, + "distortAmount": 0.15000000596046448, + "foamColor0": Uint8Array [ + 51, + 126, + 174, + 38, + ], + "foamColor1": Uint8Array [ + 255, + 255, + 255, + 191, + ], + "foamDepthAttenuation": 0.8999999761581421, + "foamDissolve": 0.949999988079071, + "foamSpawn": 0.5, + "materialFilename": 0, + "patternAngle": 0, + "patternColor": Uint8Array [ + 255, + 255, + 255, + 0, + ], + "patternEdge": 1, + "patternSpeed": 1, + "patternTile": 1.7999999523162842, + "surfaceDeepColor": Uint8Array [ + 50, + 16, + 9, + 0, + ], + "surfaceFresnel": 2.5, + "surfaceShallowColor": Uint8Array [ + 190, + 168, + 103, + 0, + ], + "textureFilenames": [], + "waterFlags": 1, + }, + ], + "wind": [ + { + "azimuth": 0, + "elevation": 0, + "gust": 0, + "gustFreq": 0, + "gustSpeed": 0, + "noise": 0, + "speed": 0, + }, + { + "azimuth": 0, + "elevation": 0, + "gust": 0, + "gustFreq": 0, + "gustSpeed": 0, + "noise": 0, + "speed": 0, + }, + { + "azimuth": 0, + "elevation": 0, + "gust": 0, + "gustFreq": 0, + "gustSpeed": 0, + "noise": 0, + "speed": 0, + }, + ], + }, + { + "audio": [], + "bindTarget": 0n, + "clouds": { + "layers": [ + { + "altitude": 5500, + "attributes": [ + { + "brightness": 0.3818466365337372, + "density": 0.6525821685791016, + "fadeEnd": 30, + "fadeWidth": 30, + "haze": 0, + "lightIntensity": 1, + "reserved": 0, + "velocity": Float32Array [ + 25.588512420654297, + 50.15349578857422, + ], + }, + { + "brightness": 0.3818466365337372, + "density": 0.6525821685791016, + "fadeEnd": 30, + "fadeWidth": 30, + "haze": 0, + "lightIntensity": 1, + "reserved": 0, + "velocity": Float32Array [ + 25.588512420654297, + 50.15349578857422, + ], + }, + { + "brightness": 1, + "density": 0, + "fadeEnd": 30, + "fadeWidth": 30, + "haze": 1, + "lightIntensity": 1, + "reserved": 0, + "velocity": Float32Array [ + 0, + 0, + ], + }, + ], + "cutOut": 1000, + "depth": 0.011873000301420689, + "extent": 1, + "name": "", + "reserved": 0, + "scale": 4.677585124969482, + "texture": 187584, + }, + { + "altitude": 462.0123291015625, + "attributes": [ + { + "brightness": 1, + "density": 0, + "fadeEnd": 225, + "fadeWidth": 100, + "haze": 1, + "lightIntensity": 1, + "reserved": 0, + "velocity": Float32Array [ + 0, + 0, + ], + }, + { + "brightness": 1, + "density": 0, + "fadeEnd": 225, + "fadeWidth": 100, + "haze": 1, + "lightIntensity": 1, + "reserved": 0, + "velocity": Float32Array [ + 0, + 0, + ], + }, + { + "brightness": 1, + "density": 0, + "fadeEnd": 225, + "fadeWidth": 100, + "haze": 1, + "lightIntensity": 1, + "reserved": 0, + "velocity": Float32Array [ + 0, + 0, + ], + }, + ], + "cutOut": 2000, + "depth": 0.004569000098854303, + "extent": 1, + "name": "", + "reserved": 0, + "scale": 1.630321979522705, + "texture": 188576, + }, + ], + }, + "coloredLightRings": [], + "effect": [], + "ext": { + "brightMax": 0.5, + "brightMin": 0.30000001192092896, + "brightScale": 1, + "brightTime": 2.5, + "darkCoeff": 1.2000000476837158, + "darkExp": 0.800000011920929, + "darkMax": 0.30000001192092896, + "darkMin": 0.10000000149011612, + "darkScale": 1, + "dimTime": 5, + "ext2": {}, + "waterReflectionParams": Float32Array [ + 0, + 0, + 0, + 0, + ], + }, + "flags": 0, + "guid": 1857885940914094600n, + "haze": [ + { + "depthCue": 0.00041099998634308577, + "distRange": Float32Array [ + 1742.653564453125, + 11614.6181640625, + ], + "farColor": Uint8Array [ + 49, + 50, + 45, + 255, + ], + "heightColor": Uint8Array [ + 38, + 74, + 115, + 255, + ], + "heightRange": Float32Array [ + -34.73039245605469, + 140.40118408203125, + ], + "nearColor": Uint8Array [ + 113, + 82, + 38, + 255, + ], + "sunDirRange": Float32Array [ + 0, + 0, + ], + }, + { + "depthCue": 0.00041099998634308577, + "distRange": Float32Array [ + 1742.653564453125, + 11614.6181640625, + ], + "farColor": Uint8Array [ + 49, + 50, + 45, + 255, + ], + "heightColor": Uint8Array [ + 38, + 74, + 115, + 255, + ], + "heightRange": Float32Array [ + -34.73039245605469, + 140.40118408203125, + ], + "nearColor": Uint8Array [ + 113, + 82, + 38, + 255, + ], + "sunDirRange": Float32Array [ + 0, + 0, + ], + }, + { + "depthCue": 0, + "distRange": Float32Array [ + 0, + 0, + ], + "farColor": Uint8Array [ + 0, + 0, + 0, + 255, + ], + "heightColor": Uint8Array [ + 0, + 0, + 0, + 255, + ], + "heightRange": Float32Array [ + 0, + 0, + ], + "nearColor": Uint8Array [ + 0, + 0, + 0, + 255, + ], + "sunDirRange": Float32Array [ + 0, + 0, + ], + }, + ], + "lighting": [ + { + "backlightColor": Uint8Array [ + 255, + 255, + 255, + ], + "backlightIntensity": 1, + "lights": [ + { + "color": Uint8Array [ + 191, + 248, + 255, + ], + "direction": Float32Array [ + 0.7071067690849304, + 0, + 0.7071067690849304, + ], + "intensity": 0, + }, + { + "color": Uint8Array [ + 46, + 39, + 35, + ], + "direction": Float32Array [ + -0.7071067690849304, + -0.0000012868819112554775, + -0.7071067690849304, + ], + "intensity": 0.009999999776482582, + }, + { + "color": Uint8Array [ + 113, + 97, + 83, + ], + "direction": Float32Array [ + -9.099629210140847e-7, + 1.6560650420438527e-12, + 1, + ], + "intensity": 0.10000000149011612, + }, + { + "color": Uint8Array [ + 39, + 48, + 36, + ], + "direction": Float32Array [ + -9.099629210140847e-7, + 1.6560650420438527e-12, + -1, + ], + "intensity": 0.20000000298023224, + }, + { + "color": Uint8Array [ + 44, + 33, + 31, + ], + "direction": Float32Array [ + -0.7071067690849304, + -0.0000012868819112554775, + 0.7071067690849304, + ], + "intensity": 0.05000000074505806, + }, + { + "color": Uint8Array [ + 40, + 32, + 33, + ], + "direction": Float32Array [ + -4.371138828673793e-8, + 1, + 0, + ], + "intensity": 0.0010000000474974513, + }, + { + "color": Uint8Array [ + 41, + 36, + 35, + ], + "direction": Float32Array [ + 0.7071067690849304, + 0, + -0.7071067690849304, + ], + "intensity": 0.10000000149011612, + }, + { + "color": Uint8Array [ + 37, + 27, + 29, + ], + "direction": Float32Array [ + -4.371138828673793e-8, + -1, + 0, + ], + "intensity": 0.009999999776482582, + }, + ], + "shadowInfluence": 0, + }, + { + "backlightColor": Uint8Array [ + 255, + 255, + 255, + ], + "backlightIntensity": 1, + "lights": [ + { + "color": Uint8Array [ + 191, + 248, + 255, + ], + "direction": Float32Array [ + 0.7071067690849304, + 0, + 0.7071067690849304, + ], + "intensity": 0, + }, + { + "color": Uint8Array [ + 46, + 39, + 35, + ], + "direction": Float32Array [ + -0.7071067690849304, + -0.0000012868819112554775, + -0.7071067690849304, + ], + "intensity": 0.009999999776482582, + }, + { + "color": Uint8Array [ + 113, + 97, + 83, + ], + "direction": Float32Array [ + -9.099629210140847e-7, + 1.6560650420438527e-12, + 1, + ], + "intensity": 0.10000000149011612, + }, + { + "color": Uint8Array [ + 39, + 48, + 36, + ], + "direction": Float32Array [ + -9.099629210140847e-7, + 1.6560650420438527e-12, + -1, + ], + "intensity": 0.20000000298023224, + }, + { + "color": Uint8Array [ + 44, + 33, + 31, + ], + "direction": Float32Array [ + -0.7071067690849304, + -0.0000012868819112554775, + 0.7071067690849304, + ], + "intensity": 0.05000000074505806, + }, + { + "color": Uint8Array [ + 40, + 32, + 33, + ], + "direction": Float32Array [ + -4.371138828673793e-8, + 1, + 0, + ], + "intensity": 0.0010000000474974513, + }, + { + "color": Uint8Array [ + 41, + 36, + 35, + ], + "direction": Float32Array [ + 0.7071067690849304, + 0, + -0.7071067690849304, + ], + "intensity": 0.10000000149011612, + }, + { + "color": Uint8Array [ + 37, + 27, + 29, + ], + "direction": Float32Array [ + -4.371138828673793e-8, + -1, + 0, + ], + "intensity": 0.009999999776482582, + }, + ], + "shadowInfluence": 0, + }, + { + "backlightColor": Uint8Array [ + 0, + 0, + 0, + ], + "backlightIntensity": 0, + "lights": [ + { + "color": Uint8Array [ + 255, + 233, + 192, + ], + "direction": Float32Array [ + 0.7071067690849304, + 0, + 0.7071067690849304, + ], + "intensity": 1.2999999523162842, + }, + { + "color": Uint8Array [ + 124, + 172, + 248, + ], + "direction": Float32Array [ + -0.7071067690849304, + -0.0000012868819112554775, + -0.7071067690849304, + ], + "intensity": 0.30000001192092896, + }, + { + "color": Uint8Array [ + 191, + 221, + 255, + ], + "direction": Float32Array [ + 0.29848748445510864, + 0.9186500906944275, + 0.258819043636322, + ], + "intensity": 0.10000000149011612, + }, + { + "color": Uint8Array [ + 188, + 204, + 253, + ], + "direction": Float32Array [ + -0.7814504504203796, + 0.5677568912506104, + 0.258819043636322, + ], + "intensity": 0.10000000149011612, + }, + { + "color": Uint8Array [ + 199, + 190, + 255, + ], + "direction": Float32Array [ + -0.8824164271354675, + 0.39287903904914856, + 0.25881901383399963, + ], + "intensity": 0.10000000149011612, + }, + { + "color": Uint8Array [ + 189, + 222, + 255, + ], + "direction": Float32Array [ + 0.2984875440597534, + -0.9186500310897827, + 0.258819043636322, + ], + "intensity": 0.10000000149011612, + }, + { + "color": Uint8Array [ + 204, + 237, + 255, + ], + "direction": Float32Array [ + -9.099629210140847e-7, + 1.6560650420438527e-12, + 1, + ], + "intensity": 0.30000001192092896, + }, + { + "color": Uint8Array [ + 168, + 254, + 189, + ], + "direction": Float32Array [ + -9.099629210140847e-7, + 1.6560650420438527e-12, + -1, + ], + "intensity": 0.15000000596046448, + }, + ], + "shadowInfluence": 0, + }, + ], + "lightingCharGroups": [], + "name": "", + "nightMods": Uint8Array [ + 255, + 255, + 255, + 133, + ], + "particleFieldCutouts": [], + "particleFields": [ + { + "altitude": 0, + "angle": Float32Array [ + 0, + 0, + ], + "clusterCount": 0, + "clustering": Float32Array [ + 0, + 0, + ], + "depth": 0, + "deviation": 0, + "deviationSpeed": Float32Array [ + 0, + 0, + ], + "extent": 0, + "fade": 0, + "fieldDirection": Float32Array [ + 0, + 0, + 0, + ], + "flags": 0, + "lifetime": Float32Array [ + 0, + 0, + ], + "name": "", + "opacity": Float32Array [ + 0, + 0, + ], + "particleCount": 0, + "period": Float32Array [ + 0, + 0, + ], + "reserved": 0, + "rotation": Float32Array [ + 0, + 0, + ], + "scaleX": Float32Array [ + 0, + 0, + ], + "scaleY": Float32Array [ + 0, + 0, + ], + "seed": 0, + "speed": Float32Array [ + 0, + 0, + ], + "texColRow": Uint32Array [ + 0, + 0, + ], + "texFPS": 0, + "texPath": 0, + "type": 0, + }, + ], + "shapeArray": [ + { + "center": Float32Array [ + -4846.04052734375, + 13746.6103515625, + -4637.400390625, + ], + "fadeHorizInner": 500, + "fadeHorizOuter": 0, + "fadeVertical": 0, + "height": 6206.16796875, + "shapeType": 2, + "vertexArray": [ + Float32Array [ + -7829.61962890625, + 9321.0673828125, + ], + Float32Array [ + -8544.5, + 18632.998046875, + ], + Float32Array [ + -2315.081787109375, + 18144.9296875, + ], + Float32Array [ + -1147.5814208984375, + 8860.22265625, + ], + ], + }, + ], + "sky": {}, + "skyCards": { + "cards": [ + { + "day": { + "azimuth": -3.1322286128997803, + "brightness": 0.7683168053627014, + "density": 0.6336633563041687, + "ext": {}, + "hazeDensity": 0, + "latitude": 0.2787356376647949, + "lensFlare": {}, + "lightIntensity": 1, + "minHaze": 0.5511810183525085, + "scale": Float32Array [ + 23.850574493408203, + 19.080459594726562, + ], + "speed": 0, + "texture": 186349, + "textureUV": Float32Array [ + 1, + 0.6516720056533813, + 0.44175300002098083, + 0.7383180260658264, + ], + }, + "ext": {}, + "flags": 694558725, + "location": Float32Array [ + 0, + 0, + 0, + ], + "material": {}, + "name": "", + "night": { + "azimuth": -3.1322286128997803, + "brightness": 0.7683168053627014, + "density": 0.6336633563041687, + "ext": {}, + "hazeDensity": 0, + "latitude": 0.2787356376647949, + "lensFlare": {}, + "lightIntensity": 1, + "minHaze": 0.5511810183525085, + "scale": Float32Array [ + 23.850574493408203, + 19.080459594726562, + ], + "speed": 0, + "texture": 186349, + "textureUV": Float32Array [ + 1, + 0.6516720056533813, + 0.44175300002098083, + 0.7383180260658264, + ], + }, + }, + { + "day": { + "azimuth": -3.141230583190918, + "brightness": 2, + "density": 1, + "ext": {}, + "hazeDensity": 0, + "latitude": 0.30890804529190063, + "lensFlare": {}, + "lightIntensity": 1, + "minHaze": 0.5511810183525085, + "scale": Float32Array [ + 0.9900990128517151, + 0.7920792102813721, + ], + "speed": 0, + "texture": 186349, + "textureUV": Float32Array [ + 1, + 0.6516720056533813, + 0.44175300002098083, + 0.7383180260658264, + ], + }, + "ext": {}, + "flags": 694558727, + "location": Float32Array [ + 0, + 0, + 0, + ], + "material": {}, + "name": "", + "night": { + "azimuth": -3.141230583190918, + "brightness": 2, + "density": 1, + "ext": {}, + "hazeDensity": 0, + "latitude": 0.30890804529190063, + "lensFlare": {}, + "lightIntensity": 1, + "minHaze": 0.5511810183525085, + "scale": Float32Array [ + 0.9900990128517151, + 0.7920792102813721, + ], + "speed": 0, + "texture": 186349, + "textureUV": Float32Array [ + 1, + 0.6516720056533813, + 0.44175300002098083, + 0.7383180260658264, + ], + }, + }, + { + "day": { + "azimuth": -3.3969810009002686, + "brightness": 0.2385057508945465, + "density": 0.39470699429512024, + "ext": {}, + "hazeDensity": 0.3886969983577728, + "latitude": 0.17528735101222992, + "lensFlare": {}, + "lightIntensity": 2, + "minHaze": 0.6562860012054443, + "scale": Float32Array [ + 12.356321334838867, + 2.3258962631225586, + ], + "speed": 0.0038112495094537735, + "texture": 190422, + "textureUV": Float32Array [ + 0, + 1, + 1, + 0.7951670289039612, + ], + }, + "ext": {}, + "flags": 560865285, + "location": Float32Array [ + 0, + 0, + 0, + ], + "material": {}, + "name": "", + "night": { + "azimuth": -3.3969810009002686, + "brightness": 0.2385057508945465, + "density": 0.39470699429512024, + "ext": {}, + "hazeDensity": 0.3886969983577728, + "latitude": 0.17528735101222992, + "lensFlare": {}, + "lightIntensity": 2, + "minHaze": 0.6562860012054443, + "scale": Float32Array [ + 12.356321334838867, + 2.3258962631225586, + ], + "speed": 0.0038112495094537735, + "texture": 190422, + "textureUV": Float32Array [ + 0, + 1, + 1, + 0.7951670289039612, + ], + }, + }, + { + "day": { + "azimuth": -0.24371802806854248, + "brightness": 1.1487890481948853, + "density": 0.5166860222816467, + "ext": {}, + "hazeDensity": 0.3068050146102905, + "latitude": 0.09482758492231369, + "lensFlare": {}, + "lightIntensity": 1, + "minHaze": 0.6816610097885132, + "scale": Float32Array [ + 27.384614944458008, + 5.842050552368164, + ], + "speed": 0.006719822529703379, + "texture": 190422, + "textureUV": Float32Array [ + 0, + 1, + 1, + 0.7951670289039612, + ], + }, + "ext": {}, + "flags": 879914764, + "location": Float32Array [ + 0, + 0, + 0, + ], + "material": {}, + "name": "", + "night": { + "azimuth": -0.24371802806854248, + "brightness": 1.1487890481948853, + "density": 0.5166860222816467, + "ext": {}, + "hazeDensity": 0.3068050146102905, + "latitude": 0.09482758492231369, + "lensFlare": {}, + "lightIntensity": 1, + "minHaze": 0.6816610097885132, + "scale": Float32Array [ + 27.384614944458008, + 5.842050552368164, + ], + "speed": 0.006719822529703379, + "texture": 190422, + "textureUV": Float32Array [ + 0, + 1, + 1, + 0.7951670289039612, + ], + }, + }, + { + "day": { + "azimuth": -4.883838176727295, + "brightness": 0.9396551847457886, + "density": 0.37212643027305603, + "ext": {}, + "hazeDensity": 1, + "latitude": 0.23275862634181976, + "lensFlare": {}, + "lightIntensity": 1, + "minHaze": 0, + "scale": Float32Array [ + 11.392404556274414, + 4.0290207862854, + ], + "speed": 0.002808271674439311, + "texture": 190422, + "textureUV": Float32Array [ + 0, + 1, + 0.5143839716911316, + 0.20828500390052795, + ], + }, + "ext": {}, + "flags": 896488192, + "location": Float32Array [ + 0, + 0, + 0, + ], + "material": {}, + "name": "", + "night": { + "azimuth": -4.883838176727295, + "brightness": 0.9396551847457886, + "density": 0.37212643027305603, + "ext": {}, + "hazeDensity": 1, + "latitude": 0.23275862634181976, + "lensFlare": {}, + "lightIntensity": 1, + "minHaze": 0, + "scale": Float32Array [ + 11.392404556274414, + 4.0290207862854, + ], + "speed": 0.002808271674439311, + "texture": 190422, + "textureUV": Float32Array [ + 0, + 1, + 0.5143839716911316, + 0.20828500390052795, + ], + }, + }, + { + "day": { + "azimuth": -2.130228042602539, + "brightness": 1.09551203250885, + "density": 0.43153101205825806, + "ext": {}, + "hazeDensity": 0.4071510136127472, + "latitude": 0.3002873659133911, + "lensFlare": {}, + "lightIntensity": 1, + "minHaze": 0.6274510025978088, + "scale": Float32Array [ + 12.643678665161133, + 2.0434234142303467, + ], + "speed": 0.0048141335137188435, + "texture": 190422, + "textureUV": Float32Array [ + 0, + 1, + 1, + 0.7951670289039612, + ], + }, + "ext": {}, + "flags": 1030059276, + "location": Float32Array [ + 0, + 0, + 0, + ], + "material": {}, + "name": "", + "night": { + "azimuth": -2.130228042602539, + "brightness": 1.09551203250885, + "density": 0.43153101205825806, + "ext": {}, + "hazeDensity": 0.4071510136127472, + "latitude": 0.3002873659133911, + "lensFlare": {}, + "lightIntensity": 1, + "minHaze": 0.6274510025978088, + "scale": Float32Array [ + 12.643678665161133, + 2.0434234142303467, + ], + "speed": 0.0048141335137188435, + "texture": 190422, + "textureUV": Float32Array [ + 0, + 1, + 1, + 0.7951670289039612, + ], + }, + }, + { + "day": { + "azimuth": -3.9716780185699463, + "brightness": 1.0574712753295898, + "density": 0.6547759771347046, + "ext": {}, + "hazeDensity": 0, + "latitude": 0.3333333432674408, + "lensFlare": {}, + "lightIntensity": 2, + "minHaze": 0.6321839094161987, + "scale": Float32Array [ + 10.011507987976074, + 1.956272006034851, + ], + "speed": 0.004112049471586943, + "texture": 190422, + "textureUV": Float32Array [ + 0, + 1, + 0.1990790069103241, + 0, + ], + }, + "ext": {}, + "flags": 538976264, + "location": Float32Array [ + 0, + 0, + 0, + ], + "material": {}, + "name": "", + "night": { + "azimuth": -3.9716780185699463, + "brightness": 1.0574712753295898, + "density": 0.6547759771347046, + "ext": {}, + "hazeDensity": 0, + "latitude": 0.3333333432674408, + "lensFlare": {}, + "lightIntensity": 2, + "minHaze": 0.6321839094161987, + "scale": Float32Array [ + 10.011507987976074, + 1.956272006034851, + ], + "speed": 0.004112049471586943, + "texture": 190422, + "textureUV": Float32Array [ + 0, + 1, + 0.1990790069103241, + 0, + ], + }, + }, + { + "day": { + "azimuth": -3.141230583190918, + "brightness": 2, + "density": 0, + "ext": {}, + "hazeDensity": 0, + "latitude": 0.30890804529190063, + "lensFlare": {}, + "lightIntensity": 1, + "minHaze": 0.5511810183525085, + "scale": Float32Array [ + 1.436781644821167, + 1.1494252681732178, + ], + "speed": 0, + "texture": 186349, + "textureUV": Float32Array [ + 1, + 0.6516720056533813, + 0.44175300002098083, + 0.7383180260658264, + ], + }, + "ext": {}, + "flags": 694558725, + "location": Float32Array [ + 0, + 0, + 0, + ], + "material": {}, + "name": "", + "night": { + "azimuth": -3.141230583190918, + "brightness": 2, + "density": 0, + "ext": {}, + "hazeDensity": 0, + "latitude": 0.30890804529190063, + "lensFlare": {}, + "lightIntensity": 1, + "minHaze": 0.5511810183525085, + "scale": Float32Array [ + 1.436781644821167, + 1.1494252681732178, + ], + "speed": 0, + "texture": 186349, + "textureUV": Float32Array [ + 1, + 0.6516720056533813, + 0.44175300002098083, + 0.7383180260658264, + ], + }, + }, + ], + }, + "spawns": {}, + "type": 5, + "water": [], + "wind": [], + }, + { + "audio": [], + "bindTarget": 0n, + "clouds": {}, + "coloredLightRings": [], + "effect": [], + "ext": { + "brightMax": 0.5, + "brightMin": 0.30000001192092896, + "brightScale": 1, + "brightTime": 2.5, + "darkCoeff": 1.2000000476837158, + "darkExp": 0.800000011920929, + "darkMax": 0.30000001192092896, + "darkMin": 0.10000000149011612, + "darkScale": 1, + "dimTime": 5, + "ext2": {}, + "waterReflectionParams": Float32Array [ + 0, + 0, + 0, + 0, + ], + }, + "flags": 0, + "guid": 1861299603972850178n, + "haze": [], + "lighting": [], + "lightingCharGroups": [], + "name": "", + "nightMods": Uint8Array [ + 255, + 255, + 255, + 133, + ], + "particleFieldCutouts": [], + "particleFields": [ + { + "altitude": 0, + "angle": Float32Array [ + 0, + 0, + ], + "clusterCount": 0, + "clustering": Float32Array [ + 0, + 0, + ], + "depth": 0, + "deviation": 0, + "deviationSpeed": Float32Array [ + 0, + 0, + ], + "extent": 0, + "fade": 0, + "fieldDirection": Float32Array [ + 0, + 0, + 0, + ], + "flags": 0, + "lifetime": Float32Array [ + 0, + 0, + ], + "name": "", + "opacity": Float32Array [ + 0, + 0, + ], + "particleCount": 0, + "period": Float32Array [ + 0, + 0, + ], + "reserved": 0, + "rotation": Float32Array [ + 0, + 0, + ], + "scaleX": Float32Array [ + 0, + 0, + ], + "scaleY": Float32Array [ + 0, + 0, + ], + "seed": 0, + "speed": Float32Array [ + 0, + 0, + ], + "texColRow": Uint32Array [ + 0, + 0, + ], + "texFPS": 0, + "texPath": 0, + "type": 0, + }, + ], + "shapeArray": [], + "sky": {}, + "skyCards": { + "cards": [ + { + "day": { + "azimuth": -3.132233142852783, + "brightness": 0.7683168053627014, + "density": 0.6336633563041687, + "ext": {}, + "hazeDensity": 0, + "latitude": 0.2787356376647949, + "lensFlare": {}, + "lightIntensity": 1, + "minHaze": 0.5511810183525085, + "scale": Float32Array [ + 23.850574493408203, + 19.080459594726562, + ], + "speed": 0, + "texture": 186349, + "textureUV": Float32Array [ + 1, + 0.6516720056533813, + 0.44175300002098083, + 0.7383180260658264, + ], + }, + "ext": {}, + "flags": 694558725, + "location": Float32Array [ + 0, + 0, + 0, + ], + "material": {}, + "name": "", + "night": { + "azimuth": -3.110260486602783, + "brightness": 0.26138612627983093, + "density": 1, + "ext": {}, + "hazeDensity": 0, + "latitude": 0.28316831588745117, + "lensFlare": {}, + "lightIntensity": 1, + "minHaze": 0.5511810183525085, + "scale": Float32Array [ + 23.850574493408203, + 19.080459594726562, + ], + "speed": 0, + "texture": 186349, + "textureUV": Float32Array [ + 1, + 0.6516720056533813, + 0.44175300002098083, + 0.7383180260658264, + ], + }, + }, + { + "day": { + "azimuth": -3.141235113143921, + "brightness": 2, + "density": 1, + "ext": {}, + "hazeDensity": 0, + "latitude": 0.30890804529190063, + "lensFlare": {}, + "lightIntensity": 1, + "minHaze": 0.5511810183525085, + "scale": Float32Array [ + 0.9900990128517151, + 0.7920792102813721, + ], + "speed": 0, + "texture": 186349, + "textureUV": Float32Array [ + 1, + 0.6516720056533813, + 0.44175300002098083, + 0.7383180260658264, + ], + }, + "ext": {}, + "flags": 694558727, + "location": Float32Array [ + 0, + 0, + 0, + ], + "material": {}, + "name": "", + "night": { + "azimuth": -3.141235113143921, + "brightness": 2, + "density": 0, + "ext": {}, + "hazeDensity": 0, + "latitude": 0.30890804529190063, + "lensFlare": {}, + "lightIntensity": 1, + "minHaze": 0.5511810183525085, + "scale": Float32Array [ + 1.436781644821167, + 1.1494252681732178, + ], + "speed": 0, + "texture": 186349, + "textureUV": Float32Array [ + 1, + 0.6516720056533813, + 0.44175300002098083, + 0.7383180260658264, + ], + }, + }, + { + "day": { + "azimuth": -3.3969857692718506, + "brightness": 0.2385057508945465, + "density": 0.39470699429512024, + "ext": {}, + "hazeDensity": 0.3886969983577728, + "latitude": 0.17528735101222992, + "lensFlare": {}, + "lightIntensity": 2, + "minHaze": 0.6562860012054443, + "scale": Float32Array [ + 12.356321334838867, + 2.3258962631225586, + ], + "speed": 0.003811254631727934, + "texture": 190422, + "textureUV": Float32Array [ + 0, + 1, + 1, + 0.7951670289039612, + ], + }, + "ext": {}, + "flags": 560865285, + "location": Float32Array [ + 0, + 0, + 0, + ], + "material": {}, + "name": "", + "night": { + "azimuth": -3.3969857692718506, + "brightness": 0.2385057508945465, + "density": 0.39470699429512024, + "ext": {}, + "hazeDensity": 0.3886969983577728, + "latitude": 0.17528735101222992, + "lensFlare": {}, + "lightIntensity": 2, + "minHaze": 0.6562860012054443, + "scale": Float32Array [ + 12.356321334838867, + 2.3258962631225586, + ], + "speed": 0.003811254631727934, + "texture": 190422, + "textureUV": Float32Array [ + 0, + 1, + 1, + 0.7951670289039612, + ], + }, + }, + { + "day": { + "azimuth": -0.24371840059757233, + "brightness": 1.1487890481948853, + "density": 0.5166860222816467, + "ext": {}, + "hazeDensity": 0.3068050146102905, + "latitude": 0.09482758492231369, + "lensFlare": {}, + "lightIntensity": 1, + "minHaze": 0.6816610097885132, + "scale": Float32Array [ + 27.384614944458008, + 5.842050552368164, + ], + "speed": 0.006719832308590412, + "texture": 190422, + "textureUV": Float32Array [ + 0, + 1, + 1, + 0.7951670289039612, + ], + }, + "ext": {}, + "flags": 879914764, + "location": Float32Array [ + 0, + 0, + 0, + ], + "material": {}, + "name": "", + "night": { + "azimuth": -0.24371840059757233, + "brightness": 1.1487890481948853, + "density": 0.5166860222816467, + "ext": {}, + "hazeDensity": 0.3068050146102905, + "latitude": 0.09482758492231369, + "lensFlare": {}, + "lightIntensity": 1, + "minHaze": 0.6816610097885132, + "scale": Float32Array [ + 27.384614944458008, + 5.842050552368164, + ], + "speed": 0.006719832308590412, + "texture": 190422, + "textureUV": Float32Array [ + 0, + 1, + 1, + 0.7951670289039612, + ], + }, + }, + { + "day": { + "azimuth": -4.883838176727295, + "brightness": 0.9396551847457886, + "density": 0.37212643027305603, + "ext": {}, + "hazeDensity": 1, + "latitude": 0.23275862634181976, + "lensFlare": {}, + "lightIntensity": 1, + "minHaze": 0, + "scale": Float32Array [ + 11.392404556274414, + 4.0290207862854, + ], + "speed": 0.002808275632560253, + "texture": 190422, + "textureUV": Float32Array [ + 0, + 1, + 0.5143839716911316, + 0.20828500390052795, + ], + }, + "ext": {}, + "flags": 896488192, + "location": Float32Array [ + 0, + 0, + 0, + ], + "material": {}, + "name": "", + "night": { + "azimuth": -4.883838176727295, + "brightness": 0.9396551847457886, + "density": 0.37212643027305603, + "ext": {}, + "hazeDensity": 1, + "latitude": 0.23275862634181976, + "lensFlare": {}, + "lightIntensity": 1, + "minHaze": 0, + "scale": Float32Array [ + 11.392404556274414, + 4.0290207862854, + ], + "speed": 0.002808275632560253, + "texture": 190422, + "textureUV": Float32Array [ + 0, + 1, + 0.5143839716911316, + 0.20828500390052795, + ], + }, + }, + { + "day": { + "azimuth": -2.1302316188812256, + "brightness": 1.09551203250885, + "density": 0.43153101205825806, + "ext": {}, + "hazeDensity": 0.4071510136127472, + "latitude": 0.3002873659133911, + "lensFlare": {}, + "lightIntensity": 1, + "minHaze": 0.6274510025978088, + "scale": Float32Array [ + 12.643678665161133, + 2.0434234142303467, + ], + "speed": 0.00481414096429944, + "texture": 190422, + "textureUV": Float32Array [ + 0, + 1, + 1, + 0.7951670289039612, + ], + }, + "ext": {}, + "flags": 1030059276, + "location": Float32Array [ + 0, + 0, + 0, + ], + "material": {}, + "name": "", + "night": { + "azimuth": -2.1302316188812256, + "brightness": 1.09551203250885, + "density": 0.43153101205825806, + "ext": {}, + "hazeDensity": 0.4071510136127472, + "latitude": 0.3002873659133911, + "lensFlare": {}, + "lightIntensity": 1, + "minHaze": 0.6274510025978088, + "scale": Float32Array [ + 12.643678665161133, + 2.0434234142303467, + ], + "speed": 0.00481414096429944, + "texture": 190422, + "textureUV": Float32Array [ + 0, + 1, + 1, + 0.7951670289039612, + ], + }, + }, + { + "day": { + "azimuth": -3.9716837406158447, + "brightness": 1.0574712753295898, + "density": 0.6547759771347046, + "ext": {}, + "hazeDensity": 0, + "latitude": 0.3333333432674408, + "lensFlare": {}, + "lightIntensity": 2, + "minHaze": 0.6321839094161987, + "scale": Float32Array [ + 10.011507987976074, + 1.956272006034851, + ], + "speed": 0.004112056456506252, + "texture": 190422, + "textureUV": Float32Array [ + 0, + 1, + 0.1990790069103241, + 0, + ], + }, + "ext": {}, + "flags": 538976264, + "location": Float32Array [ + 0, + 0, + 0, + ], + "material": {}, + "name": "", + "night": { + "azimuth": -3.9716837406158447, + "brightness": 1.0574712753295898, + "density": 0.6547759771347046, + "ext": {}, + "hazeDensity": 0, + "latitude": 0.3333333432674408, + "lensFlare": {}, + "lightIntensity": 2, + "minHaze": 0.6321839094161987, + "scale": Float32Array [ + 10.011507987976074, + 1.956272006034851, + ], + "speed": 0.004112056456506252, + "texture": 190422, + "textureUV": Float32Array [ + 0, + 1, + 0.1990790069103241, + 0, + ], + }, + }, + { + "day": { + "azimuth": -3.141235113143921, + "brightness": 2, + "density": 0, + "ext": {}, + "hazeDensity": 0, + "latitude": 0.30890804529190063, + "lensFlare": {}, + "lightIntensity": 1, + "minHaze": 0.5511810183525085, + "scale": Float32Array [ + 1.436781644821167, + 1.1494252681732178, + ], + "speed": 0, + "texture": 186349, + "textureUV": Float32Array [ + 1, + 0.6516720056533813, + 0.44175300002098083, + 0.7383180260658264, + ], + }, + "ext": {}, + "flags": 694558725, + "location": Float32Array [ + 0, + 0, + 0, + ], + "material": {}, + "name": "", + "night": { + "azimuth": -3.141235113143921, + "brightness": 2, + "density": 1, + "ext": {}, + "hazeDensity": 0, + "latitude": 0.30890804529190063, + "lensFlare": {}, + "lightIntensity": 1, + "minHaze": 0.5511810183525085, + "scale": Float32Array [ + 1.436781644821167, + 1.1494252681732178, + ], + "speed": 0, + "texture": 186349, + "textureUV": Float32Array [ + 0.2653465270996094, + 0, + 0.4554455578327179, + 0.6772277355194092, + ], + }, + }, + ], + }, + "spawns": {}, + "type": 3, + "water": [], + "wind": [], + }, + { + "audio": [], + "bindTarget": 0n, + "clouds": {}, + "coloredLightRings": [], + "effect": [], + "ext": { + "brightMax": 0.5, + "brightMin": 0.30000001192092896, + "brightScale": 1, + "brightTime": 2.5, + "darkCoeff": 1.2000000476837158, + "darkExp": 0.800000011920929, + "darkMax": 0.30000001192092896, + "darkMin": 0.10000000149011612, + "darkScale": 1, + "dimTime": 5, + "ext2": {}, + "waterReflectionParams": Float32Array [ + 0, + 0, + 0, + 0, + ], + }, + "flags": 0, + "guid": 1863513298836685327n, + "haze": [ + { + "depthCue": 0.00041099998634308577, + "distRange": Float32Array [ + 604.3165283203125, + 2314.900146484375, + ], + "farColor": Uint8Array [ + 23, + 13, + 10, + 255, + ], + "heightColor": Uint8Array [ + 38, + 74, + 115, + 255, + ], + "heightRange": Float32Array [ + -34.73039245605469, + 140.40118408203125, + ], + "nearColor": Uint8Array [ + 2, + 11, + 17, + 255, + ], + "sunDirRange": Float32Array [ + 0, + 0, + ], + }, + { + "depthCue": 0.00041099998634308577, + "distRange": Float32Array [ + 604.3165283203125, + 2314.900146484375, + ], + "farColor": Uint8Array [ + 23, + 13, + 10, + 255, + ], + "heightColor": Uint8Array [ + 38, + 74, + 115, + 255, + ], + "heightRange": Float32Array [ + -34.73039245605469, + 140.40118408203125, + ], + "nearColor": Uint8Array [ + 2, + 11, + 17, + 255, + ], + "sunDirRange": Float32Array [ + 0, + 0, + ], + }, + { + "depthCue": 0, + "distRange": Float32Array [ + 0, + 0, + ], + "farColor": Uint8Array [ + 0, + 0, + 0, + 255, + ], + "heightColor": Uint8Array [ + 0, + 0, + 0, + 255, + ], + "heightRange": Float32Array [ + 0, + 0, + ], + "nearColor": Uint8Array [ + 0, + 0, + 0, + 255, + ], + "sunDirRange": Float32Array [ + 0, + 0, + ], + }, + ], + "lighting": [ + { + "backlightColor": Uint8Array [ + 255, + 255, + 255, + ], + "backlightIntensity": 1, + "lights": [ + { + "color": Uint8Array [ + 191, + 248, + 255, + ], + "direction": Float32Array [ + 0.7071067690849304, + 0, + 0.7071067690849304, + ], + "intensity": 0.07565789669752121, + }, + { + "color": Uint8Array [ + 255, + 45, + 80, + ], + "direction": Float32Array [ + -0.7071067690849304, + -0.0000012868819112554775, + -0.7071067690849304, + ], + "intensity": 0.05921052768826485, + }, + { + "color": Uint8Array [ + 245, + 65, + 103, + ], + "direction": Float32Array [ + -9.099629210140847e-7, + 1.6560650420438527e-12, + 1, + ], + "intensity": 0.12828947603702545, + }, + { + "color": Uint8Array [ + 32, + 147, + 255, + ], + "direction": Float32Array [ + -9.099629210140847e-7, + 1.6560650420438527e-12, + -1, + ], + "intensity": 0.09210526198148727, + }, + { + "color": Uint8Array [ + 255, + 201, + 191, + ], + "direction": Float32Array [ + -0.7071067690849304, + -0.0000012868819112554775, + 0.7071067690849304, + ], + "intensity": 0.12828947603702545, + }, + { + "color": Uint8Array [ + 255, + 190, + 199, + ], + "direction": Float32Array [ + -4.371138828673793e-8, + 1, + 0, + ], + "intensity": 0, + }, + { + "color": Uint8Array [ + 255, + 201, + 191, + ], + "direction": Float32Array [ + 0.7071067690849304, + 0, + -0.7071067690849304, + ], + "intensity": 0, + }, + { + "color": Uint8Array [ + 255, + 190, + 199, + ], + "direction": Float32Array [ + -4.371138828673793e-8, + -1, + 0, + ], + "intensity": 0.04605263099074364, + }, + ], + "shadowInfluence": 0, + }, + { + "backlightColor": Uint8Array [ + 255, + 255, + 255, + ], + "backlightIntensity": 1, + "lights": [ + { + "color": Uint8Array [ + 191, + 248, + 255, + ], + "direction": Float32Array [ + 0.7071067690849304, + 0, + 0.7071067690849304, + ], + "intensity": 0.07565789669752121, + }, + { + "color": Uint8Array [ + 255, + 45, + 80, + ], + "direction": Float32Array [ + -0.7071067690849304, + -0.0000012868819112554775, + -0.7071067690849304, + ], + "intensity": 0.05921052768826485, + }, + { + "color": Uint8Array [ + 245, + 65, + 103, + ], + "direction": Float32Array [ + -9.099629210140847e-7, + 1.6560650420438527e-12, + 1, + ], + "intensity": 0.12828947603702545, + }, + { + "color": Uint8Array [ + 32, + 147, + 255, + ], + "direction": Float32Array [ + -9.099629210140847e-7, + 1.6560650420438527e-12, + -1, + ], + "intensity": 0.09210526198148727, + }, + { + "color": Uint8Array [ + 255, + 201, + 191, + ], + "direction": Float32Array [ + -0.7071067690849304, + -0.0000012868819112554775, + 0.7071067690849304, + ], + "intensity": 0.12828947603702545, + }, + { + "color": Uint8Array [ + 255, + 190, + 199, + ], + "direction": Float32Array [ + -4.371138828673793e-8, + 1, + 0, + ], + "intensity": 0, + }, + { + "color": Uint8Array [ + 255, + 201, + 191, + ], + "direction": Float32Array [ + 0.7071067690849304, + 0, + -0.7071067690849304, + ], + "intensity": 0, + }, + { + "color": Uint8Array [ + 255, + 190, + 199, + ], + "direction": Float32Array [ + -4.371138828673793e-8, + -1, + 0, + ], + "intensity": 0.04605263099074364, + }, + ], + "shadowInfluence": 0, + }, + { + "backlightColor": Uint8Array [ + 0, + 0, + 0, + ], + "backlightIntensity": 0, + "lights": [ + { + "color": Uint8Array [ + 255, + 233, + 192, + ], + "direction": Float32Array [ + 0.7071067690849304, + 0, + 0.7071067690849304, + ], + "intensity": 1.2999999523162842, + }, + { + "color": Uint8Array [ + 124, + 172, + 248, + ], + "direction": Float32Array [ + -0.7071067690849304, + -0.0000012868819112554775, + -0.7071067690849304, + ], + "intensity": 0.30000001192092896, + }, + { + "color": Uint8Array [ + 191, + 221, + 255, + ], + "direction": Float32Array [ + 0.29848748445510864, + 0.9186500906944275, + 0.258819043636322, + ], + "intensity": 0.10000000149011612, + }, + { + "color": Uint8Array [ + 188, + 204, + 253, + ], + "direction": Float32Array [ + -0.7814504504203796, + 0.5677568912506104, + 0.258819043636322, + ], + "intensity": 0.10000000149011612, + }, + { + "color": Uint8Array [ + 199, + 190, + 255, + ], + "direction": Float32Array [ + -0.8824164271354675, + 0.39287903904914856, + 0.25881901383399963, + ], + "intensity": 0.10000000149011612, + }, + { + "color": Uint8Array [ + 189, + 222, + 255, + ], + "direction": Float32Array [ + 0.2984875440597534, + -0.9186500310897827, + 0.258819043636322, + ], + "intensity": 0.10000000149011612, + }, + { + "color": Uint8Array [ + 204, + 237, + 255, + ], + "direction": Float32Array [ + -9.099629210140847e-7, + 1.6560650420438527e-12, + 1, + ], + "intensity": 0.30000001192092896, + }, + { + "color": Uint8Array [ + 168, + 254, + 189, + ], + "direction": Float32Array [ + -9.099629210140847e-7, + 1.6560650420438527e-12, + -1, + ], + "intensity": 0.15000000596046448, + }, + ], + "shadowInfluence": 0, + }, + ], + "lightingCharGroups": [], + "name": "", + "nightMods": Uint8Array [ + 255, + 255, + 255, + 133, + ], + "particleFieldCutouts": [], + "particleFields": [], + "shapeArray": [ + { + "center": Float32Array [ + 3441.169677734375, + -10113.619140625, + -14377.17578125, + ], + "fadeHorizInner": 236.4864959716797, + "fadeHorizOuter": 270.270263671875, + "fadeVertical": 0, + "height": 3271.8984375, + "shapeType": 2, + "vertexArray": [ + Float32Array [ + 5171.3828125, + -6824.7431640625, + ], + Float32Array [ + 6482.388671875, + -7554.24169921875, + ], + Float32Array [ + 7511.03369140625, + -7055.1767578125, + ], + Float32Array [ + 8247.9091796875, + -7938.3544921875, + ], + Float32Array [ + 8025.38818359375, + -9789.3759765625, + ], + Float32Array [ + 4471.203125, + -10861.7265625, + ], + Float32Array [ + 3139.22705078125, + -13402.4951171875, + ], + Float32Array [ + -568.3308715820312, + -13177.501953125, + ], + Float32Array [ + -1365.56982421875, + -9724.919921875, + ], + Float32Array [ + 923.999267578125, + -7045.4326171875, + ], + ], + }, + ], + "sky": {}, + "skyCards": { + "cards": [ + { + "day": { + "azimuth": -3.132225751876831, + "brightness": 0.7683168053627014, + "density": 0.6336633563041687, + "ext": {}, + "hazeDensity": 0, + "latitude": 0.2787356376647949, + "lensFlare": {}, + "lightIntensity": 1, + "minHaze": 0.5511810183525085, + "scale": Float32Array [ + 23.850574493408203, + 19.080459594726562, + ], + "speed": 0, + "texture": 186349, + "textureUV": Float32Array [ + 1, + 0.6516720056533813, + 0.44175300002098083, + 0.7383180260658264, + ], + }, + "ext": {}, + "flags": 694558725, + "location": Float32Array [ + 0, + 0, + 0, + ], + "material": {}, + "name": "", + "night": { + "azimuth": -3.110253095626831, + "brightness": 0.26138612627983093, + "density": 1, + "ext": {}, + "hazeDensity": 0, + "latitude": 0.28316831588745117, + "lensFlare": {}, + "lightIntensity": 1, + "minHaze": 0.5511810183525085, + "scale": Float32Array [ + 23.850574493408203, + 19.080459594726562, + ], + "speed": 0, + "texture": 186349, + "textureUV": Float32Array [ + 1, + 0.6516720056533813, + 0.44175300002098083, + 0.7383180260658264, + ], + }, + }, + { + "day": { + "azimuth": -3.1412277221679688, + "brightness": 2, + "density": 1, + "ext": {}, + "hazeDensity": 0, + "latitude": 0.30890804529190063, + "lensFlare": {}, + "lightIntensity": 1, + "minHaze": 0.5511810183525085, + "scale": Float32Array [ + 0.9900990128517151, + 0.7920792102813721, + ], + "speed": 0, + "texture": 186349, + "textureUV": Float32Array [ + 1, + 0.6516720056533813, + 0.44175300002098083, + 0.7383180260658264, + ], + }, + "ext": {}, + "flags": 694558727, + "location": Float32Array [ + 0, + 0, + 0, + ], + "material": {}, + "name": "", + "night": { + "azimuth": -3.1412277221679688, + "brightness": 2, + "density": 0, + "ext": {}, + "hazeDensity": 0, + "latitude": 0.30890804529190063, + "lensFlare": {}, + "lightIntensity": 1, + "minHaze": 0.5511810183525085, + "scale": Float32Array [ + 1.436781644821167, + 1.1494252681732178, + ], + "speed": 0, + "texture": 186349, + "textureUV": Float32Array [ + 1, + 0.6516720056533813, + 0.44175300002098083, + 0.7383180260658264, + ], + }, + }, + { + "day": { + "azimuth": -3.396977424621582, + "brightness": 0.2385057508945465, + "density": 0.39470699429512024, + "ext": {}, + "hazeDensity": 0.3886969983577728, + "latitude": 0.17528735101222992, + "lensFlare": {}, + "lightIntensity": 2, + "minHaze": 0.6562860012054443, + "scale": Float32Array [ + 12.356321334838867, + 2.3258962631225586, + ], + "speed": 0.0038112455513328314, + "texture": 190422, + "textureUV": Float32Array [ + 0, + 1, + 1, + 0.7951670289039612, + ], + }, + "ext": {}, + "flags": 560865285, + "location": Float32Array [ + 0, + 0, + 0, + ], + "material": {}, + "name": "", + "night": { + "azimuth": -3.396977424621582, + "brightness": 0.2385057508945465, + "density": 0.39470699429512024, + "ext": {}, + "hazeDensity": 0.3886969983577728, + "latitude": 0.17528735101222992, + "lensFlare": {}, + "lightIntensity": 2, + "minHaze": 0.6562860012054443, + "scale": Float32Array [ + 12.356321334838867, + 2.3258962631225586, + ], + "speed": 0.0038112455513328314, + "texture": 190422, + "textureUV": Float32Array [ + 0, + 1, + 1, + 0.7951670289039612, + ], + }, + }, + { + "day": { + "azimuth": -0.24371780455112457, + "brightness": 1.1487890481948853, + "density": 0.5166860222816467, + "ext": {}, + "hazeDensity": 0.3068050146102905, + "latitude": 0.09482758492231369, + "lensFlare": {}, + "lightIntensity": 1, + "minHaze": 0.6816610097885132, + "scale": Float32Array [ + 27.384614944458008, + 5.842050552368164, + ], + "speed": 0.006719816941767931, + "texture": 190422, + "textureUV": Float32Array [ + 0, + 1, + 1, + 0.7951670289039612, + ], + }, + "ext": {}, + "flags": 879914764, + "location": Float32Array [ + 0, + 0, + 0, + ], + "material": {}, + "name": "", + "night": { + "azimuth": -0.24371780455112457, + "brightness": 1.1487890481948853, + "density": 0.5166860222816467, + "ext": {}, + "hazeDensity": 0.3068050146102905, + "latitude": 0.09482758492231369, + "lensFlare": {}, + "lightIntensity": 1, + "minHaze": 0.6816610097885132, + "scale": Float32Array [ + 27.384614944458008, + 5.842050552368164, + ], + "speed": 0.006719816941767931, + "texture": 190422, + "textureUV": Float32Array [ + 0, + 1, + 1, + 0.7951670289039612, + ], + }, + }, + { + "day": { + "azimuth": -4.883838176727295, + "brightness": 0.9396551847457886, + "density": 0.37212643027305603, + "ext": {}, + "hazeDensity": 1, + "latitude": 0.23275862634181976, + "lensFlare": {}, + "lightIntensity": 1, + "minHaze": 0, + "scale": Float32Array [ + 11.392404556274414, + 4.0290207862854, + ], + "speed": 0.0028082686476409435, + "texture": 190422, + "textureUV": Float32Array [ + 0, + 1, + 0.5143839716911316, + 0.20828500390052795, + ], + }, + "ext": {}, + "flags": 896488192, + "location": Float32Array [ + 0, + 0, + 0, + ], + "material": {}, + "name": "", + "night": { + "azimuth": -4.883838176727295, + "brightness": 0.9396551847457886, + "density": 0.37212643027305603, + "ext": {}, + "hazeDensity": 1, + "latitude": 0.23275862634181976, + "lensFlare": {}, + "lightIntensity": 1, + "minHaze": 0, + "scale": Float32Array [ + 11.392404556274414, + 4.0290207862854, + ], + "speed": 0.0028082686476409435, + "texture": 190422, + "textureUV": Float32Array [ + 0, + 1, + 0.5143839716911316, + 0.20828500390052795, + ], + }, + }, + { + "day": { + "azimuth": -2.130225658416748, + "brightness": 1.09551203250885, + "density": 0.43153101205825806, + "ext": {}, + "hazeDensity": 0.4071510136127472, + "latitude": 0.3002873659133911, + "lensFlare": {}, + "lightIntensity": 1, + "minHaze": 0.6274510025978088, + "scale": Float32Array [ + 12.643678665161133, + 2.0434234142303467, + ], + "speed": 0.004814127925783396, + "texture": 190422, + "textureUV": Float32Array [ + 0, + 1, + 1, + 0.7951670289039612, + ], + }, + "ext": {}, + "flags": 1030059276, + "location": Float32Array [ + 0, + 0, + 0, + ], + "material": {}, + "name": "", + "night": { + "azimuth": -2.130225658416748, + "brightness": 1.09551203250885, + "density": 0.43153101205825806, + "ext": {}, + "hazeDensity": 0.4071510136127472, + "latitude": 0.3002873659133911, + "lensFlare": {}, + "lightIntensity": 1, + "minHaze": 0.6274510025978088, + "scale": Float32Array [ + 12.643678665161133, + 2.0434234142303467, + ], + "speed": 0.004814127925783396, + "texture": 190422, + "textureUV": Float32Array [ + 0, + 1, + 1, + 0.7951670289039612, + ], + }, + }, + { + "day": { + "azimuth": -3.9716737270355225, + "brightness": 1.0574712753295898, + "density": 0.6547759771347046, + "ext": {}, + "hazeDensity": 0, + "latitude": 0.3333333432674408, + "lensFlare": {}, + "lightIntensity": 2, + "minHaze": 0.6321839094161987, + "scale": Float32Array [ + 10.011507987976074, + 1.956272006034851, + ], + "speed": 0.00411204481497407, + "texture": 190422, + "textureUV": Float32Array [ + 0, + 1, + 0.1990790069103241, + 0, + ], + }, + "ext": {}, + "flags": 538976264, + "location": Float32Array [ + 0, + 0, + 0, + ], + "material": {}, + "name": "", + "night": { + "azimuth": -3.9716737270355225, + "brightness": 1.0574712753295898, + "density": 0.6547759771347046, + "ext": {}, + "hazeDensity": 0, + "latitude": 0.3333333432674408, + "lensFlare": {}, + "lightIntensity": 2, + "minHaze": 0.6321839094161987, + "scale": Float32Array [ + 10.011507987976074, + 1.956272006034851, + ], + "speed": 0.00411204481497407, + "texture": 190422, + "textureUV": Float32Array [ + 0, + 1, + 0.1990790069103241, + 0, + ], + }, + }, + { + "day": { + "azimuth": -3.1412277221679688, + "brightness": 2, + "density": 0, + "ext": {}, + "hazeDensity": 0, + "latitude": 0.30890804529190063, + "lensFlare": {}, + "lightIntensity": 1, + "minHaze": 0.5511810183525085, + "scale": Float32Array [ + 1.436781644821167, + 1.1494252681732178, + ], + "speed": 0, + "texture": 186349, + "textureUV": Float32Array [ + 1, + 0.6516720056533813, + 0.44175300002098083, + 0.7383180260658264, + ], + }, + "ext": {}, + "flags": 694558725, + "location": Float32Array [ + 0, + 0, + 0, + ], + "material": {}, + "name": "", + "night": { + "azimuth": -3.1412277221679688, + "brightness": 2, + "density": 1, + "ext": {}, + "hazeDensity": 0, + "latitude": 0.30890804529190063, + "lensFlare": {}, + "lightIntensity": 1, + "minHaze": 0.5511810183525085, + "scale": Float32Array [ + 1.436781644821167, + 1.1494252681732178, + ], + "speed": 0, + "texture": 186349, + "textureUV": Float32Array [ + 0.2653465270996094, + 0, + 0.4554455578327179, + 0.6772277355194092, + ], + }, + }, + ], + }, + "spawns": {}, + "type": 5, + "water": [], + "wind": [], + }, + { + "audio": [], + "bindTarget": 0n, + "clouds": {}, + "coloredLightRings": [], + "effect": [], + "ext": { + "brightMax": 0.5, + "brightMin": 0.30000001192092896, + "brightScale": 1, + "brightTime": 2.5, + "darkCoeff": 1.2000000476837158, + "darkExp": 0.800000011920929, + "darkMax": 0.30000001192092896, + "darkMin": 0.10000000149011612, + "darkScale": 1, + "dimTime": 5, + "ext2": {}, + "waterReflectionParams": Float32Array [ + 0, + 0, + 0, + 0, + ], + }, + "flags": 0, + "guid": 1866946459469906491n, + "haze": [ + { + "depthCue": 0.00041099998634308577, + "distRange": Float32Array [ + 562.797607421875, + 5496.4033203125, + ], + "farColor": Uint8Array [ + 160, + 143, + 161, + 255, + ], + "heightColor": Uint8Array [ + 38, + 74, + 115, + 255, + ], + "heightRange": Float32Array [ + -34.73039245605469, + 140.40118408203125, + ], + "nearColor": Uint8Array [ + 20, + 9, + 13, + 255, + ], + "sunDirRange": Float32Array [ + 0, + 0, + ], + }, + { + "depthCue": 0.0002519999979995191, + "distRange": Float32Array [ + 1454.45068359375, + 7136.6904296875, + ], + "farColor": Uint8Array [ + 14, + 11, + 3, + 255, + ], + "heightColor": Uint8Array [ + 146, + 115, + 136, + 255, + ], + "heightRange": Float32Array [ + -283.95294189453125, + 399.01202392578125, + ], + "nearColor": Uint8Array [ + 74, + 68, + 17, + 255, + ], + "sunDirRange": Float32Array [ + -1, + 1, + ], + }, + { + "depthCue": 0, + "distRange": Float32Array [ + 0, + 0, + ], + "farColor": Uint8Array [ + 0, + 0, + 0, + 255, + ], + "heightColor": Uint8Array [ + 0, + 0, + 0, + 255, + ], + "heightRange": Float32Array [ + 0, + 0, + ], + "nearColor": Uint8Array [ + 0, + 0, + 0, + 255, + ], + "sunDirRange": Float32Array [ + 0, + 0, + ], + }, + ], + "lighting": [ + { + "backlightColor": Uint8Array [ + 255, + 255, + 255, + ], + "backlightIntensity": 0.8388158082962036, + "lights": [ + { + "color": Uint8Array [ + 191, + 248, + 255, + ], + "direction": Float32Array [ + 0.7071067690849304, + 0, + 0.7071067690849304, + ], + "intensity": 0.09868421405553818, + }, + { + "color": Uint8Array [ + 255, + 45, + 144, + ], + "direction": Float32Array [ + -0.7071067690849304, + -0.0000012868819112554775, + -0.7071067690849304, + ], + "intensity": 0.016447369009256363, + }, + { + "color": Uint8Array [ + 255, + 221, + 191, + ], + "direction": Float32Array [ + -9.099629210140847e-7, + 1.6560650420438527e-12, + 1, + ], + "intensity": 0, + }, + { + "color": Uint8Array [ + 31, + 255, + 52, + ], + "direction": Float32Array [ + -9.099629210140847e-7, + 1.6560650420438527e-12, + -1, + ], + "intensity": 0.016447369009256363, + }, + { + "color": Uint8Array [ + 255, + 201, + 191, + ], + "direction": Float32Array [ + -0.7071067690849304, + -0.0000012868819112554775, + 0.7071067690849304, + ], + "intensity": 0.02631578966975212, + }, + { + "color": Uint8Array [ + 255, + 190, + 199, + ], + "direction": Float32Array [ + -4.371138828673793e-8, + 1, + 0, + ], + "intensity": 0.016447369009256363, + }, + { + "color": Uint8Array [ + 255, + 201, + 191, + ], + "direction": Float32Array [ + 0.7071067690849304, + 0, + -0.7071067690849304, + ], + "intensity": 0.02302631549537182, + }, + { + "color": Uint8Array [ + 255, + 190, + 199, + ], + "direction": Float32Array [ + -4.371138828673793e-8, + -1, + 0, + ], + "intensity": 0.04605263099074364, + }, + ], + "shadowInfluence": 0, + }, + { + "backlightColor": Uint8Array [ + 255, + 255, + 255, + ], + "backlightIntensity": 1, + "lights": [ + { + "color": Uint8Array [ + 250, + 175, + 121, + ], + "direction": Float32Array [ + 0.6427881717681885, + 0, + 0.7660439610481262, + ], + "intensity": 0.36513158679008484, + }, + { + "color": Uint8Array [ + 255, + 234, + 219, + ], + "direction": Float32Array [ + -0.7071067690849304, + -0.0000012868819112554775, + -0.7071067690849304, + ], + "intensity": 0.12171052396297455, + }, + { + "color": Uint8Array [ + 249, + 15, + 98, + ], + "direction": Float32Array [ + -0.0000010291722674082848, + -1.8730171493647196e-12, + -1, + ], + "intensity": 0.06578947603702545, + }, + { + "color": Uint8Array [ + 161, + 255, + 174, + ], + "direction": Float32Array [ + -0.0000010291722674082848, + -1.8730171493647196e-12, + 1, + ], + "intensity": 0.17117099463939667, + }, + { + "color": Uint8Array [ + 255, + 255, + 255, + ], + "direction": Float32Array [ + -0.7071067690849304, + -0.0000012868819112554775, + 0.7071067690849304, + ], + "intensity": 0.08408399671316147, + }, + { + "color": Uint8Array [ + 255, + 255, + 255, + ], + "direction": Float32Array [ + -4.371138828673793e-8, + 1, + 0, + ], + "intensity": 0.06606599688529968, + }, + { + "color": Uint8Array [ + 255, + 255, + 255, + ], + "direction": Float32Array [ + 0.7071067690849304, + 0, + -0.7071067690849304, + ], + "intensity": 0.08408399671316147, + }, + { + "color": Uint8Array [ + 255, + 255, + 255, + ], + "direction": Float32Array [ + -4.371138828673793e-8, + -1, + 0, + ], + "intensity": 0.08408399671316147, + }, + ], + "shadowInfluence": -0.2937690019607544, + }, + { + "backlightColor": Uint8Array [ + 0, + 0, + 0, + ], + "backlightIntensity": 0, + "lights": [ + { + "color": Uint8Array [ + 255, + 233, + 192, + ], + "direction": Float32Array [ + 0.7071067690849304, + 0, + 0.7071067690849304, + ], + "intensity": 1.2999999523162842, + }, + { + "color": Uint8Array [ + 124, + 172, + 248, + ], + "direction": Float32Array [ + -0.7071067690849304, + -0.0000012868819112554775, + -0.7071067690849304, + ], + "intensity": 0.30000001192092896, + }, + { + "color": Uint8Array [ + 191, + 221, + 255, + ], + "direction": Float32Array [ + 0.29848748445510864, + 0.9186500906944275, + 0.258819043636322, + ], + "intensity": 0.10000000149011612, + }, + { + "color": Uint8Array [ + 188, + 204, + 253, + ], + "direction": Float32Array [ + -0.7814504504203796, + 0.5677568912506104, + 0.258819043636322, + ], + "intensity": 0.10000000149011612, + }, + { + "color": Uint8Array [ + 199, + 190, + 255, + ], + "direction": Float32Array [ + -0.8824164271354675, + 0.39287903904914856, + 0.25881901383399963, + ], + "intensity": 0.10000000149011612, + }, + { + "color": Uint8Array [ + 189, + 222, + 255, + ], + "direction": Float32Array [ + 0.2984875440597534, + -0.9186500310897827, + 0.258819043636322, + ], + "intensity": 0.10000000149011612, + }, + { + "color": Uint8Array [ + 204, + 237, + 255, + ], + "direction": Float32Array [ + -9.099629210140847e-7, + 1.6560650420438527e-12, + 1, + ], + "intensity": 0.30000001192092896, + }, + { + "color": Uint8Array [ + 168, + 254, + 189, + ], + "direction": Float32Array [ + -9.099629210140847e-7, + 1.6560650420438527e-12, + -1, + ], + "intensity": 0.15000000596046448, + }, + ], + "shadowInfluence": 0, + }, + ], + "lightingCharGroups": [], + "name": "", + "nightMods": Uint8Array [ + 255, + 255, + 255, + 133, + ], + "particleFieldCutouts": [], + "particleFields": [], + "shapeArray": [ + { + "center": Float32Array [ + -18259.8203125, + -1276.2271728515625, + -17420.88671875, + ], + "fadeHorizInner": 439.1891784667969, + "fadeHorizOuter": 33.783782958984375, + "fadeVertical": 0, + "height": 2160.4609375, + "shapeType": 2, + "vertexArray": [ + Float32Array [ + -15072.8662109375, + -2360.0380859375, + ], + Float32Array [ + -17671.14453125, + -5648.37548828125, + ], + Float32Array [ + -20754.935546875, + -4619.85009765625, + ], + Float32Array [ + -21446.7734375, + 1124.62646484375, + ], + Float32Array [ + -15534.8291015625, + 3095.921142578125, + ], + ], + }, + ], + "sky": {}, + "skyCards": { + "cards": [ + { + "day": { + "azimuth": -3.1322288513183594, + "brightness": 0.7683168053627014, + "density": 0.6336633563041687, + "ext": {}, + "hazeDensity": 0, + "latitude": 0.2787356376647949, + "lensFlare": {}, + "lightIntensity": 1, + "minHaze": 0.5511810183525085, + "scale": Float32Array [ + 23.850574493408203, + 19.080459594726562, + ], + "speed": 0, + "texture": 186349, + "textureUV": Float32Array [ + 1, + 0.6516720056533813, + 0.44175300002098083, + 0.7383180260658264, + ], + }, + "ext": {}, + "flags": 694558725, + "location": Float32Array [ + 0, + 0, + 0, + ], + "material": {}, + "name": "", + "night": { + "azimuth": -3.1102561950683594, + "brightness": 0.26138612627983093, + "density": 1, + "ext": {}, + "hazeDensity": 0, + "latitude": 0.28316831588745117, + "lensFlare": {}, + "lightIntensity": 1, + "minHaze": 0.5511810183525085, + "scale": Float32Array [ + 23.850574493408203, + 19.080459594726562, + ], + "speed": 0, + "texture": 186349, + "textureUV": Float32Array [ + 1, + 0.6516720056533813, + 0.44175300002098083, + 0.7383180260658264, + ], + }, + }, + { + "day": { + "azimuth": -3.141231060028076, + "brightness": 2, + "density": 1, + "ext": {}, + "hazeDensity": 0, + "latitude": 0.30890804529190063, + "lensFlare": {}, + "lightIntensity": 1, + "minHaze": 0.5511810183525085, + "scale": Float32Array [ + 0.9900990128517151, + 0.7920792102813721, + ], + "speed": 0, + "texture": 186349, + "textureUV": Float32Array [ + 1, + 0.6516720056533813, + 0.44175300002098083, + 0.7383180260658264, + ], + }, + "ext": {}, + "flags": 694558727, + "location": Float32Array [ + 0, + 0, + 0, + ], + "material": {}, + "name": "", + "night": { + "azimuth": -3.141231060028076, + "brightness": 2, + "density": 0, + "ext": {}, + "hazeDensity": 0, + "latitude": 0.30890804529190063, + "lensFlare": {}, + "lightIntensity": 1, + "minHaze": 0.5511810183525085, + "scale": Float32Array [ + 1.436781644821167, + 1.1494252681732178, + ], + "speed": 0, + "texture": 186349, + "textureUV": Float32Array [ + 1, + 0.6516720056533813, + 0.44175300002098083, + 0.7383180260658264, + ], + }, + }, + { + "day": { + "azimuth": -3.3969812393188477, + "brightness": 0.2385057508945465, + "density": 0.39470699429512024, + "ext": {}, + "hazeDensity": 0.3886969983577728, + "latitude": 0.17528735101222992, + "lensFlare": {}, + "lightIntensity": 2, + "minHaze": 0.6562860012054443, + "scale": Float32Array [ + 12.356321334838867, + 2.3258962631225586, + ], + "speed": 0.003811249742284417, + "texture": 190422, + "textureUV": Float32Array [ + 0, + 1, + 1, + 0.7951670289039612, + ], + }, + "ext": {}, + "flags": 560865285, + "location": Float32Array [ + 0, + 0, + 0, + ], + "material": {}, + "name": "", + "night": { + "azimuth": -3.3969812393188477, + "brightness": 0.2385057508945465, + "density": 0.39470699429512024, + "ext": {}, + "hazeDensity": 0.3886969983577728, + "latitude": 0.17528735101222992, + "lensFlare": {}, + "lightIntensity": 2, + "minHaze": 0.6562860012054443, + "scale": Float32Array [ + 12.356321334838867, + 2.3258962631225586, + ], + "speed": 0.003811249742284417, + "texture": 190422, + "textureUV": Float32Array [ + 0, + 1, + 1, + 0.7951670289039612, + ], + }, + }, + { + "day": { + "azimuth": -0.24371805787086487, + "brightness": 1.1487890481948853, + "density": 0.5166860222816467, + "ext": {}, + "hazeDensity": 0.3068050146102905, + "latitude": 0.09482758492231369, + "lensFlare": {}, + "lightIntensity": 1, + "minHaze": 0.6816610097885132, + "scale": Float32Array [ + 27.384614944458008, + 5.842050552368164, + ], + "speed": 0.006719823461025953, + "texture": 190422, + "textureUV": Float32Array [ + 0, + 1, + 1, + 0.7951670289039612, + ], + }, + "ext": {}, + "flags": 879914764, + "location": Float32Array [ + 0, + 0, + 0, + ], + "material": {}, + "name": "", + "night": { + "azimuth": -0.24371805787086487, + "brightness": 1.1487890481948853, + "density": 0.5166860222816467, + "ext": {}, + "hazeDensity": 0.3068050146102905, + "latitude": 0.09482758492231369, + "lensFlare": {}, + "lightIntensity": 1, + "minHaze": 0.6816610097885132, + "scale": Float32Array [ + 27.384614944458008, + 5.842050552368164, + ], + "speed": 0.006719823461025953, + "texture": 190422, + "textureUV": Float32Array [ + 0, + 1, + 1, + 0.7951670289039612, + ], + }, + }, + { + "day": { + "azimuth": -4.883838176727295, + "brightness": 0.9396551847457886, + "density": 0.37212643027305603, + "ext": {}, + "hazeDensity": 1, + "latitude": 0.23275862634181976, + "lensFlare": {}, + "lightIntensity": 1, + "minHaze": 0, + "scale": Float32Array [ + 11.392404556274414, + 4.0290207862854, + ], + "speed": 0.0028082719072699547, + "texture": 190422, + "textureUV": Float32Array [ + 0, + 1, + 0.5143839716911316, + 0.20828500390052795, + ], + }, + "ext": {}, + "flags": 896488192, + "location": Float32Array [ + 0, + 0, + 0, + ], + "material": {}, + "name": "", + "night": { + "azimuth": -4.883838176727295, + "brightness": 0.9396551847457886, + "density": 0.37212643027305603, + "ext": {}, + "hazeDensity": 1, + "latitude": 0.23275862634181976, + "lensFlare": {}, + "lightIntensity": 1, + "minHaze": 0, + "scale": Float32Array [ + 11.392404556274414, + 4.0290207862854, + ], + "speed": 0.0028082719072699547, + "texture": 190422, + "textureUV": Float32Array [ + 0, + 1, + 0.5143839716911316, + 0.20828500390052795, + ], + }, + }, + { + "day": { + "azimuth": -2.130228281021118, + "brightness": 1.09551203250885, + "density": 0.43153101205825806, + "ext": {}, + "hazeDensity": 0.4071510136127472, + "latitude": 0.3002873659133911, + "lensFlare": {}, + "lightIntensity": 1, + "minHaze": 0.6274510025978088, + "scale": Float32Array [ + 12.643678665161133, + 2.0434234142303467, + ], + "speed": 0.004814133979380131, + "texture": 190422, + "textureUV": Float32Array [ + 0, + 1, + 1, + 0.7951670289039612, + ], + }, + "ext": {}, + "flags": 1030059276, + "location": Float32Array [ + 0, + 0, + 0, + ], + "material": {}, + "name": "", + "night": { + "azimuth": -2.130228281021118, + "brightness": 1.09551203250885, + "density": 0.43153101205825806, + "ext": {}, + "hazeDensity": 0.4071510136127472, + "latitude": 0.3002873659133911, + "lensFlare": {}, + "lightIntensity": 1, + "minHaze": 0.6274510025978088, + "scale": Float32Array [ + 12.643678665161133, + 2.0434234142303467, + ], + "speed": 0.004814133979380131, + "texture": 190422, + "textureUV": Float32Array [ + 0, + 1, + 1, + 0.7951670289039612, + ], + }, + }, + { + "day": { + "azimuth": -3.9716782569885254, + "brightness": 1.0574712753295898, + "density": 0.6547759771347046, + "ext": {}, + "hazeDensity": 0, + "latitude": 0.3333333432674408, + "lensFlare": {}, + "lightIntensity": 2, + "minHaze": 0.6321839094161987, + "scale": Float32Array [ + 10.011507987976074, + 1.956272006034851, + ], + "speed": 0.00411204993724823, + "texture": 190422, + "textureUV": Float32Array [ + 0, + 1, + 0.1990790069103241, + 0, + ], + }, + "ext": {}, + "flags": 538976264, + "location": Float32Array [ + 0, + 0, + 0, + ], + "material": {}, + "name": "", + "night": { + "azimuth": -3.9716782569885254, + "brightness": 1.0574712753295898, + "density": 0.6547759771347046, + "ext": {}, + "hazeDensity": 0, + "latitude": 0.3333333432674408, + "lensFlare": {}, + "lightIntensity": 2, + "minHaze": 0.6321839094161987, + "scale": Float32Array [ + 10.011507987976074, + 1.956272006034851, + ], + "speed": 0.00411204993724823, + "texture": 190422, + "textureUV": Float32Array [ + 0, + 1, + 0.1990790069103241, + 0, + ], + }, + }, + { + "day": { + "azimuth": -3.141231060028076, + "brightness": 2, + "density": 0, + "ext": {}, + "hazeDensity": 0, + "latitude": 0.30890804529190063, + "lensFlare": {}, + "lightIntensity": 1, + "minHaze": 0.5511810183525085, + "scale": Float32Array [ + 1.436781644821167, + 1.1494252681732178, + ], + "speed": 0, + "texture": 186349, + "textureUV": Float32Array [ + 1, + 0.6516720056533813, + 0.44175300002098083, + 0.7383180260658264, + ], + }, + "ext": {}, + "flags": 694558725, + "location": Float32Array [ + 0, + 0, + 0, + ], + "material": {}, + "name": "", + "night": { + "azimuth": -3.141231060028076, + "brightness": 2, + "density": 1, + "ext": {}, + "hazeDensity": 0, + "latitude": 0.30890804529190063, + "lensFlare": {}, + "lightIntensity": 1, + "minHaze": 0.5511810183525085, + "scale": Float32Array [ + 1.436781644821167, + 1.1494252681732178, + ], + "speed": 0, + "texture": 186349, + "textureUV": Float32Array [ + 0.2653465270996094, + 0, + 0.4554455578327179, + 0.6772277355194092, + ], + }, + }, + ], + }, + "spawns": {}, + "type": 5, + "water": [], + "wind": [], + }, + { + "audio": [], + "bindTarget": 0n, + "clouds": { + "layers": [ + { + "altitude": 5895.5986328125, + "attributes": [ + { + "brightness": 1, + "density": 0.572160005569458, + "fadeEnd": 30, + "fadeWidth": 30, + "haze": 0, + "lightIntensity": 1, + "reserved": 0, + "velocity": Float32Array [ + 25.588512420654297, + 50.15349578857422, + ], + }, + { + "brightness": 1, + "density": 0.572160005569458, + "fadeEnd": 30, + "fadeWidth": 30, + "haze": 0, + "lightIntensity": 1, + "reserved": 0, + "velocity": Float32Array [ + 25.588512420654297, + 50.15349578857422, + ], + }, + { + "brightness": 1, + "density": 0, + "fadeEnd": 30, + "fadeWidth": 30, + "haze": 1, + "lightIntensity": 1, + "reserved": 0, + "velocity": Float32Array [ + 0, + 0, + ], + }, + ], + "cutOut": 1000, + "depth": 0.011873000301420689, + "extent": 1, + "name": "", + "reserved": 0, + "scale": 4.677585124969482, + "texture": 188574, + }, + { + "altitude": 462.0123291015625, + "attributes": [ + { + "brightness": 1, + "density": 0, + "fadeEnd": 225, + "fadeWidth": 100, + "haze": 1, + "lightIntensity": 1, + "reserved": 0, + "velocity": Float32Array [ + 0, + 0, + ], + }, + { + "brightness": 1, + "density": 0, + "fadeEnd": 225, + "fadeWidth": 100, + "haze": 1, + "lightIntensity": 1, + "reserved": 0, + "velocity": Float32Array [ + 0, + 0, + ], + }, + { + "brightness": 1, + "density": 0, + "fadeEnd": 225, + "fadeWidth": 100, + "haze": 1, + "lightIntensity": 1, + "reserved": 0, + "velocity": Float32Array [ + 0, + 0, + ], + }, + ], + "cutOut": 2000, + "depth": 0.004569000098854303, + "extent": 1, + "name": "", + "reserved": 0, + "scale": 1.630321979522705, + "texture": 188576, + }, + { + "altitude": 30000, + "attributes": [ + { + "brightness": 1, + "density": 0.43103447556495667, + "fadeEnd": 16, + "fadeWidth": 16, + "haze": 1, + "lightIntensity": 0.36925286054611206, + "reserved": 0, + "velocity": Float32Array [ + -290.2298583984375, + -149.42529296875, + ], + }, + { + "brightness": 1, + "density": 0.43103447556495667, + "fadeEnd": 16, + "fadeWidth": 16, + "haze": 1, + "lightIntensity": 0.36925286054611206, + "reserved": 0, + "velocity": Float32Array [ + -290.2298583984375, + -149.42529296875, + ], + }, + { + "brightness": 1, + "density": 1, + "fadeEnd": 16, + "fadeWidth": 16, + "haze": 1, + "lightIntensity": 1, + "reserved": 0, + "velocity": Float32Array [ + 0, + 0, + ], + }, + ], + "cutOut": 100, + "depth": 0, + "extent": 1, + "name": "", + "reserved": 0, + "scale": 1.3074712753295898, + "texture": 195082, + }, + { + "altitude": 30000, + "attributes": [ + { + "brightness": 1, + "density": 1, + "fadeEnd": 16, + "fadeWidth": 16, + "haze": 1, + "lightIntensity": 1, + "reserved": 0, + "velocity": Float32Array [ + -178.160888671875, + 0, + ], + }, + { + "brightness": 1, + "density": 1, + "fadeEnd": 16, + "fadeWidth": 16, + "haze": 1, + "lightIntensity": 1, + "reserved": 0, + "velocity": Float32Array [ + -178.160888671875, + 0, + ], + }, + { + "brightness": 1, + "density": 1, + "fadeEnd": 16, + "fadeWidth": 16, + "haze": 1, + "lightIntensity": 1, + "reserved": 0, + "velocity": Float32Array [ + 0, + 0, + ], + }, + ], + "cutOut": 100, + "depth": 0, + "extent": 1, + "name": "", + "reserved": 0, + "scale": 0.7471264004707336, + "texture": 195082, + }, + { + "altitude": 22801.72265625, + "attributes": [ + { + "brightness": 1, + "density": 1, + "fadeEnd": 16, + "fadeWidth": 16, + "haze": 1, + "lightIntensity": 1, + "reserved": 0, + "velocity": Float32Array [ + -267.2413330078125, + 83.3333740234375, + ], + }, + { + "brightness": 1, + "density": 1, + "fadeEnd": 16, + "fadeWidth": 16, + "haze": 1, + "lightIntensity": 1, + "reserved": 0, + "velocity": Float32Array [ + -267.2413330078125, + 83.3333740234375, + ], + }, + { + "brightness": 1, + "density": 1, + "fadeEnd": 16, + "fadeWidth": 16, + "haze": 1, + "lightIntensity": 1, + "reserved": 0, + "velocity": Float32Array [ + 0, + 0, + ], + }, + ], + "cutOut": 3000, + "depth": 0, + "extent": 1, + "name": "", + "reserved": 0, + "scale": 0.5172414183616638, + "texture": 195082, + }, + { + "altitude": 20689.65625, + "attributes": [ + { + "brightness": 1, + "density": 1, + "fadeEnd": 16, + "fadeWidth": 16, + "haze": 1, + "lightIntensity": 1, + "reserved": 0, + "velocity": Float32Array [ + -163.7930908203125, + 89.0804443359375, + ], + }, + { + "brightness": 1, + "density": 1, + "fadeEnd": 16, + "fadeWidth": 16, + "haze": 1, + "lightIntensity": 1, + "reserved": 0, + "velocity": Float32Array [ + -163.7930908203125, + 89.0804443359375, + ], + }, + { + "brightness": 1, + "density": 1, + "fadeEnd": 16, + "fadeWidth": 16, + "haze": 1, + "lightIntensity": 1, + "reserved": 0, + "velocity": Float32Array [ + 0, + 0, + ], + }, + ], + "cutOut": 3000, + "depth": 0, + "extent": 1, + "name": "", + "reserved": 0, + "scale": 0.8908045887947083, + "texture": 195082, + }, + ], + }, + "coloredLightRings": [], + "effect": [ + { + "clutTexturePath": 909358, + "ext": {}, + "flags": 0, + "focalDepth": 6000, + "focalRange": 4000, + "glow": Uint8Array [ + 98, + 98, + 98, + 0, + ], + "glowAmplify": 0.41243863105773926, + "glowLevel": Uint8Array [ + 51, + 51, + 51, + 0, + ], + "saturation": 1, + "ssaoAmount": 3, + "ssaoBrighten": 0.20000000298023224, + "ssaoContrast": 1, + "ssaoSunScale": 0.5, + "tintAmount": 0, + "tintColor": Uint8Array [ + 0, + 0, + 0, + 0, + ], + "tintFocus": 0, + "tintTargetColor": Uint8Array [ + 0, + 0, + 0, + 0, + ], + }, + { + "clutTexturePath": 909358, + "ext": {}, + "flags": 0, + "focalDepth": 6000, + "focalRange": 4000, + "glow": Uint8Array [ + 98, + 98, + 98, + 0, + ], + "glowAmplify": 0.41243863105773926, + "glowLevel": Uint8Array [ + 51, + 51, + 51, + 0, + ], + "saturation": 1, + "ssaoAmount": 3, + "ssaoBrighten": 0.20000000298023224, + "ssaoContrast": 1, + "ssaoSunScale": 0.5, + "tintAmount": 0, + "tintColor": Uint8Array [ + 0, + 0, + 0, + 0, + ], + "tintFocus": 0, + "tintTargetColor": Uint8Array [ + 0, + 0, + 0, + 0, + ], + }, + { + "clutTexturePath": 0, + "ext": {}, + "flags": 0, + "focalDepth": 6000, + "focalRange": 4000, + "glow": Uint8Array [ + 0, + 0, + 0, + 0, + ], + "glowAmplify": 0, + "glowLevel": Uint8Array [ + 0, + 0, + 0, + 0, + ], + "saturation": 1, + "ssaoAmount": 3, + "ssaoBrighten": 0.20000000298023224, + "ssaoContrast": 1, + "ssaoSunScale": 0.5, + "tintAmount": 0, + "tintColor": Uint8Array [ + 255, + 255, + 255, + 255, + ], + "tintFocus": 0, + "tintTargetColor": Uint8Array [ + 255, + 255, + 255, + 0, + ], + }, + ], + "ext": { + "brightMax": 0.5, + "brightMin": 0.30000001192092896, + "brightScale": 1, + "brightTime": 2.5, + "darkCoeff": 1.2000000476837158, + "darkExp": 0.800000011920929, + "darkMax": 0.30000001192092896, + "darkMin": 0.10000000149011612, + "darkScale": 1, + "dimTime": 5, + "ext2": {}, + "waterReflectionParams": Float32Array [ + 0, + 0, + 0, + 0, + ], + }, + "flags": 0, + "guid": 1868350783349621257n, + "haze": [ + { + "depthCue": 0.00041099998634308577, + "distRange": Float32Array [ + 3522.935791015625, + 5754.12841796875, + ], + "farColor": Uint8Array [ + 13, + 13, + 13, + 255, + ], + "heightColor": Uint8Array [ + 38, + 74, + 115, + 255, + ], + "heightRange": Float32Array [ + -34.73039245605469, + 140.40118408203125, + ], + "nearColor": Uint8Array [ + 40, + 45, + 48, + 255, + ], + "sunDirRange": Float32Array [ + 0, + 0, + ], + }, + { + "depthCue": 0.00041099998634308577, + "distRange": Float32Array [ + 3522.935791015625, + 5754.12841796875, + ], + "farColor": Uint8Array [ + 13, + 13, + 13, + 255, + ], + "heightColor": Uint8Array [ + 38, + 74, + 115, + 255, + ], + "heightRange": Float32Array [ + -34.73039245605469, + 140.40118408203125, + ], + "nearColor": Uint8Array [ + 40, + 45, + 48, + 255, + ], + "sunDirRange": Float32Array [ + 0, + 0, + ], + }, + { + "depthCue": 0, + "distRange": Float32Array [ + 0, + 0, + ], + "farColor": Uint8Array [ + 0, + 0, + 0, + 255, + ], + "heightColor": Uint8Array [ + 0, + 0, + 0, + 255, + ], + "heightRange": Float32Array [ + 0, + 0, + ], + "nearColor": Uint8Array [ + 0, + 0, + 0, + 255, + ], + "sunDirRange": Float32Array [ + 0, + 0, + ], + }, + ], + "lighting": [ + { + "backlightColor": Uint8Array [ + 255, + 255, + 255, + ], + "backlightIntensity": 1, + "lights": [ + { + "color": Uint8Array [ + 191, + 248, + 255, + ], + "direction": Float32Array [ + 0.7071067690849304, + 0, + 0.7071067690849304, + ], + "intensity": 0.699999988079071, + }, + { + "color": Uint8Array [ + 93, + 146, + 179, + ], + "direction": Float32Array [ + -0.7071067690849304, + -0.0000012868819112554775, + -0.7071067690849304, + ], + "intensity": 0.4000000059604645, + }, + { + "color": Uint8Array [ + 196, + 169, + 146, + ], + "direction": Float32Array [ + -9.099629210140847e-7, + 1.6560650420438527e-12, + 1, + ], + "intensity": 0.30150753259658813, + }, + { + "color": Uint8Array [ + 63, + 31, + 255, + ], + "direction": Float32Array [ + -9.099629210140847e-7, + 1.6560650420438527e-12, + -1, + ], + "intensity": 0.25, + }, + { + "color": Uint8Array [ + 255, + 201, + 191, + ], + "direction": Float32Array [ + -0.7071067690849304, + -0.0000012868819112554775, + 0.7071067690849304, + ], + "intensity": 0.20000000298023224, + }, + { + "color": Uint8Array [ + 255, + 190, + 199, + ], + "direction": Float32Array [ + -4.371138828673793e-8, + 1, + 0, + ], + "intensity": 0.20000000298023224, + }, + { + "color": Uint8Array [ + 255, + 201, + 191, + ], + "direction": Float32Array [ + 0.7071067690849304, + 0, + -0.7071067690849304, + ], + "intensity": 0.20000000298023224, + }, + { + "color": Uint8Array [ + 255, + 190, + 199, + ], + "direction": Float32Array [ + -4.371138828673793e-8, + -1, + 0, + ], + "intensity": 0.20000000298023224, + }, + ], + "shadowInfluence": 0, + }, + { + "backlightColor": Uint8Array [ + 255, + 255, + 255, + ], + "backlightIntensity": 1, + "lights": [ + { + "color": Uint8Array [ + 191, + 248, + 255, + ], + "direction": Float32Array [ + 0.7071067690849304, + 0, + 0.7071067690849304, + ], + "intensity": 0.699999988079071, + }, + { + "color": Uint8Array [ + 93, + 146, + 179, + ], + "direction": Float32Array [ + -0.7071067690849304, + -0.0000012868819112554775, + -0.7071067690849304, + ], + "intensity": 0.4000000059604645, + }, + { + "color": Uint8Array [ + 196, + 169, + 146, + ], + "direction": Float32Array [ + -9.099629210140847e-7, + 1.6560650420438527e-12, + 1, + ], + "intensity": 0.30150753259658813, + }, + { + "color": Uint8Array [ + 63, + 31, + 255, + ], + "direction": Float32Array [ + -9.099629210140847e-7, + 1.6560650420438527e-12, + -1, + ], + "intensity": 0.25, + }, + { + "color": Uint8Array [ + 255, + 201, + 191, + ], + "direction": Float32Array [ + -0.7071067690849304, + -0.0000012868819112554775, + 0.7071067690849304, + ], + "intensity": 0.20000000298023224, + }, + { + "color": Uint8Array [ + 255, + 190, + 199, + ], + "direction": Float32Array [ + -4.371138828673793e-8, + 1, + 0, + ], + "intensity": 0.20000000298023224, + }, + { + "color": Uint8Array [ + 255, + 201, + 191, + ], + "direction": Float32Array [ + 0.7071067690849304, + 0, + -0.7071067690849304, + ], + "intensity": 0.20000000298023224, + }, + { + "color": Uint8Array [ + 255, + 190, + 199, + ], + "direction": Float32Array [ + -4.371138828673793e-8, + -1, + 0, + ], + "intensity": 0.20000000298023224, + }, + ], + "shadowInfluence": 0, + }, + { + "backlightColor": Uint8Array [ + 0, + 0, + 0, + ], + "backlightIntensity": 0, + "lights": [ + { + "color": Uint8Array [ + 255, + 233, + 192, + ], + "direction": Float32Array [ + 0.7071067690849304, + 0, + 0.7071067690849304, + ], + "intensity": 1.2999999523162842, + }, + { + "color": Uint8Array [ + 124, + 172, + 248, + ], + "direction": Float32Array [ + -0.7071067690849304, + -0.0000012868819112554775, + -0.7071067690849304, + ], + "intensity": 0.30000001192092896, + }, + { + "color": Uint8Array [ + 191, + 221, + 255, + ], + "direction": Float32Array [ + 0.29848748445510864, + 0.9186500906944275, + 0.258819043636322, + ], + "intensity": 0.10000000149011612, + }, + { + "color": Uint8Array [ + 188, + 204, + 253, + ], + "direction": Float32Array [ + -0.7814504504203796, + 0.5677568912506104, + 0.258819043636322, + ], + "intensity": 0.10000000149011612, + }, + { + "color": Uint8Array [ + 199, + 190, + 255, + ], + "direction": Float32Array [ + -0.8824164271354675, + 0.39287903904914856, + 0.25881901383399963, + ], + "intensity": 0.10000000149011612, + }, + { + "color": Uint8Array [ + 189, + 222, + 255, + ], + "direction": Float32Array [ + 0.2984875440597534, + -0.9186500310897827, + 0.258819043636322, + ], + "intensity": 0.10000000149011612, + }, + { + "color": Uint8Array [ + 204, + 237, + 255, + ], + "direction": Float32Array [ + -9.099629210140847e-7, + 1.6560650420438527e-12, + 1, + ], + "intensity": 0.30000001192092896, + }, + { + "color": Uint8Array [ + 168, + 254, + 189, + ], + "direction": Float32Array [ + -9.099629210140847e-7, + 1.6560650420438527e-12, + -1, + ], + "intensity": 0.15000000596046448, + }, + ], + "shadowInfluence": 0, + }, + ], + "lightingCharGroups": [], + "name": "", + "nightMods": Uint8Array [ + 255, + 255, + 255, + 133, + ], + "particleFieldCutouts": [], + "particleFields": [ + { + "altitude": 0, + "angle": Float32Array [ + 0, + 0, + ], + "clusterCount": 0, + "clustering": Float32Array [ + 0, + 0, + ], + "depth": 0, + "deviation": 0, + "deviationSpeed": Float32Array [ + 0, + 0, + ], + "extent": 0, + "fade": 0, + "fieldDirection": Float32Array [ + 0, + 0, + 0, + ], + "flags": 0, + "lifetime": Float32Array [ + 0, + 0, + ], + "name": "", + "opacity": Float32Array [ + 0, + 0, + ], + "particleCount": 0, + "period": Float32Array [ + 0, + 0, + ], + "reserved": 0, + "rotation": Float32Array [ + 0, + 0, + ], + "scaleX": Float32Array [ + 0, + 0, + ], + "scaleY": Float32Array [ + 0, + 0, + ], + "seed": 0, + "speed": Float32Array [ + 0, + 0, + ], + "texColRow": Uint32Array [ + 0, + 0, + ], + "texFPS": 0, + "texPath": 0, + "type": 0, + }, + ], + "shapeArray": [], + "sky": { + "dayBrightness": 1.2000000476837158, + "dayHazeBottom": 0, + "dayHazeDensity": 1, + "dayHazeFalloff": 0.5988371968269348, + "dayLightIntensity": 1, + "dayStarDensity": 0, + "flags": 0, + "nightBrightness": 1.5, + "nightHazeBottom": 0.4207436442375183, + "nightHazeDensity": 1, + "nightHazeFalloff": 0.4129158556461334, + "nightLightIntensity": 0.40577900409698486, + "nightStarDensity": 3, + "verticalOffset": 0, + }, + "skyCards": {}, + "spawns": {}, + "type": 3, + "water": [ + { + "animAmplitude": 0, + "animChoppiness": -1, + "animWind": Float32Array [ + -16.866567611694336, + -10.41978931427002, + ], + "bumpAmount": 53.96515655517578, + "bumpAngle0": 143.32440185546875, + "bumpAngle1": 142.3592529296875, + "bumpScale0": 0.0956140011548996, + "bumpScale1": 0.0956140011548996, + "bumpSpeed0": 1.309609055519104, + "bumpSpeed1": 0.030842000618577003, + "bumpTile0": 5.013054847717285, + "bumpTile1": 13.660573959350586, + "constantTokens": [], + "constantValues": [], + "depthAttenuation": 11.484257698059082, + "distortAmount": 0.009999999776482582, + "foamColor0": Uint8Array [ + 0, + 0, + 0, + 0, + ], + "foamColor1": Uint8Array [ + 0, + 0, + 0, + 0, + ], + "foamDepthAttenuation": 0, + "foamDissolve": 0, + "foamSpawn": 0, + "materialFilename": 186314, + "patternAngle": 170.55117797851562, + "patternColor": Uint8Array [ + 176, + 180, + 136, + 33, + ], + "patternEdge": 0.509988009929657, + "patternSpeed": 0.6016449928283691, + "patternTile": 10.904817581176758, + "surfaceDeepColor": Uint8Array [ + 23, + 63, + 95, + 0, + ], + "surfaceFresnel": 7.059234142303467, + "surfaceShallowColor": Uint8Array [ + 145, + 193, + 103, + 0, + ], + "textureFilenames": [ + 0, + 186359, + 186361, + ], + "waterFlags": 1, + }, + { + "animAmplitude": 0, + "animChoppiness": -0.4678260087966919, + "animWind": Float32Array [ + -34.065345764160156, + -27.119556427001953, + ], + "bumpAmount": 72.02046203613281, + "bumpAngle0": 70.15873718261719, + "bumpAngle1": 12.396697998046875, + "bumpScale0": 0.22796399891376495, + "bumpScale1": 0.20668700337409973, + "bumpSpeed0": 0.534434974193573, + "bumpSpeed1": 0.7768599987030029, + "bumpTile0": 2.3801651000976562, + "bumpTile1": 13.35779857635498, + "constantTokens": Uint32Array [ + 809906891, + 911119242, + 910462480, + 808137754, + 814574097, + 807298231, + 813734574, + 3101301168, + 1324870500, + 1472906389, + 2953265279, + 3427729611, + 1355227165, + 2983621944, + ], + "constantValues": [ + Float32Array [ + 0.521569013595581, + 0.521569013595581, + 0.521569013595581, + 255, + ], + Float32Array [ + 0.9372550249099731, + 0.8470590114593506, + 0.5803920030593872, + 1, + ], + Float32Array [ + 34.11420440673828, + 0, + 0, + 0, + ], + Float32Array [ + 0.8916540145874023, + 15, + 3, + 0, + ], + Float32Array [ + 0.7337750196456909, + 0.26622501015663147, + 0.3443709909915924, + 1, + ], + Float32Array [ + 0.23426100611686707, + 35, + 1, + 0, + ], + Float32Array [ + 0.49139100313186646, + 0.27417200803756714, + 0.15231800079345703, + 0.5721849799156189, + ], + Float32Array [ + 0, + 0, + 0, + 0, + ], + Float32Array [ + 0, + 0, + 0, + 0, + ], + Float32Array [ + 0, + 0, + 0, + 0, + ], + Float32Array [ + 0, + 0, + 0, + 0, + ], + Float32Array [ + 0, + 0, + 0, + 0, + ], + Float32Array [ + 0, + 0, + 0, + 0, + ], + Float32Array [ + 0, + 0, + 0, + 0, + ], + ], + "depthAttenuation": 431.1845397949219, + "distortAmount": 0.00009999999747378752, + "foamColor0": Uint8Array [ + 51, + 126, + 174, + 38, + ], + "foamColor1": Uint8Array [ + 255, + 255, + 255, + 191, + ], + "foamDepthAttenuation": 0.8999999761581421, + "foamDissolve": 0.949999988079071, + "foamSpawn": 0.5, + "materialFilename": 187551, + "patternAngle": 9.310355186462402, + "patternColor": Uint8Array [ + 179, + 124, + 125, + 34, + ], + "patternEdge": 0.36927199363708496, + "patternSpeed": 0.30727800726890564, + "patternTile": 14.381322860717773, + "surfaceDeepColor": Uint8Array [ + 58, + 94, + 103, + 0, + ], + "surfaceFresnel": 0.8354790210723877, + "surfaceShallowColor": Uint8Array [ + 116, + 218, + 226, + 0, + ], + "textureFilenames": [ + 0, + 186359, + 187574, + 187574, + 187576, + ], + "waterFlags": 1, + }, + { + "animAmplitude": 0, + "animChoppiness": 0, + "animWind": Float32Array [ + -90, + -30, + ], + "bumpAmount": 300, + "bumpAngle0": 0, + "bumpAngle1": 40, + "bumpScale0": 0.10000000149011612, + "bumpScale1": 0.10000000149011612, + "bumpSpeed0": 1, + "bumpSpeed1": 1, + "bumpTile0": 1.7999999523162842, + "bumpTile1": 2.5999999046325684, + "constantTokens": [], + "constantValues": [], + "depthAttenuation": 200, + "distortAmount": 0.15000000596046448, + "foamColor0": Uint8Array [ + 51, + 126, + 174, + 38, + ], + "foamColor1": Uint8Array [ + 255, + 255, + 255, + 191, + ], + "foamDepthAttenuation": 0.8999999761581421, + "foamDissolve": 0.949999988079071, + "foamSpawn": 0.5, + "materialFilename": 0, + "patternAngle": 0, + "patternColor": Uint8Array [ + 255, + 255, + 255, + 0, + ], + "patternEdge": 1, + "patternSpeed": 1, + "patternTile": 1.7999999523162842, + "surfaceDeepColor": Uint8Array [ + 50, + 16, + 9, + 0, + ], + "surfaceFresnel": 2.5, + "surfaceShallowColor": Uint8Array [ + 190, + 168, + 103, + 0, + ], + "textureFilenames": [], + "waterFlags": 1, + }, + ], + "wind": [ + { + "azimuth": 0, + "elevation": 0, + "gust": 26, + "gustFreq": 19, + "gustSpeed": 128, + "noise": 45, + "speed": 24, + }, + { + "azimuth": 7, + "elevation": 0, + "gust": 6, + "gustFreq": 38, + "gustSpeed": 24, + "noise": 4, + "speed": 10, + }, + { + "azimuth": 0, + "elevation": 0, + "gust": 0, + "gustFreq": 0, + "gustSpeed": 0, + "noise": 0, + "speed": 0, + }, + ], + }, + { + "audio": [], + "bindTarget": 0n, + "clouds": { + "layers": [ + { + "altitude": 5895.5986328125, + "attributes": [ + { + "brightness": 1, + "density": 0.572160005569458, + "fadeEnd": 30, + "fadeWidth": 30, + "haze": 0, + "lightIntensity": 1, + "reserved": 0, + "velocity": Float32Array [ + 25.588512420654297, + 50.15349578857422, + ], + }, + { + "brightness": 1, + "density": 0.572160005569458, + "fadeEnd": 30, + "fadeWidth": 30, + "haze": 0, + "lightIntensity": 1, + "reserved": 0, + "velocity": Float32Array [ + 25.588512420654297, + 50.15349578857422, + ], + }, + { + "brightness": 1, + "density": 0, + "fadeEnd": 30, + "fadeWidth": 30, + "haze": 1, + "lightIntensity": 1, + "reserved": 0, + "velocity": Float32Array [ + 0, + 0, + ], + }, + ], + "cutOut": 1000, + "depth": 0.011873000301420689, + "extent": 1, + "name": "", + "reserved": 0, + "scale": 4.677585124969482, + "texture": 188574, + }, + { + "altitude": 462.0123291015625, + "attributes": [ + { + "brightness": 1, + "density": 0, + "fadeEnd": 225, + "fadeWidth": 100, + "haze": 1, + "lightIntensity": 1, + "reserved": 0, + "velocity": Float32Array [ + 0, + 0, + ], + }, + { + "brightness": 1, + "density": 0, + "fadeEnd": 225, + "fadeWidth": 100, + "haze": 1, + "lightIntensity": 1, + "reserved": 0, + "velocity": Float32Array [ + 0, + 0, + ], + }, + { + "brightness": 1, + "density": 0, + "fadeEnd": 225, + "fadeWidth": 100, + "haze": 1, + "lightIntensity": 1, + "reserved": 0, + "velocity": Float32Array [ + 0, + 0, + ], + }, + ], + "cutOut": 2000, + "depth": 0.004569000098854303, + "extent": 1, + "name": "", + "reserved": 0, + "scale": 1.630321979522705, + "texture": 188576, + }, + { + "altitude": 30000, + "attributes": [ + { + "brightness": 1, + "density": 0.43103447556495667, + "fadeEnd": 16, + "fadeWidth": 16, + "haze": 1, + "lightIntensity": 0.36925286054611206, + "reserved": 0, + "velocity": Float32Array [ + -290.2298583984375, + -149.42529296875, + ], + }, + { + "brightness": 1, + "density": 0.43103447556495667, + "fadeEnd": 16, + "fadeWidth": 16, + "haze": 1, + "lightIntensity": 0.36925286054611206, + "reserved": 0, + "velocity": Float32Array [ + -290.2298583984375, + -149.42529296875, + ], + }, + { + "brightness": 1, + "density": 1, + "fadeEnd": 16, + "fadeWidth": 16, + "haze": 1, + "lightIntensity": 1, + "reserved": 0, + "velocity": Float32Array [ + 0, + 0, + ], + }, + ], + "cutOut": 100, + "depth": 0, + "extent": 1, + "name": "", + "reserved": 0, + "scale": 1.3074712753295898, + "texture": 195082, + }, + { + "altitude": 30000, + "attributes": [ + { + "brightness": 1, + "density": 1, + "fadeEnd": 16, + "fadeWidth": 16, + "haze": 1, + "lightIntensity": 1, + "reserved": 0, + "velocity": Float32Array [ + -178.160888671875, + 0, + ], + }, + { + "brightness": 1, + "density": 1, + "fadeEnd": 16, + "fadeWidth": 16, + "haze": 1, + "lightIntensity": 1, + "reserved": 0, + "velocity": Float32Array [ + -178.160888671875, + 0, + ], + }, + { + "brightness": 1, + "density": 1, + "fadeEnd": 16, + "fadeWidth": 16, + "haze": 1, + "lightIntensity": 1, + "reserved": 0, + "velocity": Float32Array [ + 0, + 0, + ], + }, + ], + "cutOut": 100, + "depth": 0, + "extent": 1, + "name": "", + "reserved": 0, + "scale": 0.7471264004707336, + "texture": 195082, + }, + { + "altitude": 22801.72265625, + "attributes": [ + { + "brightness": 1, + "density": 1, + "fadeEnd": 16, + "fadeWidth": 16, + "haze": 1, + "lightIntensity": 1, + "reserved": 0, + "velocity": Float32Array [ + -267.2413330078125, + 83.3333740234375, + ], + }, + { + "brightness": 1, + "density": 1, + "fadeEnd": 16, + "fadeWidth": 16, + "haze": 1, + "lightIntensity": 1, + "reserved": 0, + "velocity": Float32Array [ + -267.2413330078125, + 83.3333740234375, + ], + }, + { + "brightness": 1, + "density": 1, + "fadeEnd": 16, + "fadeWidth": 16, + "haze": 1, + "lightIntensity": 1, + "reserved": 0, + "velocity": Float32Array [ + 0, + 0, + ], + }, + ], + "cutOut": 3000, + "depth": 0, + "extent": 1, + "name": "", + "reserved": 0, + "scale": 0.5172414183616638, + "texture": 195082, + }, + { + "altitude": 20689.65625, + "attributes": [ + { + "brightness": 1, + "density": 1, + "fadeEnd": 16, + "fadeWidth": 16, + "haze": 1, + "lightIntensity": 1, + "reserved": 0, + "velocity": Float32Array [ + -163.7930908203125, + 89.0804443359375, + ], + }, + { + "brightness": 1, + "density": 1, + "fadeEnd": 16, + "fadeWidth": 16, + "haze": 1, + "lightIntensity": 1, + "reserved": 0, + "velocity": Float32Array [ + -163.7930908203125, + 89.0804443359375, + ], + }, + { + "brightness": 1, + "density": 1, + "fadeEnd": 16, + "fadeWidth": 16, + "haze": 1, + "lightIntensity": 1, + "reserved": 0, + "velocity": Float32Array [ + 0, + 0, + ], + }, + ], + "cutOut": 3000, + "depth": 0, + "extent": 1, + "name": "", + "reserved": 0, + "scale": 0.8908045887947083, + "texture": 195082, + }, + ], + }, + "coloredLightRings": [], + "effect": [ + { + "clutTexturePath": 909359, + "ext": {}, + "flags": 0, + "focalDepth": 6000, + "focalRange": 4000, + "glow": Uint8Array [ + 55, + 55, + 55, + 0, + ], + "glowAmplify": 0.3191489279270172, + "glowLevel": Uint8Array [ + 51, + 51, + 51, + 0, + ], + "saturation": 1, + "ssaoAmount": 3, + "ssaoBrighten": 0.20000000298023224, + "ssaoContrast": 1, + "ssaoSunScale": 0.5, + "tintAmount": 0, + "tintColor": Uint8Array [ + 0, + 0, + 0, + 0, + ], + "tintFocus": 0, + "tintTargetColor": Uint8Array [ + 0, + 0, + 0, + 0, + ], + }, + { + "clutTexturePath": 909359, + "ext": {}, + "flags": 0, + "focalDepth": 6000, + "focalRange": 4000, + "glow": Uint8Array [ + 55, + 55, + 55, + 0, + ], + "glowAmplify": 0.3191489279270172, + "glowLevel": Uint8Array [ + 51, + 51, + 51, + 0, + ], + "saturation": 1, + "ssaoAmount": 3, + "ssaoBrighten": 0.20000000298023224, + "ssaoContrast": 1, + "ssaoSunScale": 0.5, + "tintAmount": 0, + "tintColor": Uint8Array [ + 0, + 0, + 0, + 0, + ], + "tintFocus": 0, + "tintTargetColor": Uint8Array [ + 0, + 0, + 0, + 0, + ], + }, + { + "clutTexturePath": 0, + "ext": {}, + "flags": 0, + "focalDepth": 6000, + "focalRange": 4000, + "glow": Uint8Array [ + 0, + 0, + 0, + 0, + ], + "glowAmplify": 0, + "glowLevel": Uint8Array [ + 0, + 0, + 0, + 0, + ], + "saturation": 1, + "ssaoAmount": 3, + "ssaoBrighten": 0.20000000298023224, + "ssaoContrast": 1, + "ssaoSunScale": 0.5, + "tintAmount": 0, + "tintColor": Uint8Array [ + 255, + 255, + 255, + 255, + ], + "tintFocus": 0, + "tintTargetColor": Uint8Array [ + 255, + 255, + 255, + 0, + ], + }, + ], + "ext": { + "brightMax": 0.5, + "brightMin": 0.30000001192092896, + "brightScale": 1, + "brightTime": 2.5, + "darkCoeff": 1.2000000476837158, + "darkExp": 0.800000011920929, + "darkMax": 0.30000001192092896, + "darkMin": 0.10000000149011612, + "darkScale": 1, + "dimTime": 5, + "ext2": {}, + "waterReflectionParams": Float32Array [ + 0, + 0, + 0, + 0, + ], + }, + "flags": 0, + "guid": 1868351169896677902n, + "haze": [ + { + "depthCue": 0.00041099998634308577, + "distRange": Float32Array [ + 1742.653564453125, + 6517.43115234375, + ], + "farColor": Uint8Array [ + 143, + 161, + 155, + 255, + ], + "heightColor": Uint8Array [ + 38, + 74, + 115, + 255, + ], + "heightRange": Float32Array [ + -34.73039245605469, + 140.40118408203125, + ], + "nearColor": Uint8Array [ + 217, + 159, + 77, + 255, + ], + "sunDirRange": Float32Array [ + 0, + 0, + ], + }, + { + "depthCue": 0.0002519999979995191, + "distRange": Float32Array [ + 752.941162109375, + 4178.8232421875, + ], + "farColor": Uint8Array [ + 145, + 118, + 110, + 255, + ], + "heightColor": Uint8Array [ + 146, + 115, + 136, + 255, + ], + "heightRange": Float32Array [ + -283.95294189453125, + 399.01202392578125, + ], + "nearColor": Uint8Array [ + 74, + 42, + 16, + 255, + ], + "sunDirRange": Float32Array [ + -1, + 1, + ], + }, + { + "depthCue": 0, + "distRange": Float32Array [ + 0, + 0, + ], + "farColor": Uint8Array [ + 0, + 0, + 0, + 255, + ], + "heightColor": Uint8Array [ + 0, + 0, + 0, + 255, + ], + "heightRange": Float32Array [ + 0, + 0, + ], + "nearColor": Uint8Array [ + 0, + 0, + 0, + 255, + ], + "sunDirRange": Float32Array [ + 0, + 0, + ], + }, + ], + "lighting": [ + { + "backlightColor": Uint8Array [ + 255, + 255, + 255, + ], + "backlightIntensity": 1, + "lights": [ + { + "color": Uint8Array [ + 191, + 248, + 255, + ], + "direction": Float32Array [ + 0.7071067690849304, + 0, + 0.7071067690849304, + ], + "intensity": 1.100000023841858, + }, + { + "color": Uint8Array [ + 46, + 174, + 255, + ], + "direction": Float32Array [ + -0.7071067690849304, + -0.0000012868819112554775, + -0.7071067690849304, + ], + "intensity": 0.4000000059604645, + }, + { + "color": Uint8Array [ + 255, + 221, + 191, + ], + "direction": Float32Array [ + -9.099629210140847e-7, + 1.6560650420438527e-12, + 1, + ], + "intensity": 0.30000001192092896, + }, + { + "color": Uint8Array [ + 32, + 147, + 255, + ], + "direction": Float32Array [ + -9.099629210140847e-7, + 1.6560650420438527e-12, + -1, + ], + "intensity": 0.25, + }, + { + "color": Uint8Array [ + 255, + 201, + 191, + ], + "direction": Float32Array [ + -0.7071067690849304, + -0.0000012868819112554775, + 0.7071067690849304, + ], + "intensity": 0.20000000298023224, + }, + { + "color": Uint8Array [ + 255, + 190, + 199, + ], + "direction": Float32Array [ + -4.371138828673793e-8, + 1, + 0, + ], + "intensity": 0.20000000298023224, + }, + { + "color": Uint8Array [ + 255, + 201, + 191, + ], + "direction": Float32Array [ + 0.7071067690849304, + 0, + -0.7071067690849304, + ], + "intensity": 0.20000000298023224, + }, + { + "color": Uint8Array [ + 255, + 190, + 199, + ], + "direction": Float32Array [ + -4.371138828673793e-8, + -1, + 0, + ], + "intensity": 0.20000000298023224, + }, + ], + "shadowInfluence": 0, + }, + { + "backlightColor": Uint8Array [ + 255, + 255, + 255, + ], + "backlightIntensity": 1, + "lights": [ + { + "color": Uint8Array [ + 240, + 126, + 45, + ], + "direction": Float32Array [ + 0.7071067690849304, + 0, + 0.7071067690849304, + ], + "intensity": 1.2000000476837158, + }, + { + "color": Uint8Array [ + 255, + 234, + 219, + ], + "direction": Float32Array [ + -0.7071067690849304, + -0.0000012868819112554775, + -0.7071067690849304, + ], + "intensity": 0.12171052396297455, + }, + { + "color": Uint8Array [ + 249, + 15, + 98, + ], + "direction": Float32Array [ + -0.0000010291722674082848, + -1.8730171493647196e-12, + -1, + ], + "intensity": 0.06578947603702545, + }, + { + "color": Uint8Array [ + 161, + 255, + 174, + ], + "direction": Float32Array [ + -0.0000010291722674082848, + -1.8730171493647196e-12, + 1, + ], + "intensity": 0.17117099463939667, + }, + { + "color": Uint8Array [ + 255, + 255, + 255, + ], + "direction": Float32Array [ + -0.7071067690849304, + -0.0000012868819112554775, + 0.7071067690849304, + ], + "intensity": 0.08408399671316147, + }, + { + "color": Uint8Array [ + 255, + 255, + 255, + ], + "direction": Float32Array [ + -4.371138828673793e-8, + 1, + 0, + ], + "intensity": 0.06606599688529968, + }, + { + "color": Uint8Array [ + 255, + 255, + 255, + ], + "direction": Float32Array [ + 0.7071067690849304, + 0, + -0.7071067690849304, + ], + "intensity": 0.08408399671316147, + }, + { + "color": Uint8Array [ + 255, + 255, + 255, + ], + "direction": Float32Array [ + -4.371138828673793e-8, + -1, + 0, + ], + "intensity": 0.08408399671316147, + }, + ], + "shadowInfluence": -0.2937690019607544, + }, + { + "backlightColor": Uint8Array [ + 0, + 0, + 0, + ], + "backlightIntensity": 0, + "lights": [ + { + "color": Uint8Array [ + 255, + 233, + 192, + ], + "direction": Float32Array [ + 0.7071067690849304, + 0, + 0.7071067690849304, + ], + "intensity": 1.2999999523162842, + }, + { + "color": Uint8Array [ + 124, + 172, + 248, + ], + "direction": Float32Array [ + -0.7071067690849304, + -0.0000012868819112554775, + -0.7071067690849304, + ], + "intensity": 0.30000001192092896, + }, + { + "color": Uint8Array [ + 191, + 221, + 255, + ], + "direction": Float32Array [ + 0.29848748445510864, + 0.9186500906944275, + 0.258819043636322, + ], + "intensity": 0.10000000149011612, + }, + { + "color": Uint8Array [ + 188, + 204, + 253, + ], + "direction": Float32Array [ + -0.7814504504203796, + 0.5677568912506104, + 0.258819043636322, + ], + "intensity": 0.10000000149011612, + }, + { + "color": Uint8Array [ + 199, + 190, + 255, + ], + "direction": Float32Array [ + -0.8824164271354675, + 0.39287903904914856, + 0.25881901383399963, + ], + "intensity": 0.10000000149011612, + }, + { + "color": Uint8Array [ + 189, + 222, + 255, + ], + "direction": Float32Array [ + 0.2984875440597534, + -0.9186500310897827, + 0.258819043636322, + ], + "intensity": 0.10000000149011612, + }, + { + "color": Uint8Array [ + 204, + 237, + 255, + ], + "direction": Float32Array [ + -9.099629210140847e-7, + 1.6560650420438527e-12, + 1, + ], + "intensity": 0.30000001192092896, + }, + { + "color": Uint8Array [ + 168, + 254, + 189, + ], + "direction": Float32Array [ + -9.099629210140847e-7, + 1.6560650420438527e-12, + -1, + ], + "intensity": 0.15000000596046448, + }, + ], + "shadowInfluence": 0, + }, + ], + "lightingCharGroups": [], + "name": "", + "nightMods": Uint8Array [ + 255, + 255, + 255, + 133, + ], + "particleFieldCutouts": [], + "particleFields": [ + { + "altitude": 0, + "angle": Float32Array [ + 0, + 0, + ], + "clusterCount": 0, + "clustering": Float32Array [ + 0, + 0, + ], + "depth": 0, + "deviation": 0, + "deviationSpeed": Float32Array [ + 0, + 0, + ], + "extent": 0, + "fade": 0, + "fieldDirection": Float32Array [ + 0, + 0, + 0, + ], + "flags": 0, + "lifetime": Float32Array [ + 0, + 0, + ], + "name": "", + "opacity": Float32Array [ + 0, + 0, + ], + "particleCount": 0, + "period": Float32Array [ + 0, + 0, + ], + "reserved": 0, + "rotation": Float32Array [ + 0, + 0, + ], + "scaleX": Float32Array [ + 0, + 0, + ], + "scaleY": Float32Array [ + 0, + 0, + ], + "seed": 0, + "speed": Float32Array [ + 0, + 0, + ], + "texColRow": Uint32Array [ + 0, + 0, + ], + "texFPS": 0, + "texPath": 0, + "type": 0, + }, + ], + "shapeArray": [], + "sky": { + "dayBrightness": 1.2000000476837158, + "dayHazeBottom": 0, + "dayHazeDensity": 1, + "dayHazeFalloff": 0.5988371968269348, + "dayLightIntensity": 1, + "dayStarDensity": 0, + "flags": 0, + "nightBrightness": 1.5, + "nightHazeBottom": 0.4207436442375183, + "nightHazeDensity": 1, + "nightHazeFalloff": 0.4129158556461334, + "nightLightIntensity": 0.40577900409698486, + "nightStarDensity": 3, + "verticalOffset": 0, + }, + "skyCards": { + "cards": [ + { + "day": { + "azimuth": -3.1322121620178223, + "brightness": 0.7683168053627014, + "density": 0.6336633563041687, + "ext": {}, + "hazeDensity": 0, + "latitude": 0.2787356376647949, + "lensFlare": {}, + "lightIntensity": 1, + "minHaze": 0.5511810183525085, + "scale": Float32Array [ + 23.850574493408203, + 19.080459594726562, + ], + "speed": 0, + "texture": 186349, + "textureUV": Float32Array [ + 1, + 0.6516720056533813, + 0.44175300002098083, + 0.7383180260658264, + ], + }, + "ext": {}, + "flags": 694558725, + "location": Float32Array [ + 0, + 0, + 0, + ], + "material": {}, + "name": "", + "night": { + "azimuth": -3.1102395057678223, + "brightness": 0.26138612627983093, + "density": 1, + "ext": {}, + "hazeDensity": 0, + "latitude": 0.28316831588745117, + "lensFlare": {}, + "lightIntensity": 1, + "minHaze": 0.5511810183525085, + "scale": Float32Array [ + 23.850574493408203, + 19.080459594726562, + ], + "speed": 0, + "texture": 186349, + "textureUV": Float32Array [ + 1, + 0.6516720056533813, + 0.44175300002098083, + 0.7383180260658264, + ], + }, + }, + { + "day": { + "azimuth": -3.14121413230896, + "brightness": 2, + "density": 1, + "ext": {}, + "hazeDensity": 0, + "latitude": 0.30890804529190063, + "lensFlare": {}, + "lightIntensity": 1, + "minHaze": 0.5511810183525085, + "scale": Float32Array [ + 0.9900990128517151, + 0.7920792102813721, + ], + "speed": 0, + "texture": 186349, + "textureUV": Float32Array [ + 1, + 0.6516720056533813, + 0.44175300002098083, + 0.7383180260658264, + ], + }, + "ext": {}, + "flags": 694558727, + "location": Float32Array [ + 0, + 0, + 0, + ], + "material": {}, + "name": "", + "night": { + "azimuth": -3.14121413230896, + "brightness": 2, + "density": 0, + "ext": {}, + "hazeDensity": 0, + "latitude": 0.30890804529190063, + "lensFlare": {}, + "lightIntensity": 1, + "minHaze": 0.5511810183525085, + "scale": Float32Array [ + 1.436781644821167, + 1.1494252681732178, + ], + "speed": 0, + "texture": 186349, + "textureUV": Float32Array [ + 1, + 0.6516720056533813, + 0.44175300002098083, + 0.7383180260658264, + ], + }, + }, + { + "day": { + "azimuth": -3.396963357925415, + "brightness": 0.2385057508945465, + "density": 0.39470699429512024, + "ext": {}, + "hazeDensity": 0.3886969983577728, + "latitude": 0.17528735101222992, + "lensFlare": {}, + "lightIntensity": 2, + "minHaze": 0.6562860012054443, + "scale": Float32Array [ + 12.356321334838867, + 2.3258962631225586, + ], + "speed": 0.003811229718849063, + "texture": 190422, + "textureUV": Float32Array [ + 0, + 1, + 1, + 0.7951670289039612, + ], + }, + "ext": {}, + "flags": 560865285, + "location": Float32Array [ + 0, + 0, + 0, + ], + "material": {}, + "name": "", + "night": { + "azimuth": -3.396963357925415, + "brightness": 0.2385057508945465, + "density": 0.39470699429512024, + "ext": {}, + "hazeDensity": 0.3886969983577728, + "latitude": 0.17528735101222992, + "lensFlare": {}, + "lightIntensity": 2, + "minHaze": 0.6562860012054443, + "scale": Float32Array [ + 12.356321334838867, + 2.3258962631225586, + ], + "speed": 0.003811229718849063, + "texture": 190422, + "textureUV": Float32Array [ + 0, + 1, + 1, + 0.7951670289039612, + ], + }, + }, + { + "day": { + "azimuth": -0.2437167763710022, + "brightness": 1.1487890481948853, + "density": 0.5166860222816467, + "ext": {}, + "hazeDensity": 0.3068050146102905, + "latitude": 0.09482758492231369, + "lensFlare": {}, + "lightIntensity": 1, + "minHaze": 0.6816610097885132, + "scale": Float32Array [ + 27.384614944458008, + 5.842050552368164, + ], + "speed": 0.006719787139445543, + "texture": 190422, + "textureUV": Float32Array [ + 0, + 1, + 1, + 0.7951670289039612, + ], + }, + "ext": {}, + "flags": 879914764, + "location": Float32Array [ + 0, + 0, + 0, + ], + "material": {}, + "name": "", + "night": { + "azimuth": -0.2437167763710022, + "brightness": 1.1487890481948853, + "density": 0.5166860222816467, + "ext": {}, + "hazeDensity": 0.3068050146102905, + "latitude": 0.09482758492231369, + "lensFlare": {}, + "lightIntensity": 1, + "minHaze": 0.6816610097885132, + "scale": Float32Array [ + 27.384614944458008, + 5.842050552368164, + ], + "speed": 0.006719787139445543, + "texture": 190422, + "textureUV": Float32Array [ + 0, + 1, + 1, + 0.7951670289039612, + ], + }, + }, + { + "day": { + "azimuth": -4.883838176727295, + "brightness": 0.9396551847457886, + "density": 0.37212643027305603, + "ext": {}, + "hazeDensity": 1, + "latitude": 0.23275862634181976, + "lensFlare": {}, + "lightIntensity": 1, + "minHaze": 0, + "scale": Float32Array [ + 11.392404556274414, + 4.0290207862854, + ], + "speed": 0.00280825630761683, + "texture": 190422, + "textureUV": Float32Array [ + 0, + 1, + 0.5143839716911316, + 0.20828500390052795, + ], + }, + "ext": {}, + "flags": 896488192, + "location": Float32Array [ + 0, + 0, + 0, + ], + "material": {}, + "name": "", + "night": { + "azimuth": -4.883838176727295, + "brightness": 0.9396551847457886, + "density": 0.37212643027305603, + "ext": {}, + "hazeDensity": 1, + "latitude": 0.23275862634181976, + "lensFlare": {}, + "lightIntensity": 1, + "minHaze": 0, + "scale": Float32Array [ + 11.392404556274414, + 4.0290207862854, + ], + "speed": 0.00280825630761683, + "texture": 190422, + "textureUV": Float32Array [ + 0, + 1, + 0.5143839716911316, + 0.20828500390052795, + ], + }, + }, + { + "day": { + "azimuth": -2.1302149295806885, + "brightness": 1.09551203250885, + "density": 0.43153101205825806, + "ext": {}, + "hazeDensity": 0.4071510136127472, + "latitude": 0.3002873659133911, + "lensFlare": {}, + "lightIntensity": 1, + "minHaze": 0.6274510025978088, + "scale": Float32Array [ + 12.643678665161133, + 2.0434234142303467, + ], + "speed": 0.00481410464271903, + "texture": 190422, + "textureUV": Float32Array [ + 0, + 1, + 1, + 0.7951670289039612, + ], + }, + "ext": {}, + "flags": 1030059276, + "location": Float32Array [ + 0, + 0, + 0, + ], + "material": {}, + "name": "", + "night": { + "azimuth": -2.1302149295806885, + "brightness": 1.09551203250885, + "density": 0.43153101205825806, + "ext": {}, + "hazeDensity": 0.4071510136127472, + "latitude": 0.3002873659133911, + "lensFlare": {}, + "lightIntensity": 1, + "minHaze": 0.6274510025978088, + "scale": Float32Array [ + 12.643678665161133, + 2.0434234142303467, + ], + "speed": 0.00481410464271903, + "texture": 190422, + "textureUV": Float32Array [ + 0, + 1, + 1, + 0.7951670289039612, + ], + }, + }, + { + "day": { + "azimuth": -3.9716567993164062, + "brightness": 1.0574712753295898, + "density": 0.6547759771347046, + "ext": {}, + "hazeDensity": 0, + "latitude": 0.3333333432674408, + "lensFlare": {}, + "lightIntensity": 2, + "minHaze": 0.6321839094161987, + "scale": Float32Array [ + 10.011507987976074, + 1.956272006034851, + ], + "speed": 0.004112023860216141, + "texture": 190422, + "textureUV": Float32Array [ + 0, + 1, + 0.1990790069103241, + 0, + ], + }, + "ext": {}, + "flags": 538976264, + "location": Float32Array [ + 0, + 0, + 0, + ], + "material": {}, + "name": "", + "night": { + "azimuth": -3.9716567993164062, + "brightness": 1.0574712753295898, + "density": 0.6547759771347046, + "ext": {}, + "hazeDensity": 0, + "latitude": 0.3333333432674408, + "lensFlare": {}, + "lightIntensity": 2, + "minHaze": 0.6321839094161987, + "scale": Float32Array [ + 10.011507987976074, + 1.956272006034851, + ], + "speed": 0.004112023860216141, + "texture": 190422, + "textureUV": Float32Array [ + 0, + 1, + 0.1990790069103241, + 0, + ], + }, + }, + { + "day": { + "azimuth": -3.14121413230896, + "brightness": 2, + "density": 0, + "ext": {}, + "hazeDensity": 0, + "latitude": 0.30890804529190063, + "lensFlare": {}, + "lightIntensity": 1, + "minHaze": 0.5511810183525085, + "scale": Float32Array [ + 1.436781644821167, + 1.1494252681732178, + ], + "speed": 0, + "texture": 186349, + "textureUV": Float32Array [ + 1, + 0.6516720056533813, + 0.44175300002098083, + 0.7383180260658264, + ], + }, + "ext": {}, + "flags": 694558725, + "location": Float32Array [ + 0, + 0, + 0, + ], + "material": {}, + "name": "", + "night": { + "azimuth": -3.14121413230896, + "brightness": 2, + "density": 1, + "ext": {}, + "hazeDensity": 0, + "latitude": 0.30890804529190063, + "lensFlare": {}, + "lightIntensity": 1, + "minHaze": 0.5511810183525085, + "scale": Float32Array [ + 1.436781644821167, + 1.1494252681732178, + ], + "speed": 0, + "texture": 186349, + "textureUV": Float32Array [ + 0.2653465270996094, + 0, + 0.4554455578327179, + 0.6772277355194092, + ], + }, + }, + ], + }, + "spawns": {}, + "type": 3, + "water": [ + { + "animAmplitude": 0, + "animChoppiness": -1, + "animWind": Float32Array [ + -16.866567611694336, + -10.41978931427002, + ], + "bumpAmount": 53.96515655517578, + "bumpAngle0": 143.32440185546875, + "bumpAngle1": 142.3592529296875, + "bumpScale0": 0.0956140011548996, + "bumpScale1": 0.0956140011548996, + "bumpSpeed0": 1.309609055519104, + "bumpSpeed1": 0.030842000618577003, + "bumpTile0": 5.013054847717285, + "bumpTile1": 13.660573959350586, + "constantTokens": [], + "constantValues": [], + "depthAttenuation": 11.484257698059082, + "distortAmount": 0.009999999776482582, + "foamColor0": Uint8Array [ + 0, + 0, + 0, + 0, + ], + "foamColor1": Uint8Array [ + 0, + 0, + 0, + 0, + ], + "foamDepthAttenuation": 0, + "foamDissolve": 0, + "foamSpawn": 0, + "materialFilename": 186314, + "patternAngle": 170.55117797851562, + "patternColor": Uint8Array [ + 176, + 180, + 136, + 33, + ], + "patternEdge": 0.509988009929657, + "patternSpeed": 0.6016449928283691, + "patternTile": 10.904817581176758, + "surfaceDeepColor": Uint8Array [ + 23, + 63, + 95, + 0, + ], + "surfaceFresnel": 7.059234142303467, + "surfaceShallowColor": Uint8Array [ + 145, + 193, + 103, + 0, + ], + "textureFilenames": [ + 0, + 186359, + 186361, + ], + "waterFlags": 1, + }, + { + "animAmplitude": 0, + "animChoppiness": -0.4678260087966919, + "animWind": Float32Array [ + -34.065345764160156, + -27.119556427001953, + ], + "bumpAmount": 72.02046203613281, + "bumpAngle0": 70.15873718261719, + "bumpAngle1": 12.396697998046875, + "bumpScale0": 0.22796399891376495, + "bumpScale1": 0.20668700337409973, + "bumpSpeed0": 0.534434974193573, + "bumpSpeed1": 0.7768599987030029, + "bumpTile0": 2.3801651000976562, + "bumpTile1": 13.35779857635498, + "constantTokens": Uint32Array [ + 809906891, + 911119242, + 910462480, + 808137754, + 814574097, + 807298231, + 813734574, + 3101301168, + 1324870500, + 1472906389, + 2953265279, + 3427729611, + 1355227165, + 2983621944, + ], + "constantValues": [ + Float32Array [ + 0.521569013595581, + 0.521569013595581, + 0.521569013595581, + 255, + ], + Float32Array [ + 0.9372550249099731, + 0.8470590114593506, + 0.5803920030593872, + 1, + ], + Float32Array [ + 34.11420440673828, + 0, + 0, + 0, + ], + Float32Array [ + 0.8916540145874023, + 15, + 3, + 0, + ], + Float32Array [ + 0.7337750196456909, + 0.26622501015663147, + 0.3443709909915924, + 1, + ], + Float32Array [ + 0.23426100611686707, + 35, + 1, + 0, + ], + Float32Array [ + 0.49139100313186646, + 0.27417200803756714, + 0.15231800079345703, + 0.5721849799156189, + ], + Float32Array [ + 0, + 0, + 0, + 0, + ], + Float32Array [ + 0, + 0, + 0, + 0, + ], + Float32Array [ + 0, + 0, + 0, + 0, + ], + Float32Array [ + 0, + 0, + 0, + 0, + ], + Float32Array [ + 0, + 0, + 0, + 0, + ], + Float32Array [ + 0, + 0, + 0, + 0, + ], + Float32Array [ + 0, + 0, + 0, + 0, + ], + ], + "depthAttenuation": 431.1845397949219, + "distortAmount": 0.00009999999747378752, + "foamColor0": Uint8Array [ + 51, + 126, + 174, + 38, + ], + "foamColor1": Uint8Array [ + 255, + 255, + 255, + 191, + ], + "foamDepthAttenuation": 0.8999999761581421, + "foamDissolve": 0.949999988079071, + "foamSpawn": 0.5, + "materialFilename": 187551, + "patternAngle": 9.310355186462402, + "patternColor": Uint8Array [ + 179, + 124, + 125, + 34, + ], + "patternEdge": 0.36927199363708496, + "patternSpeed": 0.30727800726890564, + "patternTile": 14.381322860717773, + "surfaceDeepColor": Uint8Array [ + 58, + 94, + 103, + 0, + ], + "surfaceFresnel": 0.8354790210723877, + "surfaceShallowColor": Uint8Array [ + 116, + 218, + 226, + 0, + ], + "textureFilenames": [ + 0, + 186359, + 187574, + 187574, + 187576, + ], + "waterFlags": 1, + }, + { + "animAmplitude": 0, + "animChoppiness": 0, + "animWind": Float32Array [ + -90, + -30, + ], + "bumpAmount": 300, + "bumpAngle0": 0, + "bumpAngle1": 40, + "bumpScale0": 0.10000000149011612, + "bumpScale1": 0.10000000149011612, + "bumpSpeed0": 1, + "bumpSpeed1": 1, + "bumpTile0": 1.7999999523162842, + "bumpTile1": 2.5999999046325684, + "constantTokens": [], + "constantValues": [], + "depthAttenuation": 200, + "distortAmount": 0.15000000596046448, + "foamColor0": Uint8Array [ + 51, + 126, + 174, + 38, + ], + "foamColor1": Uint8Array [ + 255, + 255, + 255, + 191, + ], + "foamDepthAttenuation": 0.8999999761581421, + "foamDissolve": 0.949999988079071, + "foamSpawn": 0.5, + "materialFilename": 0, + "patternAngle": 0, + "patternColor": Uint8Array [ + 255, + 255, + 255, + 0, + ], + "patternEdge": 1, + "patternSpeed": 1, + "patternTile": 1.7999999523162842, + "surfaceDeepColor": Uint8Array [ + 50, + 16, + 9, + 0, + ], + "surfaceFresnel": 2.5, + "surfaceShallowColor": Uint8Array [ + 190, + 168, + 103, + 0, + ], + "textureFilenames": [], + "waterFlags": 1, + }, + ], + "wind": [ + { + "azimuth": 0, + "elevation": 0, + "gust": 26, + "gustFreq": 19, + "gustSpeed": 128, + "noise": 45, + "speed": 24, + }, + { + "azimuth": 7, + "elevation": 0, + "gust": 6, + "gustFreq": 38, + "gustSpeed": 24, + "noise": 4, + "speed": 10, + }, + { + "azimuth": 0, + "elevation": 0, + "gust": 0, + "gustFreq": 0, + "gustSpeed": 0, + "noise": 0, + "speed": 0, + }, + ], + }, + { + "audio": [], + "bindTarget": 0n, + "clouds": { + "layers": [ + { + "altitude": 6184.615234375, + "attributes": [ + { + "brightness": 1, + "density": 0.572160005569458, + "fadeEnd": 30, + "fadeWidth": 30, + "haze": 0.8753846287727356, + "lightIntensity": 0.9399999976158142, + "reserved": 0, + "velocity": Float32Array [ + 43.076904296875, + 50.15349578857422, + ], + }, + { + "brightness": 1, + "density": 0.572160005569458, + "fadeEnd": 30, + "fadeWidth": 30, + "haze": 0.8753846287727356, + "lightIntensity": 0.9399999976158142, + "reserved": 0, + "velocity": Float32Array [ + 43.076904296875, + 50.15349578857422, + ], + }, + { + "brightness": 1, + "density": 0, + "fadeEnd": 30, + "fadeWidth": 30, + "haze": 1, + "lightIntensity": 1, + "reserved": 0, + "velocity": Float32Array [ + 0, + 0, + ], + }, + ], + "cutOut": 1000, + "depth": 0.029230771586298943, + "extent": 1, + "name": "", + "reserved": 0, + "scale": 4.677585124969482, + "texture": 188574, + }, + { + "altitude": 462.0123291015625, + "attributes": [ + { + "brightness": 1, + "density": 0, + "fadeEnd": 225, + "fadeWidth": 100, + "haze": 1, + "lightIntensity": 1, + "reserved": 0, + "velocity": Float32Array [ + 0, + 0, + ], + }, + { + "brightness": 1, + "density": 0, + "fadeEnd": 225, + "fadeWidth": 100, + "haze": 1, + "lightIntensity": 1, + "reserved": 0, + "velocity": Float32Array [ + 0, + 0, + ], + }, + { + "brightness": 1, + "density": 0, + "fadeEnd": 225, + "fadeWidth": 100, + "haze": 1, + "lightIntensity": 1, + "reserved": 0, + "velocity": Float32Array [ + 0, + 0, + ], + }, + ], + "cutOut": 2000, + "depth": 0.004569000098854303, + "extent": 1, + "name": "", + "reserved": 0, + "scale": 1.630321979522705, + "texture": 188576, + }, + { + "altitude": 30000, + "attributes": [ + { + "brightness": 1, + "density": 0.43103399872779846, + "fadeEnd": 16, + "fadeWidth": 16, + "haze": 1, + "lightIntensity": 0.369253009557724, + "reserved": 0, + "velocity": Float32Array [ + -290.2298583984375, + -149.42529296875, + ], + }, + { + "brightness": 1, + "density": 0.43103399872779846, + "fadeEnd": 16, + "fadeWidth": 16, + "haze": 1, + "lightIntensity": 0.369253009557724, + "reserved": 0, + "velocity": Float32Array [ + -290.2298583984375, + -149.42529296875, + ], + }, + { + "brightness": 1, + "density": 1, + "fadeEnd": 16, + "fadeWidth": 16, + "haze": 1, + "lightIntensity": 1, + "reserved": 0, + "velocity": Float32Array [ + 0, + 0, + ], + }, + ], + "cutOut": 100, + "depth": 0, + "extent": 1, + "name": "", + "reserved": 0, + "scale": 1.3074710369110107, + "texture": 195082, + }, + { + "altitude": 30000, + "attributes": [ + { + "brightness": 1, + "density": 1, + "fadeEnd": 16, + "fadeWidth": 16, + "haze": 1, + "lightIntensity": 1, + "reserved": 0, + "velocity": Float32Array [ + -178.160888671875, + 0, + ], + }, + { + "brightness": 1, + "density": 1, + "fadeEnd": 16, + "fadeWidth": 16, + "haze": 1, + "lightIntensity": 1, + "reserved": 0, + "velocity": Float32Array [ + -178.160888671875, + 0, + ], + }, + { + "brightness": 1, + "density": 1, + "fadeEnd": 16, + "fadeWidth": 16, + "haze": 1, + "lightIntensity": 1, + "reserved": 0, + "velocity": Float32Array [ + 0, + 0, + ], + }, + ], + "cutOut": 100, + "depth": 0, + "extent": 1, + "name": "", + "reserved": 0, + "scale": 0.7471259832382202, + "texture": 195082, + }, + { + "altitude": 22801.72265625, + "attributes": [ + { + "brightness": 1, + "density": 1, + "fadeEnd": 16, + "fadeWidth": 16, + "haze": 1, + "lightIntensity": 1, + "reserved": 0, + "velocity": Float32Array [ + -267.2413330078125, + 83.3333740234375, + ], + }, + { + "brightness": 1, + "density": 1, + "fadeEnd": 16, + "fadeWidth": 16, + "haze": 1, + "lightIntensity": 1, + "reserved": 0, + "velocity": Float32Array [ + -267.2413330078125, + 83.3333740234375, + ], + }, + { + "brightness": 1, + "density": 1, + "fadeEnd": 16, + "fadeWidth": 16, + "haze": 1, + "lightIntensity": 1, + "reserved": 0, + "velocity": Float32Array [ + 0, + 0, + ], + }, + ], + "cutOut": 3000, + "depth": 0, + "extent": 1, + "name": "", + "reserved": 0, + "scale": 0.5172410011291504, + "texture": 195082, + }, + { + "altitude": 20689.65625, + "attributes": [ + { + "brightness": 1, + "density": 1, + "fadeEnd": 16, + "fadeWidth": 16, + "haze": 1, + "lightIntensity": 1, + "reserved": 0, + "velocity": Float32Array [ + -163.7930908203125, + 89.0804443359375, + ], + }, + { + "brightness": 1, + "density": 1, + "fadeEnd": 16, + "fadeWidth": 16, + "haze": 1, + "lightIntensity": 1, + "reserved": 0, + "velocity": Float32Array [ + -163.7930908203125, + 89.0804443359375, + ], + }, + { + "brightness": 1, + "density": 1, + "fadeEnd": 16, + "fadeWidth": 16, + "haze": 1, + "lightIntensity": 1, + "reserved": 0, + "velocity": Float32Array [ + 0, + 0, + ], + }, + ], + "cutOut": 3000, + "depth": 0, + "extent": 1, + "name": "", + "reserved": 0, + "scale": 0.8908050060272217, + "texture": 195082, + }, + { + "altitude": 15608.8564453125, + "attributes": [ + { + "brightness": 3, + "density": 0.26011601090431213, + "fadeEnd": 16, + "fadeWidth": 16, + "haze": 0.12546099722385406, + "lightIntensity": 1.5, + "reserved": 0, + "velocity": Float32Array [ + 77.4908447265625, + -33.2103271484375, + ], + }, + { + "brightness": 3, + "density": 0.26011601090431213, + "fadeEnd": 16, + "fadeWidth": 16, + "haze": 0.12546099722385406, + "lightIntensity": 1.5, + "reserved": 0, + "velocity": Float32Array [ + 77.4908447265625, + -33.2103271484375, + ], + }, + { + "brightness": 1, + "density": 1, + "fadeEnd": 16, + "fadeWidth": 16, + "haze": 1, + "lightIntensity": 1, + "reserved": 0, + "velocity": Float32Array [ + 0, + 0, + ], + }, + ], + "cutOut": 1000, + "depth": 0, + "extent": -1, + "name": "", + "reserved": 0, + "scale": 9.003689765930176, + "texture": 187566, + }, + ], + }, + "coloredLightRings": [], + "effect": [ + { + "clutTexturePath": 0, + "ext": {}, + "flags": 0, + "focalDepth": 6000, + "focalRange": 4000, + "glow": Uint8Array [ + 49, + 63, + 65, + 0, + ], + "glowAmplify": 0.25562700629234314, + "glowLevel": Uint8Array [ + 1, + 1, + 1, + 0, + ], + "saturation": 1.399999976158142, + "ssaoAmount": 3, + "ssaoBrighten": 0.20000000298023224, + "ssaoContrast": 1, + "ssaoSunScale": 0.5, + "tintAmount": 0, + "tintColor": Uint8Array [ + 255, + 255, + 255, + 255, + ], + "tintFocus": 0, + "tintTargetColor": Uint8Array [ + 255, + 255, + 255, + 0, + ], + }, + { + "clutTexturePath": 0, + "ext": {}, + "flags": 0, + "focalDepth": 6000, + "focalRange": 4000, + "glow": Uint8Array [ + 49, + 63, + 65, + 0, + ], + "glowAmplify": 0.25562700629234314, + "glowLevel": Uint8Array [ + 1, + 1, + 1, + 0, + ], + "saturation": 1.399999976158142, + "ssaoAmount": 3, + "ssaoBrighten": 0.20000000298023224, + "ssaoContrast": 1, + "ssaoSunScale": 0.5, + "tintAmount": 0, + "tintColor": Uint8Array [ + 255, + 255, + 255, + 255, + ], + "tintFocus": 0, + "tintTargetColor": Uint8Array [ + 255, + 255, + 255, + 0, + ], + }, + { + "clutTexturePath": 0, + "ext": {}, + "flags": 0, + "focalDepth": 6000, + "focalRange": 4000, + "glow": Uint8Array [ + 0, + 0, + 0, + 0, + ], + "glowAmplify": 0, + "glowLevel": Uint8Array [ + 0, + 0, + 0, + 0, + ], + "saturation": 1, + "ssaoAmount": 3, + "ssaoBrighten": 0.20000000298023224, + "ssaoContrast": 1, + "ssaoSunScale": 0.5, + "tintAmount": 0, + "tintColor": Uint8Array [ + 255, + 255, + 255, + 255, + ], + "tintFocus": 0, + "tintTargetColor": Uint8Array [ + 255, + 255, + 255, + 0, + ], + }, + ], + "ext": { + "brightMax": 0.5, + "brightMin": 0.30000001192092896, + "brightScale": 1, + "brightTime": 2.5, + "darkCoeff": 1.2000000476837158, + "darkExp": 0.800000011920929, + "darkMax": 0.30000001192092896, + "darkMin": 0.10000000149011612, + "darkScale": 1, + "dimTime": 5, + "ext2": {}, + "waterReflectionParams": Float32Array [ + 0, + 0, + 0, + 0, + ], + }, + "flags": 0, + "guid": 1868742473059172865n, + "haze": [ + { + "depthCue": 0.0002519999979995191, + "distRange": Float32Array [ + 648.6954345703125, + 2621.468994140625, + ], + "farColor": Uint8Array [ + 23, + 26, + 12, + 255, + ], + "heightColor": Uint8Array [ + 146, + 115, + 136, + 255, + ], + "heightRange": Float32Array [ + -359.7119140625, + 1478.148681640625, + ], + "nearColor": Uint8Array [ + 0, + 0, + 0, + 255, + ], + "sunDirRange": Float32Array [ + -1, + 1, + ], + }, + { + "depthCue": 0.0002519999979995191, + "distRange": Float32Array [ + 648.6954345703125, + 2621.468994140625, + ], + "farColor": Uint8Array [ + 23, + 26, + 12, + 255, + ], + "heightColor": Uint8Array [ + 146, + 115, + 136, + 255, + ], + "heightRange": Float32Array [ + -359.7119140625, + 1478.148681640625, + ], + "nearColor": Uint8Array [ + 0, + 0, + 0, + 255, + ], + "sunDirRange": Float32Array [ + -1, + 1, + ], + }, + { + "depthCue": 0, + "distRange": Float32Array [ + 0, + 0, + ], + "farColor": Uint8Array [ + 0, + 0, + 0, + 255, + ], + "heightColor": Uint8Array [ + 0, + 0, + 0, + 255, + ], + "heightRange": Float32Array [ + 0, + 0, + ], + "nearColor": Uint8Array [ + 0, + 0, + 0, + 255, + ], + "sunDirRange": Float32Array [ + 0, + 0, + ], + }, + ], + "lighting": [ + { + "backlightColor": Uint8Array [ + 255, + 255, + 255, + ], + "backlightIntensity": 0, + "lights": [ + { + "color": Uint8Array [ + 45, + 46, + 37, + ], + "direction": Float32Array [ + 0.7071067690849304, + 0, + 0.7071067690849304, + ], + "intensity": 1.2000000476837158, + }, + { + "color": Uint8Array [ + 31, + 140, + 183, + ], + "direction": Float32Array [ + -0.7071067690849304, + -0.0000012868819112554775, + -0.7071067690849304, + ], + "intensity": 0.06578947603702545, + }, + { + "color": Uint8Array [ + 249, + 98, + 15, + ], + "direction": Float32Array [ + -0.0000010291722674082848, + 1.8730171493647196e-12, + -1, + ], + "intensity": 0.17763157188892365, + }, + { + "color": Uint8Array [ + 161, + 255, + 174, + ], + "direction": Float32Array [ + -0.0000010291722674082848, + -1.8730171493647196e-12, + 1, + ], + "intensity": 0.05921052768826485, + }, + { + "color": Uint8Array [ + 255, + 255, + 255, + ], + "direction": Float32Array [ + -0.7071067690849304, + -0.0000012868819112554775, + 0.7071067690849304, + ], + "intensity": 0.14144736528396606, + }, + { + "color": Uint8Array [ + 214, + 151, + 78, + ], + "direction": Float32Array [ + -4.371138828673793e-8, + 1, + 0, + ], + "intensity": 0.04605263099074364, + }, + { + "color": Uint8Array [ + 255, + 255, + 255, + ], + "direction": Float32Array [ + 0.7071067690849304, + 0, + -0.7071067690849304, + ], + "intensity": 0, + }, + { + "color": Uint8Array [ + 255, + 255, + 255, + ], + "direction": Float32Array [ + -4.371138828673793e-8, + -1, + 0, + ], + "intensity": 0.02631578966975212, + }, + ], + "shadowInfluence": 0, + }, + { + "backlightColor": Uint8Array [ + 255, + 255, + 255, + ], + "backlightIntensity": 0, + "lights": [ + { + "color": Uint8Array [ + 45, + 46, + 37, + ], + "direction": Float32Array [ + 0.7071067690849304, + 0, + 0.7071067690849304, + ], + "intensity": 1.2000000476837158, + }, + { + "color": Uint8Array [ + 31, + 140, + 183, + ], + "direction": Float32Array [ + -0.7071067690849304, + -0.0000012868819112554775, + -0.7071067690849304, + ], + "intensity": 0.06578947603702545, + }, + { + "color": Uint8Array [ + 249, + 98, + 15, + ], + "direction": Float32Array [ + -0.0000010291722674082848, + 1.8730171493647196e-12, + -1, + ], + "intensity": 0.27960526943206787, + }, + { + "color": Uint8Array [ + 161, + 255, + 174, + ], + "direction": Float32Array [ + -0.0000010291722674082848, + -1.8730171493647196e-12, + 1, + ], + "intensity": 0.05921052768826485, + }, + { + "color": Uint8Array [ + 255, + 255, + 255, + ], + "direction": Float32Array [ + -0.7071067690849304, + -0.0000012868819112554775, + 0.7071067690849304, + ], + "intensity": 0.14144736528396606, + }, + { + "color": Uint8Array [ + 214, + 151, + 78, + ], + "direction": Float32Array [ + -4.371138828673793e-8, + 1, + 0, + ], + "intensity": 0.04605263099074364, + }, + { + "color": Uint8Array [ + 255, + 255, + 255, + ], + "direction": Float32Array [ + 0.7071067690849304, + 0, + -0.7071067690849304, + ], + "intensity": 0, + }, + { + "color": Uint8Array [ + 255, + 255, + 255, + ], + "direction": Float32Array [ + -4.371138828673793e-8, + -1, + 0, + ], + "intensity": 0.02631578966975212, + }, + ], + "shadowInfluence": 0, + }, + { + "backlightColor": Uint8Array [ + 0, + 0, + 0, + ], + "backlightIntensity": 0, + "lights": [ + { + "color": Uint8Array [ + 255, + 233, + 192, + ], + "direction": Float32Array [ + 0.7071067690849304, + 0, + 0.7071067690849304, + ], + "intensity": 0.00657894741743803, + }, + { + "color": Uint8Array [ + 124, + 172, + 248, + ], + "direction": Float32Array [ + -0.7071067690849304, + -0.0000012868819112554775, + -0.7071067690849304, + ], + "intensity": 0, + }, + { + "color": Uint8Array [ + 191, + 221, + 255, + ], + "direction": Float32Array [ + 0.29848748445510864, + 0.9186500906944275, + 0.258819043636322, + ], + "intensity": 0, + }, + { + "color": Uint8Array [ + 188, + 204, + 253, + ], + "direction": Float32Array [ + -0.7814504504203796, + 0.5677568912506104, + 0.258819043636322, + ], + "intensity": 0, + }, + { + "color": Uint8Array [ + 199, + 190, + 255, + ], + "direction": Float32Array [ + -0.8824164271354675, + 0.39287903904914856, + 0.25881901383399963, + ], + "intensity": 0, + }, + { + "color": Uint8Array [ + 189, + 222, + 255, + ], + "direction": Float32Array [ + 0.2984875440597534, + -0.9186500310897827, + 0.258819043636322, + ], + "intensity": 0, + }, + { + "color": Uint8Array [ + 204, + 237, + 255, + ], + "direction": Float32Array [ + -9.099629210140847e-7, + 1.6560650420438527e-12, + 1, + ], + "intensity": 0, + }, + { + "color": Uint8Array [ + 168, + 254, + 189, + ], + "direction": Float32Array [ + -9.099629210140847e-7, + 1.6560650420438527e-12, + -1, + ], + "intensity": 0.375, + }, + ], + "shadowInfluence": 0, + }, + ], + "lightingCharGroups": [], + "name": "", + "nightMods": Uint8Array [ + 255, + 255, + 255, + 133, + ], + "particleFieldCutouts": [], + "particleFields": [ + { + "altitude": 0, + "angle": Float32Array [ + 0, + 0, + ], + "clusterCount": 0, + "clustering": Float32Array [ + 0, + 0, + ], + "depth": 0, + "deviation": 0, + "deviationSpeed": Float32Array [ + 0, + 0, + ], + "extent": 0, + "fade": 0, + "fieldDirection": Float32Array [ + 0, + 0, + 0, + ], + "flags": 0, + "lifetime": Float32Array [ + 0, + 0, + ], + "name": "", + "opacity": Float32Array [ + 0, + 0, + ], + "particleCount": 0, + "period": Float32Array [ + 0, + 0, + ], + "reserved": 0, + "rotation": Float32Array [ + 0, + 0, + ], + "scaleX": Float32Array [ + 0, + 0, + ], + "scaleY": Float32Array [ + 0, + 0, + ], + "seed": 0, + "speed": Float32Array [ + 0, + 0, + ], + "texColRow": Uint32Array [ + 0, + 0, + ], + "texFPS": 0, + "texPath": 0, + "type": 0, + }, + ], + "shapeArray": [ + { + "center": Float32Array [ + -679.51171875, + -3809.8046875, + -2129.2353515625, + ], + "fadeHorizInner": 500, + "fadeHorizOuter": 337.83782958984375, + "fadeVertical": 0, + "height": 24442.8359375, + "shapeType": 2, + "vertexArray": [ + Float32Array [ + 16544.1640625, + -6159.70556640625, + ], + Float32Array [ + 6638.162109375, + -2991.414306640625, + ], + Float32Array [ + 7849.98974609375, + -6138.66162109375, + ], + Float32Array [ + -13134.4580078125, + -7456.21240234375, + ], + Float32Array [ + -17329.14453125, + -9522.1640625, + ], + Float32Array [ + -19062.125, + -17992.81640625, + ], + Float32Array [ + -25993.33984375, + -18644.41015625, + ], + Float32Array [ + -26255.94921875, + 4251.91259765625, + ], + Float32Array [ + -7359.19921875, + 7931.6826171875, + ], + Float32Array [ + -7179.8193359375, + 9625.345703125, + ], + Float32Array [ + 6938.74658203125, + 8424.93359375, + ], + Float32Array [ + 11182.3759765625, + 11024.80078125, + ], + Float32Array [ + 24896.92578125, + 7080.57177734375, + ], + Float32Array [ + 24476.091796875, + -6957.39892578125, + ], + ], + }, + ], + "sky": { + "dayBrightness": 1, + "dayHazeBottom": 0, + "dayHazeDensity": 0, + "dayHazeFalloff": 16, + "dayLightIntensity": 1, + "dayStarDensity": 0, + "flags": 0, + "nightBrightness": 1.5, + "nightHazeBottom": 0.4207436442375183, + "nightHazeDensity": 1, + "nightHazeFalloff": 0.4129158556461334, + "nightLightIntensity": 0.40577900409698486, + "nightStarDensity": 3, + "verticalOffset": 0, + }, + "skyCards": { + "cards": [], + }, + "spawns": {}, + "type": 5, + "water": [ + { + "animAmplitude": 0, + "animChoppiness": -1, + "animWind": Float32Array [ + 0.3431732654571533, + 0.823141872882843, + ], + "bumpAmount": 68.46863555908203, + "bumpAngle0": 143.32400512695312, + "bumpAngle1": 61.707000732421875, + "bumpScale0": 0.1756269931793213, + "bumpScale1": 0.16606900095939636, + "bumpSpeed0": 0.3532930016517639, + "bumpSpeed1": 0.32335299253463745, + "bumpTile0": 5.013050079345703, + "bumpTile1": 13.572413444519043, + "constantTokens": Uint32Array [ + 809906891, + 911119242, + 910462480, + 808137754, + 814574097, + 807298231, + 813734574, + 3101301168, + 1324870500, + 1472906389, + 2953265279, + 3427729611, + 1355227165, + 2983621944, + ], + "constantValues": [ + Float32Array [ + 0.8823530077934265, + 0.8823530077934265, + 0.8823530077934265, + 2048, + ], + Float32Array [ + 0.7607839703559875, + 0.9686269760131836, + 1, + 0.9843140244483948, + ], + Float32Array [ + 11.422845840454102, + 0, + 0, + 0, + ], + Float32Array [ + 0.6053000092506409, + 15, + 3, + 0, + ], + Float32Array [ + 0.75, + 0.25999999046325684, + 0.7885569930076599, + 2, + ], + Float32Array [ + 0.18000000715255737, + 35, + 1, + 0, + ], + Float32Array [ + 0.4874719977378845, + 0.27000001072883606, + 0.15000000596046448, + 0.5522390007972717, + ], + Float32Array [ + 0, + 0, + 0, + 0, + ], + Float32Array [ + 0, + 0, + 0, + 0, + ], + Float32Array [ + 0, + 0, + 0, + 0, + ], + Float32Array [ + 0, + 0, + 0, + 0, + ], + Float32Array [ + 0, + 0, + 0, + 0, + ], + Float32Array [ + 0, + 0, + 0, + 0, + ], + Float32Array [ + 0, + 0, + 0, + 0, + ], + ], + "depthAttenuation": 12, + "distortAmount": 0.0076950001530349255, + "foamColor0": Uint8Array [ + 51, + 126, + 174, + 38, + ], + "foamColor1": Uint8Array [ + 255, + 255, + 255, + 191, + ], + "foamDepthAttenuation": 0.8999999761581421, + "foamDissolve": 0.949999988079071, + "foamSpawn": 0.5, + "materialFilename": 187551, + "patternAngle": 125.04144287109375, + "patternColor": Uint8Array [ + 50, + 76, + 57, + 64, + ], + "patternEdge": 0.25798800587654114, + "patternSpeed": 0.33918100595474243, + "patternTile": 1.1550300121307373, + "surfaceDeepColor": Uint8Array [ + 139, + 114, + 85, + 0, + ], + "surfaceFresnel": 4.071813106536865, + "surfaceShallowColor": Uint8Array [ + 169, + 160, + 139, + 0, + ], + "textureFilenames": [ + 0, + 186359, + 197519, + 187574, + 187576, + ], + "waterFlags": 1, + }, + { + "animAmplitude": 0, + "animChoppiness": -1, + "animWind": Float32Array [ + 0.3431732654571533, + 0.823141872882843, + ], + "bumpAmount": 68.46863555908203, + "bumpAngle0": 143.32400512695312, + "bumpAngle1": 61.707000732421875, + "bumpScale0": 0.1756269931793213, + "bumpScale1": 0.16606900095939636, + "bumpSpeed0": 0.3532930016517639, + "bumpSpeed1": 0.32335299253463745, + "bumpTile0": 5.013050079345703, + "bumpTile1": 13.572413444519043, + "constantTokens": Uint32Array [ + 809906891, + 911119242, + 910462480, + 808137754, + 814574097, + 807298231, + 813734574, + 3101301168, + 1324870500, + 1472906389, + 2953265279, + 3427729611, + 1355227165, + 2983621944, + ], + "constantValues": [ + Float32Array [ + 0.8823530077934265, + 0.8823530077934265, + 0.8823530077934265, + 2048, + ], + Float32Array [ + 0.7607839703559875, + 0.9686269760131836, + 1, + 0.9843140244483948, + ], + Float32Array [ + 11.422845840454102, + 0, + 0, + 0, + ], + Float32Array [ + 0.6053000092506409, + 15, + 3, + 0, + ], + Float32Array [ + 0.75, + 0.25999999046325684, + 0.7885569930076599, + 2, + ], + Float32Array [ + 0.18000000715255737, + 35, + 1, + 0, + ], + Float32Array [ + 0.4874719977378845, + 0.27000001072883606, + 0.15000000596046448, + 0.5522390007972717, + ], + Float32Array [ + 0, + 0, + 0, + 0, + ], + Float32Array [ + 0, + 0, + 0, + 0, + ], + Float32Array [ + 0, + 0, + 0, + 0, + ], + Float32Array [ + 0, + 0, + 0, + 0, + ], + Float32Array [ + 0, + 0, + 0, + 0, + ], + Float32Array [ + 0, + 0, + 0, + 0, + ], + Float32Array [ + 0, + 0, + 0, + 0, + ], + ], + "depthAttenuation": 12, + "distortAmount": 0.0076950001530349255, + "foamColor0": Uint8Array [ + 51, + 126, + 174, + 38, + ], + "foamColor1": Uint8Array [ + 255, + 255, + 255, + 191, + ], + "foamDepthAttenuation": 0.8999999761581421, + "foamDissolve": 0.949999988079071, + "foamSpawn": 0.5, + "materialFilename": 187551, + "patternAngle": 125.04144287109375, + "patternColor": Uint8Array [ + 50, + 76, + 57, + 64, + ], + "patternEdge": 0.25798800587654114, + "patternSpeed": 0.33918100595474243, + "patternTile": 1.1550300121307373, + "surfaceDeepColor": Uint8Array [ + 139, + 114, + 85, + 0, + ], + "surfaceFresnel": 4.071813106536865, + "surfaceShallowColor": Uint8Array [ + 169, + 160, + 139, + 0, + ], + "textureFilenames": [ + 0, + 186359, + 197519, + 187574, + 187576, + ], + "waterFlags": 1, + }, + { + "animAmplitude": 0, + "animChoppiness": -0.4678260087966919, + "animWind": Float32Array [ + -34.065345764160156, + -27.119556427001953, + ], + "bumpAmount": 72.02046203613281, + "bumpAngle0": 70.15873718261719, + "bumpAngle1": 12.396697998046875, + "bumpScale0": 0.22796399891376495, + "bumpScale1": 0.20668700337409973, + "bumpSpeed0": 0.534434974193573, + "bumpSpeed1": 0.3760400116443634, + "bumpTile0": 2.3801651000976562, + "bumpTile1": 4.552412986755371, + "constantTokens": Uint32Array [ + 3101301168, + 1324870500, + 1472906389, + 2953265279, + 3427729611, + 1355227165, + 2983621944, + 2541789506, + ], + "constantValues": [ + Float32Array [ + 0, + 0, + 0, + 0, + ], + Float32Array [ + 0, + 0, + 0, + 0, + ], + Float32Array [ + 0, + 0, + 0, + 0, + ], + Float32Array [ + 0, + 0, + 0, + 0, + ], + Float32Array [ + 0, + 0, + 0, + 0, + ], + Float32Array [ + 0, + 0, + 0, + 0, + ], + Float32Array [ + 0, + 0, + 0, + 0, + ], + Float32Array [ + 0.10000000149011612, + 0.10000000149011612, + 0.10000000149011612, + 0.10000000149011612, + ], + ], + "depthAttenuation": 431.1845397949219, + "distortAmount": 0.00009999999747378752, + "foamColor0": Uint8Array [ + 51, + 126, + 174, + 38, + ], + "foamColor1": Uint8Array [ + 255, + 255, + 255, + 191, + ], + "foamDepthAttenuation": 0.8999999761581421, + "foamDissolve": 0.949999988079071, + "foamSpawn": 0.5, + "materialFilename": 188555, + "patternAngle": 9.310355186462402, + "patternColor": Uint8Array [ + 179, + 124, + 125, + 34, + ], + "patternEdge": 0.36927199363708496, + "patternSpeed": 0.08210200071334839, + "patternTile": 14.381322860717773, + "surfaceDeepColor": Uint8Array [ + 58, + 94, + 103, + 0, + ], + "surfaceFresnel": 0.8354790210723877, + "surfaceShallowColor": Uint8Array [ + 113, + 122, + 122, + 0, + ], + "textureFilenames": [ + 0, + 186359, + 187574, + ], + "waterFlags": 1, + }, + ], + "wind": [ + { + "azimuth": 0, + "elevation": 0, + "gust": 0, + "gustFreq": 0, + "gustSpeed": 0, + "noise": 0, + "speed": 0, + }, + { + "azimuth": 0, + "elevation": 0, + "gust": 0, + "gustFreq": 0, + "gustSpeed": 0, + "noise": 0, + "speed": 0, + }, + { + "azimuth": 0, + "elevation": 0, + "gust": 0, + "gustFreq": 0, + "gustSpeed": 0, + "noise": 0, + "speed": 0, + }, + ], + }, + { + "audio": [], + "bindTarget": 0n, + "clouds": { + "layers": [ + { + "altitude": 5895.5986328125, + "attributes": [ + { + "brightness": 1, + "density": 0.572160005569458, + "fadeEnd": 30, + "fadeWidth": 30, + "haze": 0, + "lightIntensity": 1, + "reserved": 0, + "velocity": Float32Array [ + 25.588512420654297, + 50.15349578857422, + ], + }, + { + "brightness": 1, + "density": 0.572160005569458, + "fadeEnd": 30, + "fadeWidth": 30, + "haze": 0, + "lightIntensity": 1, + "reserved": 0, + "velocity": Float32Array [ + 25.588512420654297, + 50.15349578857422, + ], + }, + { + "brightness": 1, + "density": 0, + "fadeEnd": 30, + "fadeWidth": 30, + "haze": 1, + "lightIntensity": 1, + "reserved": 0, + "velocity": Float32Array [ + 0, + 0, + ], + }, + ], + "cutOut": 1000, + "depth": 0.011873000301420689, + "extent": 1, + "name": "", + "reserved": 0, + "scale": 4.677585124969482, + "texture": 188574, + }, + { + "altitude": 462.0123291015625, + "attributes": [ + { + "brightness": 1, + "density": 0, + "fadeEnd": 225, + "fadeWidth": 100, + "haze": 1, + "lightIntensity": 1, + "reserved": 0, + "velocity": Float32Array [ + 0, + 0, + ], + }, + { + "brightness": 1, + "density": 0, + "fadeEnd": 225, + "fadeWidth": 100, + "haze": 1, + "lightIntensity": 1, + "reserved": 0, + "velocity": Float32Array [ + 0, + 0, + ], + }, + { + "brightness": 1, + "density": 0, + "fadeEnd": 225, + "fadeWidth": 100, + "haze": 1, + "lightIntensity": 1, + "reserved": 0, + "velocity": Float32Array [ + 0, + 0, + ], + }, + ], + "cutOut": 2000, + "depth": 0.004569000098854303, + "extent": 1, + "name": "", + "reserved": 0, + "scale": 1.630321979522705, + "texture": 188576, + }, + { + "altitude": 30000, + "attributes": [ + { + "brightness": 1, + "density": 0.43103399872779846, + "fadeEnd": 16, + "fadeWidth": 16, + "haze": 1, + "lightIntensity": 0.369253009557724, + "reserved": 0, + "velocity": Float32Array [ + -290.2298583984375, + -149.42529296875, + ], + }, + { + "brightness": 1, + "density": 0.43103399872779846, + "fadeEnd": 16, + "fadeWidth": 16, + "haze": 1, + "lightIntensity": 0.369253009557724, + "reserved": 0, + "velocity": Float32Array [ + -290.2298583984375, + -149.42529296875, + ], + }, + { + "brightness": 1, + "density": 1, + "fadeEnd": 16, + "fadeWidth": 16, + "haze": 1, + "lightIntensity": 1, + "reserved": 0, + "velocity": Float32Array [ + 0, + 0, + ], + }, + ], + "cutOut": 100, + "depth": 0, + "extent": 1, + "name": "", + "reserved": 0, + "scale": 1.3074710369110107, + "texture": 195082, + }, + { + "altitude": 30000, + "attributes": [ + { + "brightness": 1, + "density": 1, + "fadeEnd": 16, + "fadeWidth": 16, + "haze": 1, + "lightIntensity": 1, + "reserved": 0, + "velocity": Float32Array [ + -178.160888671875, + 0, + ], + }, + { + "brightness": 1, + "density": 1, + "fadeEnd": 16, + "fadeWidth": 16, + "haze": 1, + "lightIntensity": 1, + "reserved": 0, + "velocity": Float32Array [ + -178.160888671875, + 0, + ], + }, + { + "brightness": 1, + "density": 1, + "fadeEnd": 16, + "fadeWidth": 16, + "haze": 1, + "lightIntensity": 1, + "reserved": 0, + "velocity": Float32Array [ + 0, + 0, + ], + }, + ], + "cutOut": 100, + "depth": 0, + "extent": 1, + "name": "", + "reserved": 0, + "scale": 0.7471259832382202, + "texture": 195082, + }, + { + "altitude": 22801.72265625, + "attributes": [ + { + "brightness": 1, + "density": 1, + "fadeEnd": 16, + "fadeWidth": 16, + "haze": 1, + "lightIntensity": 1, + "reserved": 0, + "velocity": Float32Array [ + -267.2413330078125, + 83.3333740234375, + ], + }, + { + "brightness": 1, + "density": 1, + "fadeEnd": 16, + "fadeWidth": 16, + "haze": 1, + "lightIntensity": 1, + "reserved": 0, + "velocity": Float32Array [ + -267.2413330078125, + 83.3333740234375, + ], + }, + { + "brightness": 1, + "density": 1, + "fadeEnd": 16, + "fadeWidth": 16, + "haze": 1, + "lightIntensity": 1, + "reserved": 0, + "velocity": Float32Array [ + 0, + 0, + ], + }, + ], + "cutOut": 3000, + "depth": 0, + "extent": 1, + "name": "", + "reserved": 0, + "scale": 0.5172410011291504, + "texture": 195082, + }, + { + "altitude": 20689.65625, + "attributes": [ + { + "brightness": 1, + "density": 1, + "fadeEnd": 16, + "fadeWidth": 16, + "haze": 1, + "lightIntensity": 1, + "reserved": 0, + "velocity": Float32Array [ + -163.7930908203125, + 89.0804443359375, + ], + }, + { + "brightness": 1, + "density": 1, + "fadeEnd": 16, + "fadeWidth": 16, + "haze": 1, + "lightIntensity": 1, + "reserved": 0, + "velocity": Float32Array [ + -163.7930908203125, + 89.0804443359375, + ], + }, + { + "brightness": 1, + "density": 1, + "fadeEnd": 16, + "fadeWidth": 16, + "haze": 1, + "lightIntensity": 1, + "reserved": 0, + "velocity": Float32Array [ + 0, + 0, + ], + }, + ], + "cutOut": 3000, + "depth": 0, + "extent": 1, + "name": "", + "reserved": 0, + "scale": 0.8908050060272217, + "texture": 195082, + }, + ], + }, + "coloredLightRings": [], + "effect": [ + { + "clutTexturePath": 0, + "ext": {}, + "flags": 0, + "focalDepth": 6000, + "focalRange": 4000, + "glow": Uint8Array [ + 129, + 29, + 111, + 0, + ], + "glowAmplify": 0.4000000059604645, + "glowLevel": Uint8Array [ + 1, + 1, + 1, + 0, + ], + "saturation": 1.399999976158142, + "ssaoAmount": 3, + "ssaoBrighten": 0.20000000298023224, + "ssaoContrast": 1, + "ssaoSunScale": 0.5, + "tintAmount": 0, + "tintColor": Uint8Array [ + 255, + 255, + 255, + 255, + ], + "tintFocus": 0, + "tintTargetColor": Uint8Array [ + 255, + 255, + 255, + 0, + ], + }, + { + "clutTexturePath": 0, + "ext": {}, + "flags": 0, + "focalDepth": 6000, + "focalRange": 4000, + "glow": Uint8Array [ + 129, + 29, + 111, + 0, + ], + "glowAmplify": 0.4000000059604645, + "glowLevel": Uint8Array [ + 1, + 1, + 1, + 0, + ], + "saturation": 1.399999976158142, + "ssaoAmount": 3, + "ssaoBrighten": 0.20000000298023224, + "ssaoContrast": 1, + "ssaoSunScale": 0.5, + "tintAmount": 0, + "tintColor": Uint8Array [ + 255, + 255, + 255, + 255, + ], + "tintFocus": 0, + "tintTargetColor": Uint8Array [ + 255, + 255, + 255, + 0, + ], + }, + { + "clutTexturePath": 0, + "ext": {}, + "flags": 0, + "focalDepth": 6000, + "focalRange": 4000, + "glow": Uint8Array [ + 0, + 0, + 0, + 0, + ], + "glowAmplify": 0, + "glowLevel": Uint8Array [ + 0, + 0, + 0, + 0, + ], + "saturation": 1, + "ssaoAmount": 3, + "ssaoBrighten": 0.20000000298023224, + "ssaoContrast": 1, + "ssaoSunScale": 0.5, + "tintAmount": 0, + "tintColor": Uint8Array [ + 255, + 255, + 255, + 255, + ], + "tintFocus": 0, + "tintTargetColor": Uint8Array [ + 255, + 255, + 255, + 0, + ], + }, + ], + "ext": { + "brightMax": 0.5, + "brightMin": 0.30000001192092896, + "brightScale": 1, + "brightTime": 2.5, + "darkCoeff": 1.2000000476837158, + "darkExp": 0.800000011920929, + "darkMax": 0.30000001192092896, + "darkMin": 0.10000000149011612, + "darkScale": 1, + "dimTime": 5, + "ext2": {}, + "waterReflectionParams": Float32Array [ + 0, + 0, + 0, + 0, + ], + }, + "flags": 0, + "guid": 1869165235280052749n, + "haze": [ + { + "depthCue": 0.0002519999979995191, + "distRange": Float32Array [ + 648.6954345703125, + 2621.468994140625, + ], + "farColor": Uint8Array [ + 48, + 60, + 12, + 255, + ], + "heightColor": Uint8Array [ + 146, + 115, + 136, + 255, + ], + "heightRange": Float32Array [ + -359.7119140625, + 1478.148681640625, + ], + "nearColor": Uint8Array [ + 0, + 0, + 0, + 255, + ], + "sunDirRange": Float32Array [ + -1, + 1, + ], + }, + { + "depthCue": 0.0002519999979995191, + "distRange": Float32Array [ + 648.6954345703125, + 2621.468994140625, + ], + "farColor": Uint8Array [ + 48, + 60, + 12, + 255, + ], + "heightColor": Uint8Array [ + 146, + 115, + 136, + 255, + ], + "heightRange": Float32Array [ + -359.7119140625, + 1478.148681640625, + ], + "nearColor": Uint8Array [ + 0, + 0, + 0, + 255, + ], + "sunDirRange": Float32Array [ + -1, + 1, + ], + }, + { + "depthCue": 0, + "distRange": Float32Array [ + 0, + 0, + ], + "farColor": Uint8Array [ + 0, + 0, + 0, + 255, + ], + "heightColor": Uint8Array [ + 0, + 0, + 0, + 255, + ], + "heightRange": Float32Array [ + 0, + 0, + ], + "nearColor": Uint8Array [ + 0, + 0, + 0, + 255, + ], + "sunDirRange": Float32Array [ + 0, + 0, + ], + }, + ], + "lighting": [ + { + "backlightColor": Uint8Array [ + 255, + 255, + 255, + ], + "backlightIntensity": 0, + "lights": [ + { + "color": Uint8Array [ + 45, + 46, + 37, + ], + "direction": Float32Array [ + 0.7071067690849304, + 0, + 0.7071067690849304, + ], + "intensity": 1.2000000476837158, + }, + { + "color": Uint8Array [ + 31, + 140, + 183, + ], + "direction": Float32Array [ + -0.7071067690849304, + -0.0000012868819112554775, + -0.7071067690849304, + ], + "intensity": 0.13486842811107635, + }, + { + "color": Uint8Array [ + 249, + 98, + 15, + ], + "direction": Float32Array [ + -0.0000010291722674082848, + 1.8730171493647196e-12, + -1, + ], + "intensity": 0.29605263471603394, + }, + { + "color": Uint8Array [ + 161, + 255, + 174, + ], + "direction": Float32Array [ + -0.0000010291722674082848, + -1.8730171493647196e-12, + 1, + ], + "intensity": 0.09539473801851273, + }, + { + "color": Uint8Array [ + 255, + 255, + 255, + ], + "direction": Float32Array [ + -0.7071067690849304, + -0.0000012868819112554775, + 0.7071067690849304, + ], + "intensity": 0.1019740030169487, + }, + { + "color": Uint8Array [ + 255, + 255, + 255, + ], + "direction": Float32Array [ + -4.371138828673793e-8, + 1, + 0, + ], + "intensity": 0, + }, + { + "color": Uint8Array [ + 255, + 255, + 255, + ], + "direction": Float32Array [ + 0.7071067690849304, + 0, + -0.7071067690849304, + ], + "intensity": 0, + }, + { + "color": Uint8Array [ + 255, + 255, + 255, + ], + "direction": Float32Array [ + -4.371138828673793e-8, + -1, + 0, + ], + "intensity": 0, + }, + ], + "shadowInfluence": 0, + }, + { + "backlightColor": Uint8Array [ + 255, + 255, + 255, + ], + "backlightIntensity": 0, + "lights": [ + { + "color": Uint8Array [ + 45, + 46, + 37, + ], + "direction": Float32Array [ + 0.7071067690849304, + 0, + 0.7071067690849304, + ], + "intensity": 1.2000000476837158, + }, + { + "color": Uint8Array [ + 31, + 140, + 183, + ], + "direction": Float32Array [ + -0.7071067690849304, + -0.0000012868819112554775, + -0.7071067690849304, + ], + "intensity": 0.13486842811107635, + }, + { + "color": Uint8Array [ + 249, + 98, + 15, + ], + "direction": Float32Array [ + -0.0000010291722674082848, + 1.8730171493647196e-12, + -1, + ], + "intensity": 0.29605263471603394, + }, + { + "color": Uint8Array [ + 161, + 255, + 174, + ], + "direction": Float32Array [ + -0.0000010291722674082848, + -1.8730171493647196e-12, + 1, + ], + "intensity": 0.09539473801851273, + }, + { + "color": Uint8Array [ + 255, + 255, + 255, + ], + "direction": Float32Array [ + -0.7071067690849304, + -0.0000012868819112554775, + 0.7071067690849304, + ], + "intensity": 0.1019740030169487, + }, + { + "color": Uint8Array [ + 255, + 255, + 255, + ], + "direction": Float32Array [ + -4.371138828673793e-8, + 1, + 0, + ], + "intensity": 0, + }, + { + "color": Uint8Array [ + 255, + 255, + 255, + ], + "direction": Float32Array [ + 0.7071067690849304, + 0, + -0.7071067690849304, + ], + "intensity": 0, + }, + { + "color": Uint8Array [ + 255, + 255, + 255, + ], + "direction": Float32Array [ + -4.371138828673793e-8, + -1, + 0, + ], + "intensity": 0, + }, + ], + "shadowInfluence": 0, + }, + { + "backlightColor": Uint8Array [ + 0, + 0, + 0, + ], + "backlightIntensity": 0, + "lights": [ + { + "color": Uint8Array [ + 255, + 233, + 192, + ], + "direction": Float32Array [ + 0.7071067690849304, + 0, + 0.7071067690849304, + ], + "intensity": 1.2999999523162842, + }, + { + "color": Uint8Array [ + 124, + 172, + 248, + ], + "direction": Float32Array [ + -0.7071067690849304, + -0.0000012868819112554775, + -0.7071067690849304, + ], + "intensity": 0.30000001192092896, + }, + { + "color": Uint8Array [ + 191, + 221, + 255, + ], + "direction": Float32Array [ + 0.29848748445510864, + 0.9186500906944275, + 0.258819043636322, + ], + "intensity": 0.10000000149011612, + }, + { + "color": Uint8Array [ + 188, + 204, + 253, + ], + "direction": Float32Array [ + -0.7814504504203796, + 0.5677568912506104, + 0.258819043636322, + ], + "intensity": 0.10000000149011612, + }, + { + "color": Uint8Array [ + 199, + 190, + 255, + ], + "direction": Float32Array [ + -0.8824164271354675, + 0.39287903904914856, + 0.25881901383399963, + ], + "intensity": 0.10000000149011612, + }, + { + "color": Uint8Array [ + 189, + 222, + 255, + ], + "direction": Float32Array [ + 0.2984875440597534, + -0.9186500310897827, + 0.258819043636322, + ], + "intensity": 0.10000000149011612, + }, + { + "color": Uint8Array [ + 204, + 237, + 255, + ], + "direction": Float32Array [ + -9.099629210140847e-7, + 1.6560650420438527e-12, + 1, + ], + "intensity": 0.30000001192092896, + }, + { + "color": Uint8Array [ + 168, + 254, + 189, + ], + "direction": Float32Array [ + -9.099629210140847e-7, + 1.6560650420438527e-12, + -1, + ], + "intensity": 0.15000000596046448, + }, + ], + "shadowInfluence": 0, + }, + ], + "lightingCharGroups": [], + "name": "", + "nightMods": Uint8Array [ + 255, + 255, + 255, + 133, + ], + "particleFieldCutouts": [], + "particleFields": [ + { + "altitude": 0, + "angle": Float32Array [ + 0, + 0, + ], + "clusterCount": 0, + "clustering": Float32Array [ + 0, + 0, + ], + "depth": 0, + "deviation": 0, + "deviationSpeed": Float32Array [ + 0, + 0, + ], + "extent": 0, + "fade": 0, + "fieldDirection": Float32Array [ + 0, + 0, + 0, + ], + "flags": 0, + "lifetime": Float32Array [ + 0, + 0, + ], + "name": "", + "opacity": Float32Array [ + 0, + 0, + ], + "particleCount": 0, + "period": Float32Array [ + 0, + 0, + ], + "reserved": 0, + "rotation": Float32Array [ + 0, + 0, + ], + "scaleX": Float32Array [ + 0, + 0, + ], + "scaleY": Float32Array [ + 0, + 0, + ], + "seed": 0, + "speed": Float32Array [ + 0, + 0, + ], + "texColRow": Uint32Array [ + 0, + 0, + ], + "texFPS": 0, + "texPath": 0, + "type": 0, + }, + ], + "shapeArray": [ + { + "center": Float32Array [ + 12444.90234375, + -11038.111328125, + -13950.0166015625, + ], + "fadeHorizInner": 500, + "fadeHorizOuter": 304.0540466308594, + "fadeVertical": 0, + "height": 4234.154296875, + "shapeType": 2, + "vertexArray": [ + Float32Array [ + 7669.90673828125, + -9651.5224609375, + ], + Float32Array [ + 7823.34814453125, + -8060.74755859375, + ], + Float32Array [ + 7481.77783203125, + -7327.00341796875, + ], + Float32Array [ + 6463.423828125, + -7881.0751953125, + ], + Float32Array [ + 4845.3310546875, + -7005.689453125, + ], + Float32Array [ + 4489.3251953125, + -2838.858642578125, + ], + Float32Array [ + 7027.4013671875, + -2886.324462890625, + ], + Float32Array [ + 7639.58349609375, + -4596.83447265625, + ], + Float32Array [ + 10091.2685546875, + -4438.5546875, + ], + Float32Array [ + 20400.478515625, + -5627.97314453125, + ], + Float32Array [ + 19609.34375, + -9548.9228515625, + ], + Float32Array [ + 18436.21875, + -10314.4052734375, + ], + Float32Array [ + 18223.42578125, + -18535.71484375, + ], + Float32Array [ + 10955.69921875, + -19237.36328125, + ], + ], + }, + ], + "sky": { + "dayBrightness": 1, + "dayHazeBottom": 0, + "dayHazeDensity": 0, + "dayHazeFalloff": 16, + "dayLightIntensity": 1, + "dayStarDensity": 0, + "flags": 0, + "nightBrightness": 1.5, + "nightHazeBottom": 0.4207436442375183, + "nightHazeDensity": 1, + "nightHazeFalloff": 0.4129158556461334, + "nightLightIntensity": 0.40577900409698486, + "nightStarDensity": 3, + "verticalOffset": 0, + }, + "skyCards": { + "cards": [], + }, + "spawns": {}, + "type": 5, + "water": [ + { + "animAmplitude": 0, + "animChoppiness": 0, + "animWind": Float32Array [ + -90, + -30, + ], + "bumpAmount": 300, + "bumpAngle0": 0, + "bumpAngle1": 40, + "bumpScale0": 0.10000000149011612, + "bumpScale1": 0.10000000149011612, + "bumpSpeed0": 1, + "bumpSpeed1": 1, + "bumpTile0": 1.7999999523162842, + "bumpTile1": 2.5999999046325684, + "constantTokens": [], + "constantValues": [], + "depthAttenuation": 200, + "distortAmount": 0.15000000596046448, + "foamColor0": Uint8Array [ + 51, + 126, + 174, + 38, + ], + "foamColor1": Uint8Array [ + 255, + 255, + 255, + 191, + ], + "foamDepthAttenuation": 0.8999999761581421, + "foamDissolve": 0.949999988079071, + "foamSpawn": 0.5, + "materialFilename": 0, + "patternAngle": 0, + "patternColor": Uint8Array [ + 255, + 255, + 255, + 0, + ], + "patternEdge": 1, + "patternSpeed": 1, + "patternTile": 1.7999999523162842, + "surfaceDeepColor": Uint8Array [ + 50, + 16, + 9, + 0, + ], + "surfaceFresnel": 2.5, + "surfaceShallowColor": Uint8Array [ + 190, + 168, + 103, + 0, + ], + "textureFilenames": [], + "waterFlags": 1, + }, + { + "animAmplitude": 0, + "animChoppiness": -0.4678260087966919, + "animWind": Float32Array [ + -34.065345764160156, + -27.119556427001953, + ], + "bumpAmount": 72.02046203613281, + "bumpAngle0": 70.15873718261719, + "bumpAngle1": 12.396697998046875, + "bumpScale0": 0.22796399891376495, + "bumpScale1": 0.20668700337409973, + "bumpSpeed0": 0.534434974193573, + "bumpSpeed1": 0.7768599987030029, + "bumpTile0": 2.3801651000976562, + "bumpTile1": 13.35779857635498, + "constantTokens": Uint32Array [ + 809906891, + 911119242, + 910462480, + 808137754, + 814574097, + 807298231, + 813734574, + 3101301168, + 1324870500, + 1472906389, + 2953265279, + 3427729611, + 1355227165, + 2983621944, + ], + "constantValues": [ + Float32Array [ + 0.521569013595581, + 0.521569013595581, + 0.521569013595581, + 255, + ], + Float32Array [ + 0.9372550249099731, + 0.8470590114593506, + 0.5803920030593872, + 1, + ], + Float32Array [ + 34.11420440673828, + 0, + 0, + 0, + ], + Float32Array [ + 0.8916540145874023, + 15, + 3, + 0, + ], + Float32Array [ + 0.7337750196456909, + 0.26622501015663147, + 0.3443709909915924, + 1, + ], + Float32Array [ + 0.23426100611686707, + 35, + 1, + 0, + ], + Float32Array [ + 0.49139100313186646, + 0.27417200803756714, + 0.15231800079345703, + 0.5721849799156189, + ], + Float32Array [ + 0, + 0, + 0, + 0, + ], + Float32Array [ + 0, + 0, + 0, + 0, + ], + Float32Array [ + 0, + 0, + 0, + 0, + ], + Float32Array [ + 0, + 0, + 0, + 0, + ], + Float32Array [ + 0, + 0, + 0, + 0, + ], + Float32Array [ + 0, + 0, + 0, + 0, + ], + Float32Array [ + 0, + 0, + 0, + 0, + ], + ], + "depthAttenuation": 431.1845397949219, + "distortAmount": 0.00009999999747378752, + "foamColor0": Uint8Array [ + 51, + 126, + 174, + 38, + ], + "foamColor1": Uint8Array [ + 255, + 255, + 255, + 191, + ], + "foamDepthAttenuation": 0.8999999761581421, + "foamDissolve": 0.949999988079071, + "foamSpawn": 0.5, + "materialFilename": 187551, + "patternAngle": 9.310355186462402, + "patternColor": Uint8Array [ + 179, + 124, + 125, + 34, + ], + "patternEdge": 0.36927199363708496, + "patternSpeed": 0.30727800726890564, + "patternTile": 14.381322860717773, + "surfaceDeepColor": Uint8Array [ + 58, + 94, + 103, + 0, + ], + "surfaceFresnel": 0.8354790210723877, + "surfaceShallowColor": Uint8Array [ + 116, + 218, + 226, + 0, + ], + "textureFilenames": [ + 0, + 186359, + 187574, + 187574, + 187576, + ], + "waterFlags": 1, + }, + { + "animAmplitude": 0, + "animChoppiness": 0, + "animWind": Float32Array [ + -90, + -30, + ], + "bumpAmount": 300, + "bumpAngle0": 0, + "bumpAngle1": 40, + "bumpScale0": 0.10000000149011612, + "bumpScale1": 0.10000000149011612, + "bumpSpeed0": 1, + "bumpSpeed1": 1, + "bumpTile0": 1.7999999523162842, + "bumpTile1": 2.5999999046325684, + "constantTokens": [], + "constantValues": [], + "depthAttenuation": 200, + "distortAmount": 0.15000000596046448, + "foamColor0": Uint8Array [ + 51, + 126, + 174, + 38, + ], + "foamColor1": Uint8Array [ + 255, + 255, + 255, + 191, + ], + "foamDepthAttenuation": 0.8999999761581421, + "foamDissolve": 0.949999988079071, + "foamSpawn": 0.5, + "materialFilename": 0, + "patternAngle": 0, + "patternColor": Uint8Array [ + 255, + 255, + 255, + 0, + ], + "patternEdge": 1, + "patternSpeed": 1, + "patternTile": 1.7999999523162842, + "surfaceDeepColor": Uint8Array [ + 50, + 16, + 9, + 0, + ], + "surfaceFresnel": 2.5, + "surfaceShallowColor": Uint8Array [ + 190, + 168, + 103, + 0, + ], + "textureFilenames": [], + "waterFlags": 1, + }, + ], + "wind": [ + { + "azimuth": 0, + "elevation": 0, + "gust": 0, + "gustFreq": 0, + "gustSpeed": 0, + "noise": 0, + "speed": 0, + }, + { + "azimuth": 7, + "elevation": 0, + "gust": 6, + "gustFreq": 38, + "gustSpeed": 24, + "noise": 4, + "speed": 10, + }, + { + "azimuth": 0, + "elevation": 0, + "gust": 0, + "gustFreq": 0, + "gustSpeed": 0, + "noise": 0, + "speed": 0, + }, + ], + }, + { + "audio": [], + "bindTarget": 0n, + "clouds": { + "layers": [ + { + "altitude": 5895.5986328125, + "attributes": [ + { + "brightness": 1, + "density": 0.572160005569458, + "fadeEnd": 30, + "fadeWidth": 30, + "haze": 0, + "lightIntensity": 1, + "reserved": 0, + "velocity": Float32Array [ + 25.588512420654297, + 50.15349578857422, + ], + }, + { + "brightness": 1, + "density": 0.36540400981903076, + "fadeEnd": 30, + "fadeWidth": 30, + "haze": 0.8178099989891052, + "lightIntensity": 1, + "reserved": 0, + "velocity": Float32Array [ + 0, + 0, + ], + }, + { + "brightness": 1, + "density": 0, + "fadeEnd": 30, + "fadeWidth": 30, + "haze": 1, + "lightIntensity": 1, + "reserved": 0, + "velocity": Float32Array [ + 0, + 0, + ], + }, + ], + "cutOut": 1000, + "depth": 0.011873000301420689, + "extent": 1, + "name": "", + "reserved": 0, + "scale": 4.677585124969482, + "texture": 188574, + }, + { + "altitude": 462.0123291015625, + "attributes": [ + { + "brightness": 1, + "density": 0, + "fadeEnd": 225, + "fadeWidth": 100, + "haze": 1, + "lightIntensity": 1, + "reserved": 0, + "velocity": Float32Array [ + 0, + 0, + ], + }, + { + "brightness": 1, + "density": 0.8439429998397827, + "fadeEnd": 225, + "fadeWidth": 100, + "haze": 0.8473520278930664, + "lightIntensity": 0.32751500606536865, + "reserved": 0, + "velocity": Float32Array [ + 94.49636840820312, + 34.26790237426758, + ], + }, + { + "brightness": 1, + "density": 0, + "fadeEnd": 225, + "fadeWidth": 100, + "haze": 1, + "lightIntensity": 1, + "reserved": 0, + "velocity": Float32Array [ + 0, + 0, + ], + }, + ], + "cutOut": 2000, + "depth": 0.004569000098854303, + "extent": 1, + "name": "", + "reserved": 0, + "scale": 1.630321979522705, + "texture": 188576, + }, + { + "altitude": 30000, + "attributes": [ + { + "brightness": 1, + "density": 0.43103399872779846, + "fadeEnd": 16, + "fadeWidth": 16, + "haze": 1, + "lightIntensity": 0.369253009557724, + "reserved": 0, + "velocity": Float32Array [ + -290.2298583984375, + -149.42529296875, + ], + }, + { + "brightness": 1, + "density": 1, + "fadeEnd": 16, + "fadeWidth": 16, + "haze": 1, + "lightIntensity": 1, + "reserved": 0, + "velocity": Float32Array [ + 0, + 0, + ], + }, + { + "brightness": 1, + "density": 1, + "fadeEnd": 16, + "fadeWidth": 16, + "haze": 1, + "lightIntensity": 1, + "reserved": 0, + "velocity": Float32Array [ + 0, + 0, + ], + }, + ], + "cutOut": 100, + "depth": 0, + "extent": 1, + "name": "", + "reserved": 0, + "scale": 1.3074710369110107, + "texture": 195082, + }, + { + "altitude": 30000, + "attributes": [ + { + "brightness": 1, + "density": 1, + "fadeEnd": 16, + "fadeWidth": 16, + "haze": 1, + "lightIntensity": 1, + "reserved": 0, + "velocity": Float32Array [ + -178.160888671875, + 0, + ], + }, + { + "brightness": 1, + "density": 1, + "fadeEnd": 16, + "fadeWidth": 16, + "haze": 1, + "lightIntensity": 1, + "reserved": 0, + "velocity": Float32Array [ + 0, + 0, + ], + }, + { + "brightness": 1, + "density": 1, + "fadeEnd": 16, + "fadeWidth": 16, + "haze": 1, + "lightIntensity": 1, + "reserved": 0, + "velocity": Float32Array [ + 0, + 0, + ], + }, + ], + "cutOut": 100, + "depth": 0, + "extent": 1, + "name": "", + "reserved": 0, + "scale": 0.7471259832382202, + "texture": 195082, + }, + { + "altitude": 22801.72265625, + "attributes": [ + { + "brightness": 1, + "density": 1, + "fadeEnd": 16, + "fadeWidth": 16, + "haze": 1, + "lightIntensity": 1, + "reserved": 0, + "velocity": Float32Array [ + -267.2413330078125, + 83.3333740234375, + ], + }, + { + "brightness": 1, + "density": 1, + "fadeEnd": 16, + "fadeWidth": 16, + "haze": 1, + "lightIntensity": 1, + "reserved": 0, + "velocity": Float32Array [ + 0, + 0, + ], + }, + { + "brightness": 1, + "density": 1, + "fadeEnd": 16, + "fadeWidth": 16, + "haze": 1, + "lightIntensity": 1, + "reserved": 0, + "velocity": Float32Array [ + 0, + 0, + ], + }, + ], + "cutOut": 3000, + "depth": 0, + "extent": 1, + "name": "", + "reserved": 0, + "scale": 0.5172410011291504, + "texture": 195082, + }, + { + "altitude": 20689.65625, + "attributes": [ + { + "brightness": 1, + "density": 1, + "fadeEnd": 16, + "fadeWidth": 16, + "haze": 1, + "lightIntensity": 1, + "reserved": 0, + "velocity": Float32Array [ + -163.7930908203125, + 89.0804443359375, + ], + }, + { + "brightness": 1, + "density": 1, + "fadeEnd": 16, + "fadeWidth": 16, + "haze": 1, + "lightIntensity": 1, + "reserved": 0, + "velocity": Float32Array [ + 0, + 0, + ], + }, + { + "brightness": 1, + "density": 1, + "fadeEnd": 16, + "fadeWidth": 16, + "haze": 1, + "lightIntensity": 1, + "reserved": 0, + "velocity": Float32Array [ + 0, + 0, + ], + }, + ], + "cutOut": 3000, + "depth": 0, + "extent": 1, + "name": "", + "reserved": 0, + "scale": 0.8908050060272217, + "texture": 195082, + }, + ], + }, + "coloredLightRings": [], + "effect": [ + { + "clutTexturePath": 0, + "ext": {}, + "flags": 0, + "focalDepth": 6000, + "focalRange": 4000, + "glow": Uint8Array [ + 54, + 117, + 120, + 0, + ], + "glowAmplify": 0.3504819869995117, + "glowLevel": Uint8Array [ + 0, + 1, + 1, + 0, + ], + "saturation": 1, + "ssaoAmount": 3, + "ssaoBrighten": 0.20000000298023224, + "ssaoContrast": 1, + "ssaoSunScale": 0.5, + "tintAmount": 0, + "tintColor": Uint8Array [ + 255, + 255, + 255, + 255, + ], + "tintFocus": 0, + "tintTargetColor": Uint8Array [ + 255, + 255, + 255, + 0, + ], + }, + { + "clutTexturePath": 0, + "ext": {}, + "flags": 0, + "focalDepth": 6000, + "focalRange": 4000, + "glow": Uint8Array [ + 161, + 122, + 55, + 0, + ], + "glowAmplify": 0.4000000059604645, + "glowLevel": Uint8Array [ + 51, + 51, + 51, + 0, + ], + "saturation": 1, + "ssaoAmount": 3, + "ssaoBrighten": 0.20000000298023224, + "ssaoContrast": 1, + "ssaoSunScale": 0.5, + "tintAmount": 0, + "tintColor": Uint8Array [ + 0, + 0, + 0, + 0, + ], + "tintFocus": 0, + "tintTargetColor": Uint8Array [ + 0, + 0, + 0, + 0, + ], + }, + { + "clutTexturePath": 0, + "ext": {}, + "flags": 0, + "focalDepth": 6000, + "focalRange": 4000, + "glow": Uint8Array [ + 0, + 0, + 0, + 0, + ], + "glowAmplify": 0, + "glowLevel": Uint8Array [ + 0, + 0, + 0, + 0, + ], + "saturation": 1, + "ssaoAmount": 3, + "ssaoBrighten": 0.20000000298023224, + "ssaoContrast": 1, + "ssaoSunScale": 0.5, + "tintAmount": 0, + "tintColor": Uint8Array [ + 255, + 255, + 255, + 255, + ], + "tintFocus": 0, + "tintTargetColor": Uint8Array [ + 255, + 255, + 255, + 0, + ], + }, + ], + "ext": { + "brightMax": 0.5, + "brightMin": 0.30000001192092896, + "brightScale": 1, + "brightTime": 2.5, + "darkCoeff": 1.2000000476837158, + "darkExp": 0.800000011920929, + "darkMax": 0.30000001192092896, + "darkMin": 0.10000000149011612, + "darkScale": 1, + "dimTime": 5, + "ext2": {}, + "waterReflectionParams": Float32Array [ + 0, + 0, + 0, + 0, + ], + }, + "flags": 0, + "guid": 1871029895331611136n, + "haze": [ + { + "depthCue": 0.0002519999979995191, + "distRange": Float32Array [ + 648.6954345703125, + 3884.892333984375, + ], + "farColor": Uint8Array [ + 76, + 64, + 37, + 255, + ], + "heightColor": Uint8Array [ + 146, + 115, + 136, + 255, + ], + "heightRange": Float32Array [ + -359.7119140625, + 1478.148681640625, + ], + "nearColor": Uint8Array [ + 24, + 23, + 6, + 255, + ], + "sunDirRange": Float32Array [ + -1, + 1, + ], + }, + { + "depthCue": 0.0002519999979995191, + "distRange": Float32Array [ + 752.941162109375, + 4178.8232421875, + ], + "farColor": Uint8Array [ + 145, + 118, + 110, + 255, + ], + "heightColor": Uint8Array [ + 146, + 115, + 136, + 255, + ], + "heightRange": Float32Array [ + -283.95294189453125, + 399.01202392578125, + ], + "nearColor": Uint8Array [ + 74, + 42, + 16, + 255, + ], + "sunDirRange": Float32Array [ + -1, + 1, + ], + }, + { + "depthCue": 0, + "distRange": Float32Array [ + 0, + 0, + ], + "farColor": Uint8Array [ + 0, + 0, + 0, + 255, + ], + "heightColor": Uint8Array [ + 0, + 0, + 0, + 255, + ], + "heightRange": Float32Array [ + 0, + 0, + ], + "nearColor": Uint8Array [ + 0, + 0, + 0, + 255, + ], + "sunDirRange": Float32Array [ + 0, + 0, + ], + }, + ], + "lighting": [ + { + "backlightColor": Uint8Array [ + 255, + 255, + 255, + ], + "backlightIntensity": 0, + "lights": [ + { + "color": Uint8Array [ + 230, + 245, + 255, + ], + "direction": Float32Array [ + 0.6427881717681885, + 0, + 0.7660439610481262, + ], + "intensity": 0.06907899677753448, + }, + { + "color": Uint8Array [ + 228, + 99, + 8, + ], + "direction": Float32Array [ + -0.7071067690849304, + -0.0000012868819112554775, + -0.7071067690849304, + ], + "intensity": 0.43421098589897156, + }, + { + "color": Uint8Array [ + 249, + 98, + 15, + ], + "direction": Float32Array [ + -0.0000010291722674082848, + 1.8730171493647196e-12, + -1, + ], + "intensity": 0.24671100080013275, + }, + { + "color": Uint8Array [ + 161, + 255, + 174, + ], + "direction": Float32Array [ + -0.0000010291722674082848, + -1.8730171493647196e-12, + 1, + ], + "intensity": 0, + }, + { + "color": Uint8Array [ + 255, + 255, + 255, + ], + "direction": Float32Array [ + -0.7071067690849304, + -0.0000012868819112554775, + 0.7071067690849304, + ], + "intensity": 0.1019740030169487, + }, + { + "color": Uint8Array [ + 255, + 255, + 255, + ], + "direction": Float32Array [ + -4.371138828673793e-8, + 1, + 0, + ], + "intensity": 0, + }, + { + "color": Uint8Array [ + 255, + 255, + 255, + ], + "direction": Float32Array [ + 0.7071067690849304, + 0, + -0.7071067690849304, + ], + "intensity": 0, + }, + { + "color": Uint8Array [ + 255, + 255, + 255, + ], + "direction": Float32Array [ + -4.371138828673793e-8, + -1, + 0, + ], + "intensity": 0, + }, + ], + "shadowInfluence": -0.2937690019607544, + }, + { + "backlightColor": Uint8Array [ + 255, + 255, + 255, + ], + "backlightIntensity": 1, + "lights": [ + { + "color": Uint8Array [ + 240, + 126, + 45, + ], + "direction": Float32Array [ + 0.7071067690849304, + 0, + 0.7071067690849304, + ], + "intensity": 1.2000000476837158, + }, + { + "color": Uint8Array [ + 255, + 234, + 219, + ], + "direction": Float32Array [ + -0.7071067690849304, + -0.0000012868819112554775, + -0.7071067690849304, + ], + "intensity": 0.12171052396297455, + }, + { + "color": Uint8Array [ + 249, + 15, + 98, + ], + "direction": Float32Array [ + -0.0000010291722674082848, + -1.8730171493647196e-12, + -1, + ], + "intensity": 0.06578947603702545, + }, + { + "color": Uint8Array [ + 161, + 255, + 174, + ], + "direction": Float32Array [ + -0.0000010291722674082848, + -1.8730171493647196e-12, + 1, + ], + "intensity": 0.17117099463939667, + }, + { + "color": Uint8Array [ + 255, + 255, + 255, + ], + "direction": Float32Array [ + -0.7071067690849304, + -0.0000012868819112554775, + 0.7071067690849304, + ], + "intensity": 0.08408399671316147, + }, + { + "color": Uint8Array [ + 255, + 255, + 255, + ], + "direction": Float32Array [ + -4.371138828673793e-8, + 1, + 0, + ], + "intensity": 0.06606599688529968, + }, + { + "color": Uint8Array [ + 255, + 255, + 255, + ], + "direction": Float32Array [ + 0.7071067690849304, + 0, + -0.7071067690849304, + ], + "intensity": 0.08408399671316147, + }, + { + "color": Uint8Array [ + 255, + 255, + 255, + ], + "direction": Float32Array [ + -4.371138828673793e-8, + -1, + 0, + ], + "intensity": 0.08408399671316147, + }, + ], + "shadowInfluence": -0.2937690019607544, + }, + { + "backlightColor": Uint8Array [ + 0, + 0, + 0, + ], + "backlightIntensity": 0, + "lights": [ + { + "color": Uint8Array [ + 255, + 233, + 192, + ], + "direction": Float32Array [ + 0.7071067690849304, + 0, + 0.7071067690849304, + ], + "intensity": 1.2999999523162842, + }, + { + "color": Uint8Array [ + 124, + 172, + 248, + ], + "direction": Float32Array [ + -0.7071067690849304, + -0.0000012868819112554775, + -0.7071067690849304, + ], + "intensity": 0.30000001192092896, + }, + { + "color": Uint8Array [ + 191, + 221, + 255, + ], + "direction": Float32Array [ + 0.29848748445510864, + 0.9186500906944275, + 0.258819043636322, + ], + "intensity": 0.10000000149011612, + }, + { + "color": Uint8Array [ + 188, + 204, + 253, + ], + "direction": Float32Array [ + -0.7814504504203796, + 0.5677568912506104, + 0.258819043636322, + ], + "intensity": 0.10000000149011612, + }, + { + "color": Uint8Array [ + 199, + 190, + 255, + ], + "direction": Float32Array [ + -0.8824164271354675, + 0.39287903904914856, + 0.25881901383399963, + ], + "intensity": 0.10000000149011612, + }, + { + "color": Uint8Array [ + 189, + 222, + 255, + ], + "direction": Float32Array [ + 0.2984875440597534, + -0.9186500310897827, + 0.258819043636322, + ], + "intensity": 0.10000000149011612, + }, + { + "color": Uint8Array [ + 204, + 237, + 255, + ], + "direction": Float32Array [ + -9.099629210140847e-7, + 1.6560650420438527e-12, + 1, + ], + "intensity": 0.30000001192092896, + }, + { + "color": Uint8Array [ + 168, + 254, + 189, + ], + "direction": Float32Array [ + -9.099629210140847e-7, + 1.6560650420438527e-12, + -1, + ], + "intensity": 0.15000000596046448, + }, + ], + "shadowInfluence": 0, + }, + ], + "lightingCharGroups": [], + "name": "", + "nightMods": Uint8Array [ + 255, + 255, + 255, + 133, + ], + "particleFieldCutouts": [], + "particleFields": [ + { + "altitude": 0, + "angle": Float32Array [ + 0, + 0, + ], + "clusterCount": 0, + "clustering": Float32Array [ + 0, + 0, + ], + "depth": 0, + "deviation": 0, + "deviationSpeed": Float32Array [ + 0, + 0, + ], + "extent": 0, + "fade": 0, + "fieldDirection": Float32Array [ + 0, + 0, + 0, + ], + "flags": 0, + "lifetime": Float32Array [ + 0, + 0, + ], + "name": "", + "opacity": Float32Array [ + 0, + 0, + ], + "particleCount": 0, + "period": Float32Array [ + 0, + 0, + ], + "reserved": 0, + "rotation": Float32Array [ + 0, + 0, + ], + "scaleX": Float32Array [ + 0, + 0, + ], + "scaleY": Float32Array [ + 0, + 0, + ], + "seed": 0, + "speed": Float32Array [ + 0, + 0, + ], + "texColRow": Uint32Array [ + 0, + 0, + ], + "texFPS": 0, + "texPath": 0, + "type": 0, + }, + ], + "shapeArray": [ + { + "center": Float32Array [ + 623.9780883789062, + -15145.5771484375, + -15423.7890625, + ], + "fadeHorizInner": 439.1891784667969, + "fadeHorizOuter": 270.270263671875, + "fadeVertical": 0, + "height": 1584.08203125, + "shapeType": 2, + "vertexArray": [ + Float32Array [ + 1653.3980712890625, + -13648.4794921875, + ], + Float32Array [ + 3012.365234375, + -14776.78125, + ], + Float32Array [ + 3093.459228515625, + -16423.0546875, + ], + Float32Array [ + 2089.11767578125, + -17401.75, + ], + Float32Array [ + 660.1575927734375, + -15776.5380859375, + ], + Float32Array [ + -1845.5030517578125, + -14276.54296875, + ], + Float32Array [ + -363.066162109375, + -12889.404296875, + ], + ], + }, + ], + "sky": { + "dayBrightness": 1, + "dayHazeBottom": 0, + "dayHazeDensity": 0, + "dayHazeFalloff": 16, + "dayLightIntensity": 1, + "dayStarDensity": 1, + "flags": 0, + "nightBrightness": 1.5, + "nightHazeBottom": 0.4207436442375183, + "nightHazeDensity": 1, + "nightHazeFalloff": 0.4129158556461334, + "nightLightIntensity": 0.40577900409698486, + "nightStarDensity": 3, + "verticalOffset": 0, + }, + "skyCards": { + "cards": [], + }, + "spawns": {}, + "type": 5, + "water": [ + { + "animAmplitude": 0, + "animChoppiness": 0, + "animWind": Float32Array [ + -90, + -30, + ], + "bumpAmount": 300, + "bumpAngle0": 0, + "bumpAngle1": 40, + "bumpScale0": 0.10000000149011612, + "bumpScale1": 0.10000000149011612, + "bumpSpeed0": 1, + "bumpSpeed1": 1, + "bumpTile0": 1.7999999523162842, + "bumpTile1": 2.5999999046325684, + "constantTokens": [], + "constantValues": [], + "depthAttenuation": 200, + "distortAmount": 0.15000000596046448, + "foamColor0": Uint8Array [ + 51, + 126, + 174, + 38, + ], + "foamColor1": Uint8Array [ + 255, + 255, + 255, + 191, + ], + "foamDepthAttenuation": 0.8999999761581421, + "foamDissolve": 0.949999988079071, + "foamSpawn": 0.5, + "materialFilename": 0, + "patternAngle": 0, + "patternColor": Uint8Array [ + 255, + 255, + 255, + 0, + ], + "patternEdge": 1, + "patternSpeed": 1, + "patternTile": 1.7999999523162842, + "surfaceDeepColor": Uint8Array [ + 50, + 16, + 9, + 0, + ], + "surfaceFresnel": 2.5, + "surfaceShallowColor": Uint8Array [ + 190, + 168, + 103, + 0, + ], + "textureFilenames": [], + "waterFlags": 1, + }, + { + "animAmplitude": 0, + "animChoppiness": -0.4678260087966919, + "animWind": Float32Array [ + -34.065345764160156, + -27.119556427001953, + ], + "bumpAmount": 72.02046203613281, + "bumpAngle0": 70.15873718261719, + "bumpAngle1": 12.396697998046875, + "bumpScale0": 0.22796399891376495, + "bumpScale1": 0.20668700337409973, + "bumpSpeed0": 0.534434974193573, + "bumpSpeed1": 0.7768599987030029, + "bumpTile0": 2.3801651000976562, + "bumpTile1": 13.35779857635498, + "constantTokens": Uint32Array [ + 809906891, + 911119242, + 910462480, + 808137754, + 814574097, + 807298231, + 813734574, + 3101301168, + 1324870500, + 1472906389, + 2953265279, + 3427729611, + 1355227165, + 2983621944, + ], + "constantValues": [ + Float32Array [ + 0.521569013595581, + 0.521569013595581, + 0.521569013595581, + 255, + ], + Float32Array [ + 0.9372550249099731, + 0.8470590114593506, + 0.5803920030593872, + 1, + ], + Float32Array [ + 34.11420440673828, + 0, + 0, + 0, + ], + Float32Array [ + 0.8916540145874023, + 15, + 3, + 0, + ], + Float32Array [ + 0.7337750196456909, + 0.26622501015663147, + 0.3443709909915924, + 1, + ], + Float32Array [ + 0.23426100611686707, + 35, + 1, + 0, + ], + Float32Array [ + 0.49139100313186646, + 0.27417200803756714, + 0.15231800079345703, + 0.5721849799156189, + ], + Float32Array [ + 0, + 0, + 0, + 0, + ], + Float32Array [ + 0, + 0, + 0, + 0, + ], + Float32Array [ + 0, + 0, + 0, + 0, + ], + Float32Array [ + 0, + 0, + 0, + 0, + ], + Float32Array [ + 0, + 0, + 0, + 0, + ], + Float32Array [ + 0, + 0, + 0, + 0, + ], + Float32Array [ + 0, + 0, + 0, + 0, + ], + ], + "depthAttenuation": 431.1845397949219, + "distortAmount": 0.00009999999747378752, + "foamColor0": Uint8Array [ + 51, + 126, + 174, + 38, + ], + "foamColor1": Uint8Array [ + 255, + 255, + 255, + 191, + ], + "foamDepthAttenuation": 0.8999999761581421, + "foamDissolve": 0.949999988079071, + "foamSpawn": 0.5, + "materialFilename": 187551, + "patternAngle": 9.310355186462402, + "patternColor": Uint8Array [ + 179, + 124, + 125, + 34, + ], + "patternEdge": 0.36927199363708496, + "patternSpeed": 0.30727800726890564, + "patternTile": 14.381322860717773, + "surfaceDeepColor": Uint8Array [ + 58, + 94, + 103, + 0, + ], + "surfaceFresnel": 0.8354790210723877, + "surfaceShallowColor": Uint8Array [ + 116, + 218, + 226, + 0, + ], + "textureFilenames": [ + 0, + 186359, + 187574, + 187574, + 187576, + ], + "waterFlags": 1, + }, + { + "animAmplitude": 0, + "animChoppiness": 0, + "animWind": Float32Array [ + -90, + -30, + ], + "bumpAmount": 300, + "bumpAngle0": 0, + "bumpAngle1": 40, + "bumpScale0": 0.10000000149011612, + "bumpScale1": 0.10000000149011612, + "bumpSpeed0": 1, + "bumpSpeed1": 1, + "bumpTile0": 1.7999999523162842, + "bumpTile1": 2.5999999046325684, + "constantTokens": [], + "constantValues": [], + "depthAttenuation": 200, + "distortAmount": 0.15000000596046448, + "foamColor0": Uint8Array [ + 51, + 126, + 174, + 38, + ], + "foamColor1": Uint8Array [ + 255, + 255, + 255, + 191, + ], + "foamDepthAttenuation": 0.8999999761581421, + "foamDissolve": 0.949999988079071, + "foamSpawn": 0.5, + "materialFilename": 0, + "patternAngle": 0, + "patternColor": Uint8Array [ + 255, + 255, + 255, + 0, + ], + "patternEdge": 1, + "patternSpeed": 1, + "patternTile": 1.7999999523162842, + "surfaceDeepColor": Uint8Array [ + 50, + 16, + 9, + 0, + ], + "surfaceFresnel": 2.5, + "surfaceShallowColor": Uint8Array [ + 190, + 168, + 103, + 0, + ], + "textureFilenames": [], + "waterFlags": 1, + }, + ], + "wind": [ + { + "azimuth": 0, + "elevation": 0, + "gust": 0, + "gustFreq": 0, + "gustSpeed": 0, + "noise": 0, + "speed": 0, + }, + { + "azimuth": 7, + "elevation": 0, + "gust": 6, + "gustFreq": 38, + "gustSpeed": 24, + "noise": 4, + "speed": 10, + }, + { + "azimuth": 0, + "elevation": 0, + "gust": 0, + "gustFreq": 0, + "gustSpeed": 0, + "noise": 0, + "speed": 0, + }, + ], + }, + { + "audio": [], + "bindTarget": 0n, + "clouds": { + "layers": [ + { + "altitude": 9230.76953125, + "attributes": [ + { + "brightness": 0.5600000023841858, + "density": 0.7169230580329895, + "fadeEnd": 40.615386962890625, + "fadeWidth": 30, + "haze": 0.681538462638855, + "lightIntensity": 0.8276923298835754, + "reserved": 0, + "velocity": Float32Array [ + 25.588512420654297, + 50.15349578857422, + ], + }, + { + "brightness": 1, + "density": 0.36540400981903076, + "fadeEnd": 40.615386962890625, + "fadeWidth": 30, + "haze": 0.8178099989891052, + "lightIntensity": 1, + "reserved": 0, + "velocity": Float32Array [ + 0, + 0, + ], + }, + { + "brightness": 1, + "density": 0, + "fadeEnd": 40.615386962890625, + "fadeWidth": 30, + "haze": 1, + "lightIntensity": 1, + "reserved": 0, + "velocity": Float32Array [ + 0, + 0, + ], + }, + ], + "cutOut": 1000, + "depth": 0.05723077058792114, + "extent": 1, + "name": "", + "reserved": 0, + "scale": 4.677585124969482, + "texture": 188574, + }, + { + "altitude": 462.0123291015625, + "attributes": [ + { + "brightness": 1, + "density": 0, + "fadeEnd": 225, + "fadeWidth": 100, + "haze": 1, + "lightIntensity": 1, + "reserved": 0, + "velocity": Float32Array [ + 0, + 0, + ], + }, + { + "brightness": 1, + "density": 0.8439429998397827, + "fadeEnd": 225, + "fadeWidth": 100, + "haze": 0.8473520278930664, + "lightIntensity": 0.32751500606536865, + "reserved": 0, + "velocity": Float32Array [ + 94.49636840820312, + 34.26790237426758, + ], + }, + { + "brightness": 1, + "density": 0, + "fadeEnd": 225, + "fadeWidth": 100, + "haze": 1, + "lightIntensity": 1, + "reserved": 0, + "velocity": Float32Array [ + 0, + 0, + ], + }, + ], + "cutOut": 2000, + "depth": 0.004569000098854303, + "extent": 1, + "name": "", + "reserved": 0, + "scale": 1.630321979522705, + "texture": 188576, + }, + { + "altitude": 30000, + "attributes": [ + { + "brightness": 1, + "density": 0.43103399872779846, + "fadeEnd": 16, + "fadeWidth": 16, + "haze": 1, + "lightIntensity": 0.369253009557724, + "reserved": 0, + "velocity": Float32Array [ + -290.2298583984375, + -149.42529296875, + ], + }, + { + "brightness": 1, + "density": 1, + "fadeEnd": 16, + "fadeWidth": 16, + "haze": 1, + "lightIntensity": 1, + "reserved": 0, + "velocity": Float32Array [ + 0, + 0, + ], + }, + { + "brightness": 1, + "density": 1, + "fadeEnd": 16, + "fadeWidth": 16, + "haze": 1, + "lightIntensity": 1, + "reserved": 0, + "velocity": Float32Array [ + 0, + 0, + ], + }, + ], + "cutOut": 100, + "depth": 0, + "extent": 1, + "name": "", + "reserved": 0, + "scale": 1.3074710369110107, + "texture": 195082, + }, + { + "altitude": 30000, + "attributes": [ + { + "brightness": 1, + "density": 1, + "fadeEnd": 16, + "fadeWidth": 16, + "haze": 1, + "lightIntensity": 1, + "reserved": 0, + "velocity": Float32Array [ + -178.160888671875, + 0, + ], + }, + { + "brightness": 1, + "density": 1, + "fadeEnd": 16, + "fadeWidth": 16, + "haze": 1, + "lightIntensity": 1, + "reserved": 0, + "velocity": Float32Array [ + 0, + 0, + ], + }, + { + "brightness": 1, + "density": 1, + "fadeEnd": 16, + "fadeWidth": 16, + "haze": 1, + "lightIntensity": 1, + "reserved": 0, + "velocity": Float32Array [ + 0, + 0, + ], + }, + ], + "cutOut": 100, + "depth": 0, + "extent": 1, + "name": "", + "reserved": 0, + "scale": 0.7471259832382202, + "texture": 195082, + }, + { + "altitude": 22801.72265625, + "attributes": [ + { + "brightness": 1, + "density": 1, + "fadeEnd": 16, + "fadeWidth": 16, + "haze": 1, + "lightIntensity": 1, + "reserved": 0, + "velocity": Float32Array [ + -267.2413330078125, + 83.3333740234375, + ], + }, + { + "brightness": 1, + "density": 1, + "fadeEnd": 16, + "fadeWidth": 16, + "haze": 1, + "lightIntensity": 1, + "reserved": 0, + "velocity": Float32Array [ + 0, + 0, + ], + }, + { + "brightness": 1, + "density": 1, + "fadeEnd": 16, + "fadeWidth": 16, + "haze": 1, + "lightIntensity": 1, + "reserved": 0, + "velocity": Float32Array [ + 0, + 0, + ], + }, + ], + "cutOut": 3000, + "depth": 0, + "extent": 1, + "name": "", + "reserved": 0, + "scale": 0.5172410011291504, + "texture": 195082, + }, + { + "altitude": 20689.65625, + "attributes": [ + { + "brightness": 1, + "density": 1, + "fadeEnd": 16, + "fadeWidth": 16, + "haze": 1, + "lightIntensity": 1, + "reserved": 0, + "velocity": Float32Array [ + -163.7930908203125, + 89.0804443359375, + ], + }, + { + "brightness": 1, + "density": 1, + "fadeEnd": 16, + "fadeWidth": 16, + "haze": 1, + "lightIntensity": 1, + "reserved": 0, + "velocity": Float32Array [ + 0, + 0, + ], + }, + { + "brightness": 1, + "density": 1, + "fadeEnd": 16, + "fadeWidth": 16, + "haze": 1, + "lightIntensity": 1, + "reserved": 0, + "velocity": Float32Array [ + 0, + 0, + ], + }, + ], + "cutOut": 3000, + "depth": 0, + "extent": 1, + "name": "", + "reserved": 0, + "scale": 0.8908050060272217, + "texture": 195082, + }, + { + "altitude": 15608.8564453125, + "attributes": [ + { + "brightness": 3, + "density": 0.26011601090431213, + "fadeEnd": 16, + "fadeWidth": 16, + "haze": 0.12546099722385406, + "lightIntensity": 1.5, + "reserved": 0, + "velocity": Float32Array [ + 77.4908447265625, + -33.2103271484375, + ], + }, + { + "brightness": 1, + "density": 1, + "fadeEnd": 16, + "fadeWidth": 16, + "haze": 1, + "lightIntensity": 1, + "reserved": 0, + "velocity": Float32Array [ + 0, + 0, + ], + }, + { + "brightness": 1, + "density": 1, + "fadeEnd": 16, + "fadeWidth": 16, + "haze": 1, + "lightIntensity": 1, + "reserved": 0, + "velocity": Float32Array [ + 0, + 0, + ], + }, + ], + "cutOut": 1000, + "depth": 0, + "extent": -1, + "name": "", + "reserved": 0, + "scale": 9.003689765930176, + "texture": 187566, + }, + ], + }, + "coloredLightRings": [], + "effect": [ + { + "clutTexturePath": 0, + "ext": {}, + "flags": 0, + "focalDepth": 6000, + "focalRange": 4000, + "glow": Uint8Array [ + 49, + 63, + 65, + 0, + ], + "glowAmplify": 0.25562700629234314, + "glowLevel": Uint8Array [ + 1, + 1, + 1, + 0, + ], + "saturation": 1.399999976158142, + "ssaoAmount": 3, + "ssaoBrighten": 0.20000000298023224, + "ssaoContrast": 1, + "ssaoSunScale": 0.5, + "tintAmount": 0, + "tintColor": Uint8Array [ + 255, + 255, + 255, + 255, + ], + "tintFocus": 0, + "tintTargetColor": Uint8Array [ + 255, + 255, + 255, + 0, + ], + }, + { + "clutTexturePath": 0, + "ext": {}, + "flags": 0, + "focalDepth": 6000, + "focalRange": 4000, + "glow": Uint8Array [ + 161, + 122, + 55, + 0, + ], + "glowAmplify": 0.4000000059604645, + "glowLevel": Uint8Array [ + 51, + 51, + 51, + 0, + ], + "saturation": 1, + "ssaoAmount": 3, + "ssaoBrighten": 0.20000000298023224, + "ssaoContrast": 1, + "ssaoSunScale": 0.5, + "tintAmount": 0, + "tintColor": Uint8Array [ + 0, + 0, + 0, + 0, + ], + "tintFocus": 0, + "tintTargetColor": Uint8Array [ + 0, + 0, + 0, + 0, + ], + }, + { + "clutTexturePath": 0, + "ext": {}, + "flags": 0, + "focalDepth": 6000, + "focalRange": 4000, + "glow": Uint8Array [ + 0, + 0, + 0, + 0, + ], + "glowAmplify": 0, + "glowLevel": Uint8Array [ + 0, + 0, + 0, + 0, + ], + "saturation": 1, + "ssaoAmount": 3, + "ssaoBrighten": 0.20000000298023224, + "ssaoContrast": 1, + "ssaoSunScale": 0.5, + "tintAmount": 0, + "tintColor": Uint8Array [ + 255, + 255, + 255, + 255, + ], + "tintFocus": 0, + "tintTargetColor": Uint8Array [ + 255, + 255, + 255, + 0, + ], + }, + ], + "ext": { + "brightMax": 0.5, + "brightMin": 0.30000001192092896, + "brightScale": 1, + "brightTime": 2.5, + "darkCoeff": 1.2000000476837158, + "darkExp": 0.800000011920929, + "darkMax": 0.30000001192092896, + "darkMin": 0.10000000149011612, + "darkScale": 1, + "dimTime": 5, + "ext2": {}, + "waterReflectionParams": Float32Array [ + 0, + 0, + 0, + 0, + ], + }, + "flags": 0, + "guid": 1876199343738880568n, + "haze": [ + { + "depthCue": 0.0002519999979995191, + "distRange": Float32Array [ + 648.6954345703125, + 2621.468994140625, + ], + "farColor": Uint8Array [ + 23, + 26, + 12, + 255, + ], + "heightColor": Uint8Array [ + 146, + 115, + 136, + 255, + ], + "heightRange": Float32Array [ + -359.7119140625, + 1478.148681640625, + ], + "nearColor": Uint8Array [ + 0, + 0, + 0, + 255, + ], + "sunDirRange": Float32Array [ + -1, + 1, + ], + }, + { + "depthCue": 0.0002519999979995191, + "distRange": Float32Array [ + 752.941162109375, + 4178.8232421875, + ], + "farColor": Uint8Array [ + 145, + 118, + 110, + 255, + ], + "heightColor": Uint8Array [ + 146, + 115, + 136, + 255, + ], + "heightRange": Float32Array [ + -283.95294189453125, + 399.01202392578125, + ], + "nearColor": Uint8Array [ + 74, + 42, + 16, + 255, + ], + "sunDirRange": Float32Array [ + -1, + 1, + ], + }, + { + "depthCue": 0, + "distRange": Float32Array [ + 0, + 0, + ], + "farColor": Uint8Array [ + 0, + 0, + 0, + 255, + ], + "heightColor": Uint8Array [ + 0, + 0, + 0, + 255, + ], + "heightRange": Float32Array [ + 0, + 0, + ], + "nearColor": Uint8Array [ + 0, + 0, + 0, + 255, + ], + "sunDirRange": Float32Array [ + 0, + 0, + ], + }, + ], + "lighting": [ + { + "backlightColor": Uint8Array [ + 255, + 255, + 255, + ], + "backlightIntensity": 0, + "lights": [ + { + "color": Uint8Array [ + 45, + 46, + 37, + ], + "direction": Float32Array [ + 0.7071067690849304, + 0, + 0.7071067690849304, + ], + "intensity": 1.2000000476837158, + }, + { + "color": Uint8Array [ + 31, + 140, + 183, + ], + "direction": Float32Array [ + -0.7071067690849304, + -0.0000012868819112554775, + -0.7071067690849304, + ], + "intensity": 0.05240200087428093, + }, + { + "color": Uint8Array [ + 249, + 98, + 15, + ], + "direction": Float32Array [ + -0.0000010291722674082848, + -1.8730171493647196e-12, + -1, + ], + "intensity": 0.24671100080013275, + }, + { + "color": Uint8Array [ + 161, + 255, + 174, + ], + "direction": Float32Array [ + -0.0000010291722674082848, + -1.8730171493647196e-12, + 1, + ], + "intensity": 0, + }, + { + "color": Uint8Array [ + 255, + 255, + 255, + ], + "direction": Float32Array [ + -0.7071067690849304, + -0.0000012868819112554775, + 0.7071067690849304, + ], + "intensity": 0.1019740030169487, + }, + { + "color": Uint8Array [ + 255, + 255, + 255, + ], + "direction": Float32Array [ + -4.371138828673793e-8, + 1, + 0, + ], + "intensity": 0, + }, + { + "color": Uint8Array [ + 255, + 255, + 255, + ], + "direction": Float32Array [ + 0.7071067690849304, + 0, + -0.7071067690849304, + ], + "intensity": 0, + }, + { + "color": Uint8Array [ + 255, + 255, + 255, + ], + "direction": Float32Array [ + -4.371138828673793e-8, + -1, + 0, + ], + "intensity": 0, + }, + ], + "shadowInfluence": 0, + }, + { + "backlightColor": Uint8Array [ + 255, + 255, + 255, + ], + "backlightIntensity": 1, + "lights": [ + { + "color": Uint8Array [ + 240, + 126, + 45, + ], + "direction": Float32Array [ + 0.7071067690849304, + 0, + 0.7071067690849304, + ], + "intensity": 1.2000000476837158, + }, + { + "color": Uint8Array [ + 255, + 234, + 219, + ], + "direction": Float32Array [ + -0.7071067690849304, + -0.0000012868819112554775, + -0.7071067690849304, + ], + "intensity": 0.12171052396297455, + }, + { + "color": Uint8Array [ + 249, + 15, + 98, + ], + "direction": Float32Array [ + -0.0000010291722674082848, + -1.8730171493647196e-12, + -1, + ], + "intensity": 0.06578947603702545, + }, + { + "color": Uint8Array [ + 161, + 255, + 174, + ], + "direction": Float32Array [ + -0.0000010291722674082848, + -1.8730171493647196e-12, + 1, + ], + "intensity": 0.17117099463939667, + }, + { + "color": Uint8Array [ + 255, + 255, + 255, + ], + "direction": Float32Array [ + -0.7071067690849304, + -0.0000012868819112554775, + 0.7071067690849304, + ], + "intensity": 0.08408399671316147, + }, + { + "color": Uint8Array [ + 255, + 255, + 255, + ], + "direction": Float32Array [ + -4.371138828673793e-8, + 1, + 0, + ], + "intensity": 0.06606599688529968, + }, + { + "color": Uint8Array [ + 255, + 255, + 255, + ], + "direction": Float32Array [ + 0.7071067690849304, + 0, + -0.7071067690849304, + ], + "intensity": 0.08408399671316147, + }, + { + "color": Uint8Array [ + 255, + 255, + 255, + ], + "direction": Float32Array [ + -4.371138828673793e-8, + -1, + 0, + ], + "intensity": 0.08408399671316147, + }, + ], + "shadowInfluence": -0.2937690019607544, + }, + { + "backlightColor": Uint8Array [ + 0, + 0, + 0, + ], + "backlightIntensity": 0, + "lights": [ + { + "color": Uint8Array [ + 255, + 233, + 192, + ], + "direction": Float32Array [ + 0.7071067690849304, + 0, + 0.7071067690849304, + ], + "intensity": 1.2999999523162842, + }, + { + "color": Uint8Array [ + 124, + 172, + 248, + ], + "direction": Float32Array [ + -0.7071067690849304, + -0.0000012868819112554775, + -0.7071067690849304, + ], + "intensity": 0.30000001192092896, + }, + { + "color": Uint8Array [ + 191, + 221, + 255, + ], + "direction": Float32Array [ + 0.29848748445510864, + 0.9186500906944275, + 0.258819043636322, + ], + "intensity": 0.10000000149011612, + }, + { + "color": Uint8Array [ + 188, + 204, + 253, + ], + "direction": Float32Array [ + -0.7814504504203796, + 0.5677568912506104, + 0.258819043636322, + ], + "intensity": 0.10000000149011612, + }, + { + "color": Uint8Array [ + 199, + 190, + 255, + ], + "direction": Float32Array [ + -0.8824164271354675, + 0.39287903904914856, + 0.25881901383399963, + ], + "intensity": 0.10000000149011612, + }, + { + "color": Uint8Array [ + 189, + 222, + 255, + ], + "direction": Float32Array [ + 0.2984875440597534, + -0.9186500310897827, + 0.258819043636322, + ], + "intensity": 0.10000000149011612, + }, + { + "color": Uint8Array [ + 204, + 237, + 255, + ], + "direction": Float32Array [ + -9.099629210140847e-7, + 1.6560650420438527e-12, + 1, + ], + "intensity": 0.30000001192092896, + }, + { + "color": Uint8Array [ + 168, + 254, + 189, + ], + "direction": Float32Array [ + -9.099629210140847e-7, + 1.6560650420438527e-12, + -1, + ], + "intensity": 0.15000000596046448, + }, + ], + "shadowInfluence": 0, + }, + ], + "lightingCharGroups": [], + "name": "", + "nightMods": Uint8Array [ + 255, + 255, + 255, + 133, + ], + "particleFieldCutouts": [], + "particleFields": [ + { + "altitude": 0, + "angle": Float32Array [ + 0, + 0, + ], + "clusterCount": 0, + "clustering": Float32Array [ + 0, + 0, + ], + "depth": 0, + "deviation": 0, + "deviationSpeed": Float32Array [ + 0, + 0, + ], + "extent": 0, + "fade": 0, + "fieldDirection": Float32Array [ + 0, + 0, + 0, + ], + "flags": 0, + "lifetime": Float32Array [ + 0, + 0, + ], + "name": "", + "opacity": Float32Array [ + 0, + 0, + ], + "particleCount": 0, + "period": Float32Array [ + 0, + 0, + ], + "reserved": 0, + "rotation": Float32Array [ + 0, + 0, + ], + "scaleX": Float32Array [ + 0, + 0, + ], + "scaleY": Float32Array [ + 0, + 0, + ], + "seed": 0, + "speed": Float32Array [ + 0, + 0, + ], + "texColRow": Uint32Array [ + 0, + 0, + ], + "texFPS": 0, + "texPath": 0, + "type": 0, + }, + ], + "shapeArray": [ + { + "center": Float32Array [ + 10406.544921875, + -6891.14794921875, + -7389.9765625, + ], + "fadeHorizInner": 500, + "fadeHorizOuter": 0, + "fadeVertical": 0, + "height": 10616.89453125, + "shapeType": 2, + "vertexArray": [ + Float32Array [ + 9059.146484375, + -3126.18408203125, + ], + Float32Array [ + 10727.041015625, + -2600.1484375, + ], + Float32Array [ + 12980.8486328125, + -4273.9658203125, + ], + Float32Array [ + 14426.4716796875, + -7797.2275390625, + ], + Float32Array [ + 10526.07421875, + -11182.1474609375, + ], + Float32Array [ + 6386.61767578125, + -9124.43359375, + ], + Float32Array [ + 6791.38916015625, + -4287.67333984375, + ], + ], + }, + ], + "sky": { + "dayBrightness": 1, + "dayHazeBottom": 0, + "dayHazeDensity": 0, + "dayHazeFalloff": 16, + "dayLightIntensity": 1, + "dayStarDensity": 0, + "flags": 0, + "nightBrightness": 1.5, + "nightHazeBottom": 0.4207436442375183, + "nightHazeDensity": 1, + "nightHazeFalloff": 0.4129158556461334, + "nightLightIntensity": 0.40577900409698486, + "nightStarDensity": 3, + "verticalOffset": 0, + }, + "skyCards": { + "cards": [], + }, + "spawns": {}, + "type": 5, + "water": [ + { + "animAmplitude": 0, + "animChoppiness": 0, + "animWind": Float32Array [ + -90, + -30, + ], + "bumpAmount": 300, + "bumpAngle0": 0, + "bumpAngle1": 40, + "bumpScale0": 0.10000000149011612, + "bumpScale1": 0.10000000149011612, + "bumpSpeed0": 1, + "bumpSpeed1": 1, + "bumpTile0": 1.7999999523162842, + "bumpTile1": 2.5999999046325684, + "constantTokens": [], + "constantValues": [], + "depthAttenuation": 200, + "distortAmount": 0.15000000596046448, + "foamColor0": Uint8Array [ + 51, + 126, + 174, + 38, + ], + "foamColor1": Uint8Array [ + 255, + 255, + 255, + 191, + ], + "foamDepthAttenuation": 0.8999999761581421, + "foamDissolve": 0.949999988079071, + "foamSpawn": 0.5, + "materialFilename": 0, + "patternAngle": 0, + "patternColor": Uint8Array [ + 255, + 255, + 255, + 0, + ], + "patternEdge": 1, + "patternSpeed": 1, + "patternTile": 1.7999999523162842, + "surfaceDeepColor": Uint8Array [ + 50, + 16, + 9, + 0, + ], + "surfaceFresnel": 2.5, + "surfaceShallowColor": Uint8Array [ + 190, + 168, + 103, + 0, + ], + "textureFilenames": [], + "waterFlags": 1, + }, + { + "animAmplitude": 0, + "animChoppiness": -0.4678260087966919, + "animWind": Float32Array [ + -34.065345764160156, + -27.119556427001953, + ], + "bumpAmount": 72.02046203613281, + "bumpAngle0": 70.15873718261719, + "bumpAngle1": 12.396697998046875, + "bumpScale0": 0.22796399891376495, + "bumpScale1": 0.20668700337409973, + "bumpSpeed0": 0.534434974193573, + "bumpSpeed1": 0.7768599987030029, + "bumpTile0": 2.3801651000976562, + "bumpTile1": 13.35779857635498, + "constantTokens": Uint32Array [ + 809906891, + 911119242, + 910462480, + 808137754, + 814574097, + 807298231, + 813734574, + 3101301168, + 1324870500, + 1472906389, + 2953265279, + 3427729611, + 1355227165, + 2983621944, + ], + "constantValues": [ + Float32Array [ + 0.521569013595581, + 0.521569013595581, + 0.521569013595581, + 255, + ], + Float32Array [ + 0.9372550249099731, + 0.8470590114593506, + 0.5803920030593872, + 1, + ], + Float32Array [ + 34.11420440673828, + 0, + 0, + 0, + ], + Float32Array [ + 0.8916540145874023, + 15, + 3, + 0, + ], + Float32Array [ + 0.7337750196456909, + 0.26622501015663147, + 0.3443709909915924, + 1, + ], + Float32Array [ + 0.23426100611686707, + 35, + 1, + 0, + ], + Float32Array [ + 0.49139100313186646, + 0.27417200803756714, + 0.15231800079345703, + 0.5721849799156189, + ], + Float32Array [ + 0, + 0, + 0, + 0, + ], + Float32Array [ + 0, + 0, + 0, + 0, + ], + Float32Array [ + 0, + 0, + 0, + 0, + ], + Float32Array [ + 0, + 0, + 0, + 0, + ], + Float32Array [ + 0, + 0, + 0, + 0, + ], + Float32Array [ + 0, + 0, + 0, + 0, + ], + Float32Array [ + 0, + 0, + 0, + 0, + ], + ], + "depthAttenuation": 431.1845397949219, + "distortAmount": 0.00009999999747378752, + "foamColor0": Uint8Array [ + 51, + 126, + 174, + 38, + ], + "foamColor1": Uint8Array [ + 255, + 255, + 255, + 191, + ], + "foamDepthAttenuation": 0.8999999761581421, + "foamDissolve": 0.949999988079071, + "foamSpawn": 0.5, + "materialFilename": 187551, + "patternAngle": 9.310355186462402, + "patternColor": Uint8Array [ + 179, + 124, + 125, + 34, + ], + "patternEdge": 0.36927199363708496, + "patternSpeed": 0.30727800726890564, + "patternTile": 14.381322860717773, + "surfaceDeepColor": Uint8Array [ + 58, + 94, + 103, + 0, + ], + "surfaceFresnel": 0.8354790210723877, + "surfaceShallowColor": Uint8Array [ + 116, + 218, + 226, + 0, + ], + "textureFilenames": [ + 0, + 186359, + 187574, + 187574, + 187576, + ], + "waterFlags": 1, + }, + { + "animAmplitude": 0, + "animChoppiness": 0, + "animWind": Float32Array [ + -90, + -30, + ], + "bumpAmount": 300, + "bumpAngle0": 0, + "bumpAngle1": 40, + "bumpScale0": 0.10000000149011612, + "bumpScale1": 0.10000000149011612, + "bumpSpeed0": 1, + "bumpSpeed1": 1, + "bumpTile0": 1.7999999523162842, + "bumpTile1": 2.5999999046325684, + "constantTokens": [], + "constantValues": [], + "depthAttenuation": 200, + "distortAmount": 0.15000000596046448, + "foamColor0": Uint8Array [ + 51, + 126, + 174, + 38, + ], + "foamColor1": Uint8Array [ + 255, + 255, + 255, + 191, + ], + "foamDepthAttenuation": 0.8999999761581421, + "foamDissolve": 0.949999988079071, + "foamSpawn": 0.5, + "materialFilename": 0, + "patternAngle": 0, + "patternColor": Uint8Array [ + 255, + 255, + 255, + 0, + ], + "patternEdge": 1, + "patternSpeed": 1, + "patternTile": 1.7999999523162842, + "surfaceDeepColor": Uint8Array [ + 50, + 16, + 9, + 0, + ], + "surfaceFresnel": 2.5, + "surfaceShallowColor": Uint8Array [ + 190, + 168, + 103, + 0, + ], + "textureFilenames": [], + "waterFlags": 1, + }, + ], + "wind": [ + { + "azimuth": 0, + "elevation": 0, + "gust": 0, + "gustFreq": 0, + "gustSpeed": 0, + "noise": 0, + "speed": 0, + }, + { + "azimuth": 7, + "elevation": 0, + "gust": 6, + "gustFreq": 38, + "gustSpeed": 24, + "noise": 4, + "speed": 10, + }, + { + "azimuth": 0, + "elevation": 0, + "gust": 0, + "gustFreq": 0, + "gustSpeed": 0, + "noise": 0, + "speed": 0, + }, + ], + }, + { + "audio": [], + "bindTarget": 0n, + "clouds": { + "layers": [], + }, + "coloredLightRings": [], + "effect": [ + { + "clutTexturePath": 0, + "ext": {}, + "flags": 0, + "focalDepth": 6000, + "focalRange": 4000, + "glow": Uint8Array [ + 49, + 63, + 65, + 0, + ], + "glowAmplify": 0.25562700629234314, + "glowLevel": Uint8Array [ + 1, + 1, + 1, + 0, + ], + "saturation": 1.399999976158142, + "ssaoAmount": 3, + "ssaoBrighten": 0.20000000298023224, + "ssaoContrast": 1, + "ssaoSunScale": 0.5, + "tintAmount": 0, + "tintColor": Uint8Array [ + 255, + 255, + 255, + 255, + ], + "tintFocus": 0, + "tintTargetColor": Uint8Array [ + 255, + 255, + 255, + 0, + ], + }, + { + "clutTexturePath": 0, + "ext": {}, + "flags": 0, + "focalDepth": 6000, + "focalRange": 4000, + "glow": Uint8Array [ + 49, + 63, + 65, + 0, + ], + "glowAmplify": 0.25562700629234314, + "glowLevel": Uint8Array [ + 1, + 1, + 1, + 0, + ], + "saturation": 1.399999976158142, + "ssaoAmount": 3, + "ssaoBrighten": 0.20000000298023224, + "ssaoContrast": 1, + "ssaoSunScale": 0.5, + "tintAmount": 0, + "tintColor": Uint8Array [ + 255, + 255, + 255, + 255, + ], + "tintFocus": 0, + "tintTargetColor": Uint8Array [ + 255, + 255, + 255, + 0, + ], + }, + { + "clutTexturePath": 0, + "ext": {}, + "flags": 0, + "focalDepth": 6000, + "focalRange": 4000, + "glow": Uint8Array [ + 0, + 0, + 0, + 0, + ], + "glowAmplify": 0, + "glowLevel": Uint8Array [ + 0, + 0, + 0, + 0, + ], + "saturation": 1, + "ssaoAmount": 3, + "ssaoBrighten": 0.20000000298023224, + "ssaoContrast": 1, + "ssaoSunScale": 0.5, + "tintAmount": 0, + "tintColor": Uint8Array [ + 255, + 255, + 255, + 255, + ], + "tintFocus": 0, + "tintTargetColor": Uint8Array [ + 255, + 255, + 255, + 0, + ], + }, + ], + "ext": { + "brightMax": 0.5, + "brightMin": 0.30000001192092896, + "brightScale": 1, + "brightTime": 2.5, + "darkCoeff": 1.2000000476837158, + "darkExp": 0.800000011920929, + "darkMax": 0.30000001192092896, + "darkMin": 0.10000000149011612, + "darkScale": 1, + "dimTime": 5, + "ext2": {}, + "waterReflectionParams": Float32Array [ + 0, + 0, + 0, + 0, + ], + }, + "flags": 0, + "guid": 1876224160059916811n, + "haze": [ + { + "depthCue": 0.0002519999979995191, + "distRange": Float32Array [ + 648.6954345703125, + 2621.468994140625, + ], + "farColor": Uint8Array [ + 23, + 26, + 12, + 255, + ], + "heightColor": Uint8Array [ + 146, + 115, + 136, + 255, + ], + "heightRange": Float32Array [ + -359.7119140625, + 1478.148681640625, + ], + "nearColor": Uint8Array [ + 0, + 0, + 0, + 255, + ], + "sunDirRange": Float32Array [ + -1, + 1, + ], + }, + { + "depthCue": 0.0002519999979995191, + "distRange": Float32Array [ + 648.6954345703125, + 2621.468994140625, + ], + "farColor": Uint8Array [ + 23, + 26, + 12, + 255, + ], + "heightColor": Uint8Array [ + 146, + 115, + 136, + 255, + ], + "heightRange": Float32Array [ + -359.7119140625, + 1478.148681640625, + ], + "nearColor": Uint8Array [ + 0, + 0, + 0, + 255, + ], + "sunDirRange": Float32Array [ + -1, + 1, + ], + }, + { + "depthCue": 0, + "distRange": Float32Array [ + 0, + 0, + ], + "farColor": Uint8Array [ + 0, + 0, + 0, + 255, + ], + "heightColor": Uint8Array [ + 0, + 0, + 0, + 255, + ], + "heightRange": Float32Array [ + 0, + 0, + ], + "nearColor": Uint8Array [ + 0, + 0, + 0, + 255, + ], + "sunDirRange": Float32Array [ + 0, + 0, + ], + }, + ], + "lighting": [ + { + "backlightColor": Uint8Array [ + 255, + 255, + 255, + ], + "backlightIntensity": 0, + "lights": [ + { + "color": Uint8Array [ + 45, + 46, + 37, + ], + "direction": Float32Array [ + 0.7071067690849304, + 0, + 0.7071067690849304, + ], + "intensity": 1.2000000476837158, + }, + { + "color": Uint8Array [ + 31, + 140, + 183, + ], + "direction": Float32Array [ + -0.7071067690849304, + -0.0000012868819112554775, + -0.7071067690849304, + ], + "intensity": 0.10197368264198303, + }, + { + "color": Uint8Array [ + 249, + 98, + 15, + ], + "direction": Float32Array [ + -0.0000010291722674082848, + -1.8730171493647196e-12, + -1, + ], + "intensity": 0.21052631735801697, + }, + { + "color": Uint8Array [ + 161, + 255, + 174, + ], + "direction": Float32Array [ + -0.0000010291722674082848, + -1.8730171493647196e-12, + 1, + ], + "intensity": 0.32236841320991516, + }, + { + "color": Uint8Array [ + 255, + 255, + 255, + ], + "direction": Float32Array [ + -0.7071067690849304, + -0.0000012868819112554775, + 0.7071067690849304, + ], + "intensity": 0.1019740030169487, + }, + { + "color": Uint8Array [ + 255, + 255, + 255, + ], + "direction": Float32Array [ + -4.371138828673793e-8, + 1, + 0, + ], + "intensity": 0, + }, + { + "color": Uint8Array [ + 255, + 255, + 255, + ], + "direction": Float32Array [ + 0.7071067690849304, + 0, + -0.7071067690849304, + ], + "intensity": 0, + }, + { + "color": Uint8Array [ + 255, + 255, + 255, + ], + "direction": Float32Array [ + -4.371138828673793e-8, + -1, + 0, + ], + "intensity": 0, + }, + ], + "shadowInfluence": 0, + }, + { + "backlightColor": Uint8Array [ + 255, + 255, + 255, + ], + "backlightIntensity": 0, + "lights": [ + { + "color": Uint8Array [ + 45, + 46, + 37, + ], + "direction": Float32Array [ + 0.7071067690849304, + 0, + 0.7071067690849304, + ], + "intensity": 1.2000000476837158, + }, + { + "color": Uint8Array [ + 31, + 140, + 183, + ], + "direction": Float32Array [ + -0.7071067690849304, + -0.0000012868819112554775, + -0.7071067690849304, + ], + "intensity": 0.10197368264198303, + }, + { + "color": Uint8Array [ + 249, + 98, + 15, + ], + "direction": Float32Array [ + -0.0000010291722674082848, + -1.8730171493647196e-12, + -1, + ], + "intensity": 0.21052631735801697, + }, + { + "color": Uint8Array [ + 161, + 255, + 174, + ], + "direction": Float32Array [ + -0.0000010291722674082848, + -1.8730171493647196e-12, + 1, + ], + "intensity": 0.32236841320991516, + }, + { + "color": Uint8Array [ + 255, + 255, + 255, + ], + "direction": Float32Array [ + -0.7071067690849304, + -0.0000012868819112554775, + 0.7071067690849304, + ], + "intensity": 0.1019740030169487, + }, + { + "color": Uint8Array [ + 255, + 255, + 255, + ], + "direction": Float32Array [ + -4.371138828673793e-8, + 1, + 0, + ], + "intensity": 0, + }, + { + "color": Uint8Array [ + 255, + 255, + 255, + ], + "direction": Float32Array [ + 0.7071067690849304, + 0, + -0.7071067690849304, + ], + "intensity": 0, + }, + { + "color": Uint8Array [ + 255, + 255, + 255, + ], + "direction": Float32Array [ + -4.371138828673793e-8, + -1, + 0, + ], + "intensity": 0, + }, + ], + "shadowInfluence": 0, + }, + { + "backlightColor": Uint8Array [ + 0, + 0, + 0, + ], + "backlightIntensity": 0, + "lights": [ + { + "color": Uint8Array [ + 255, + 233, + 192, + ], + "direction": Float32Array [ + 0.7071067690849304, + 0, + 0.7071067690849304, + ], + "intensity": 1.2999999523162842, + }, + { + "color": Uint8Array [ + 124, + 172, + 248, + ], + "direction": Float32Array [ + -0.7071067690849304, + -0.0000012868819112554775, + -0.7071067690849304, + ], + "intensity": 0.30000001192092896, + }, + { + "color": Uint8Array [ + 191, + 221, + 255, + ], + "direction": Float32Array [ + 0.29848748445510864, + 0.9186500906944275, + 0.258819043636322, + ], + "intensity": 0.10000000149011612, + }, + { + "color": Uint8Array [ + 188, + 204, + 253, + ], + "direction": Float32Array [ + -0.7814504504203796, + 0.5677568912506104, + 0.258819043636322, + ], + "intensity": 0.10000000149011612, + }, + { + "color": Uint8Array [ + 199, + 190, + 255, + ], + "direction": Float32Array [ + -0.8824164271354675, + 0.39287903904914856, + 0.25881901383399963, + ], + "intensity": 0.10000000149011612, + }, + { + "color": Uint8Array [ + 189, + 222, + 255, + ], + "direction": Float32Array [ + 0.2984875440597534, + -0.9186500310897827, + 0.258819043636322, + ], + "intensity": 0.10000000149011612, + }, + { + "color": Uint8Array [ + 204, + 237, + 255, + ], + "direction": Float32Array [ + -9.099629210140847e-7, + 1.6560650420438527e-12, + 1, + ], + "intensity": 0.30000001192092896, + }, + { + "color": Uint8Array [ + 168, + 254, + 189, + ], + "direction": Float32Array [ + -9.099629210140847e-7, + 1.6560650420438527e-12, + -1, + ], + "intensity": 0.15000000596046448, + }, + ], + "shadowInfluence": 0, + }, + ], + "lightingCharGroups": [], + "name": "", + "nightMods": Uint8Array [ + 255, + 255, + 255, + 133, + ], + "particleFieldCutouts": [], + "particleFields": [ + { + "altitude": 0, + "angle": Float32Array [ + 0, + 0, + ], + "clusterCount": 0, + "clustering": Float32Array [ + 0, + 0, + ], + "depth": 0, + "deviation": 0, + "deviationSpeed": Float32Array [ + 0, + 0, + ], + "extent": 0, + "fade": 0, + "fieldDirection": Float32Array [ + 0, + 0, + 0, + ], + "flags": 0, + "lifetime": Float32Array [ + 0, + 0, + ], + "name": "", + "opacity": Float32Array [ + 0, + 0, + ], + "particleCount": 0, + "period": Float32Array [ + 0, + 0, + ], + "reserved": 0, + "rotation": Float32Array [ + 0, + 0, + ], + "scaleX": Float32Array [ + 0, + 0, + ], + "scaleY": Float32Array [ + 0, + 0, + ], + "seed": 0, + "speed": Float32Array [ + 0, + 0, + ], + "texColRow": Uint32Array [ + 0, + 0, + ], + "texFPS": 0, + "texPath": 0, + "type": 0, + }, + ], + "shapeArray": [ + { + "center": Float32Array [ + 5306.56884765625, + -5475.3173828125, + -16784.224609375, + ], + "fadeHorizInner": 101.35134887695312, + "fadeHorizOuter": 135.1351318359375, + "fadeVertical": 0, + "height": 3727.9375, + "shapeType": 2, + "vertexArray": [ + Float32Array [ + 3572.596923828125, + -6298.462890625, + ], + Float32Array [ + 5225.01220703125, + -3135.522705078125, + ], + Float32Array [ + 6261.85595703125, + -3184.320556640625, + ], + Float32Array [ + 7040.54052734375, + -3974.404296875, + ], + Float32Array [ + 6801.763671875, + -4868.1484375, + ], + Float32Array [ + 6841.5595703125, + -6420.37890625, + ], + Float32Array [ + 5790.755859375, + -7815.1123046875, + ], + Float32Array [ + 4242.29052734375, + -7314.3642578125, + ], + ], + }, + ], + "sky": { + "dayBrightness": 1, + "dayHazeBottom": 0, + "dayHazeDensity": 0, + "dayHazeFalloff": 16, + "dayLightIntensity": 1, + "dayStarDensity": 0, + "flags": 0, + "nightBrightness": 1.5, + "nightHazeBottom": 0.4207436442375183, + "nightHazeDensity": 1, + "nightHazeFalloff": 0.4129158556461334, + "nightLightIntensity": 0.40577900409698486, + "nightStarDensity": 3, + "verticalOffset": 0, + }, + "skyCards": { + "cards": [], + }, + "spawns": {}, + "type": 5, + "water": [ + { + "animAmplitude": 0, + "animChoppiness": 0, + "animWind": Float32Array [ + -90, + -30, + ], + "bumpAmount": 300, + "bumpAngle0": 0, + "bumpAngle1": 40, + "bumpScale0": 0.10000000149011612, + "bumpScale1": 0.10000000149011612, + "bumpSpeed0": 1, + "bumpSpeed1": 1, + "bumpTile0": 1.7999999523162842, + "bumpTile1": 2.5999999046325684, + "constantTokens": [], + "constantValues": [], + "depthAttenuation": 200, + "distortAmount": 0.15000000596046448, + "foamColor0": Uint8Array [ + 51, + 126, + 174, + 38, + ], + "foamColor1": Uint8Array [ + 255, + 255, + 255, + 191, + ], + "foamDepthAttenuation": 0.8999999761581421, + "foamDissolve": 0.949999988079071, + "foamSpawn": 0.5, + "materialFilename": 0, + "patternAngle": 0, + "patternColor": Uint8Array [ + 255, + 255, + 255, + 0, + ], + "patternEdge": 1, + "patternSpeed": 1, + "patternTile": 1.7999999523162842, + "surfaceDeepColor": Uint8Array [ + 50, + 16, + 9, + 0, + ], + "surfaceFresnel": 2.5, + "surfaceShallowColor": Uint8Array [ + 190, + 168, + 103, + 0, + ], + "textureFilenames": [], + "waterFlags": 1, + }, + { + "animAmplitude": 0, + "animChoppiness": -0.4678260087966919, + "animWind": Float32Array [ + -34.065345764160156, + -27.119556427001953, + ], + "bumpAmount": 72.02046203613281, + "bumpAngle0": 70.15873718261719, + "bumpAngle1": 12.396697998046875, + "bumpScale0": 0.22796399891376495, + "bumpScale1": 0.20668700337409973, + "bumpSpeed0": 0.534434974193573, + "bumpSpeed1": 0.7768599987030029, + "bumpTile0": 2.3801651000976562, + "bumpTile1": 13.35779857635498, + "constantTokens": Uint32Array [ + 809906891, + 911119242, + 910462480, + 808137754, + 814574097, + 807298231, + 813734574, + 3101301168, + 1324870500, + 1472906389, + 2953265279, + 3427729611, + 1355227165, + 2983621944, + ], + "constantValues": [ + Float32Array [ + 0.521569013595581, + 0.521569013595581, + 0.521569013595581, + 255, + ], + Float32Array [ + 0.9372550249099731, + 0.8470590114593506, + 0.5803920030593872, + 1, + ], + Float32Array [ + 34.11420440673828, + 0, + 0, + 0, + ], + Float32Array [ + 0.8916540145874023, + 15, + 3, + 0, + ], + Float32Array [ + 0.7337750196456909, + 0.26622501015663147, + 0.3443709909915924, + 1, + ], + Float32Array [ + 0.23426100611686707, + 35, + 1, + 0, + ], + Float32Array [ + 0.49139100313186646, + 0.27417200803756714, + 0.15231800079345703, + 0.5721849799156189, + ], + Float32Array [ + 0, + 0, + 0, + 0, + ], + Float32Array [ + 0, + 0, + 0, + 0, + ], + Float32Array [ + 0, + 0, + 0, + 0, + ], + Float32Array [ + 0, + 0, + 0, + 0, + ], + Float32Array [ + 0, + 0, + 0, + 0, + ], + Float32Array [ + 0, + 0, + 0, + 0, + ], + Float32Array [ + 0, + 0, + 0, + 0, + ], + ], + "depthAttenuation": 431.1845397949219, + "distortAmount": 0.00009999999747378752, + "foamColor0": Uint8Array [ + 51, + 126, + 174, + 38, + ], + "foamColor1": Uint8Array [ + 255, + 255, + 255, + 191, + ], + "foamDepthAttenuation": 0.8999999761581421, + "foamDissolve": 0.949999988079071, + "foamSpawn": 0.5, + "materialFilename": 187551, + "patternAngle": 9.310355186462402, + "patternColor": Uint8Array [ + 179, + 124, + 125, + 34, + ], + "patternEdge": 0.36927199363708496, + "patternSpeed": 0.30727800726890564, + "patternTile": 14.381322860717773, + "surfaceDeepColor": Uint8Array [ + 58, + 94, + 103, + 0, + ], + "surfaceFresnel": 0.8354790210723877, + "surfaceShallowColor": Uint8Array [ + 116, + 218, + 226, + 0, + ], + "textureFilenames": [ + 0, + 186359, + 187574, + 187574, + 187576, + ], + "waterFlags": 1, + }, + { + "animAmplitude": 0, + "animChoppiness": 0, + "animWind": Float32Array [ + -90, + -30, + ], + "bumpAmount": 300, + "bumpAngle0": 0, + "bumpAngle1": 40, + "bumpScale0": 0.10000000149011612, + "bumpScale1": 0.10000000149011612, + "bumpSpeed0": 1, + "bumpSpeed1": 1, + "bumpTile0": 1.7999999523162842, + "bumpTile1": 2.5999999046325684, + "constantTokens": [], + "constantValues": [], + "depthAttenuation": 200, + "distortAmount": 0.15000000596046448, + "foamColor0": Uint8Array [ + 51, + 126, + 174, + 38, + ], + "foamColor1": Uint8Array [ + 255, + 255, + 255, + 191, + ], + "foamDepthAttenuation": 0.8999999761581421, + "foamDissolve": 0.949999988079071, + "foamSpawn": 0.5, + "materialFilename": 0, + "patternAngle": 0, + "patternColor": Uint8Array [ + 255, + 255, + 255, + 0, + ], + "patternEdge": 1, + "patternSpeed": 1, + "patternTile": 1.7999999523162842, + "surfaceDeepColor": Uint8Array [ + 50, + 16, + 9, + 0, + ], + "surfaceFresnel": 2.5, + "surfaceShallowColor": Uint8Array [ + 190, + 168, + 103, + 0, + ], + "textureFilenames": [], + "waterFlags": 1, + }, + ], + "wind": [ + { + "azimuth": 0, + "elevation": 0, + "gust": 0, + "gustFreq": 0, + "gustSpeed": 0, + "noise": 0, + "speed": 0, + }, + { + "azimuth": 7, + "elevation": 0, + "gust": 6, + "gustFreq": 38, + "gustSpeed": 24, + "noise": 4, + "speed": 10, + }, + { + "azimuth": 0, + "elevation": 0, + "gust": 0, + "gustFreq": 0, + "gustSpeed": 0, + "noise": 0, + "speed": 0, + }, + ], + }, + { + "audio": [], + "bindTarget": 0n, + "clouds": { + "layers": [ + { + "altitude": 5895.5986328125, + "attributes": [ + { + "brightness": 1, + "density": 0.572160005569458, + "fadeEnd": 30, + "fadeWidth": 30, + "haze": 0, + "lightIntensity": 1, + "reserved": 0, + "velocity": Float32Array [ + 25.588512420654297, + 50.15349578857422, + ], + }, + { + "brightness": 1, + "density": 0.36540400981903076, + "fadeEnd": 30, + "fadeWidth": 30, + "haze": 0.8178099989891052, + "lightIntensity": 1, + "reserved": 0, + "velocity": Float32Array [ + 0, + 0, + ], + }, + { + "brightness": 1, + "density": 0, + "fadeEnd": 30, + "fadeWidth": 30, + "haze": 1, + "lightIntensity": 1, + "reserved": 0, + "velocity": Float32Array [ + 0, + 0, + ], + }, + ], + "cutOut": 1000, + "depth": 0.011873000301420689, + "extent": 1, + "name": "", + "reserved": 0, + "scale": 4.677585124969482, + "texture": 188574, + }, + { + "altitude": 462.0123291015625, + "attributes": [ + { + "brightness": 1, + "density": 0, + "fadeEnd": 225, + "fadeWidth": 100, + "haze": 1, + "lightIntensity": 1, + "reserved": 0, + "velocity": Float32Array [ + 0, + 0, + ], + }, + { + "brightness": 1, + "density": 0.8439429998397827, + "fadeEnd": 225, + "fadeWidth": 100, + "haze": 0.8473520278930664, + "lightIntensity": 0.32751500606536865, + "reserved": 0, + "velocity": Float32Array [ + 94.49636840820312, + 34.26790237426758, + ], + }, + { + "brightness": 1, + "density": 0, + "fadeEnd": 225, + "fadeWidth": 100, + "haze": 1, + "lightIntensity": 1, + "reserved": 0, + "velocity": Float32Array [ + 0, + 0, + ], + }, + ], + "cutOut": 2000, + "depth": 0.004569000098854303, + "extent": 1, + "name": "", + "reserved": 0, + "scale": 1.630321979522705, + "texture": 188576, + }, + { + "altitude": 30000, + "attributes": [ + { + "brightness": 1, + "density": 0.43103399872779846, + "fadeEnd": 16, + "fadeWidth": 16, + "haze": 1, + "lightIntensity": 0.369253009557724, + "reserved": 0, + "velocity": Float32Array [ + -290.2298583984375, + -149.42529296875, + ], + }, + { + "brightness": 1, + "density": 1, + "fadeEnd": 16, + "fadeWidth": 16, + "haze": 1, + "lightIntensity": 1, + "reserved": 0, + "velocity": Float32Array [ + 0, + 0, + ], + }, + { + "brightness": 1, + "density": 1, + "fadeEnd": 16, + "fadeWidth": 16, + "haze": 1, + "lightIntensity": 1, + "reserved": 0, + "velocity": Float32Array [ + 0, + 0, + ], + }, + ], + "cutOut": 100, + "depth": 0, + "extent": 1, + "name": "", + "reserved": 0, + "scale": 1.3074710369110107, + "texture": 195082, + }, + { + "altitude": 30000, + "attributes": [ + { + "brightness": 1, + "density": 1, + "fadeEnd": 16, + "fadeWidth": 16, + "haze": 1, + "lightIntensity": 1, + "reserved": 0, + "velocity": Float32Array [ + -178.160888671875, + 0, + ], + }, + { + "brightness": 1, + "density": 1, + "fadeEnd": 16, + "fadeWidth": 16, + "haze": 1, + "lightIntensity": 1, + "reserved": 0, + "velocity": Float32Array [ + 0, + 0, + ], + }, + { + "brightness": 1, + "density": 1, + "fadeEnd": 16, + "fadeWidth": 16, + "haze": 1, + "lightIntensity": 1, + "reserved": 0, + "velocity": Float32Array [ + 0, + 0, + ], + }, + ], + "cutOut": 100, + "depth": 0, + "extent": 1, + "name": "", + "reserved": 0, + "scale": 0.7471259832382202, + "texture": 195082, + }, + { + "altitude": 22801.72265625, + "attributes": [ + { + "brightness": 1, + "density": 1, + "fadeEnd": 16, + "fadeWidth": 16, + "haze": 1, + "lightIntensity": 1, + "reserved": 0, + "velocity": Float32Array [ + -267.2413330078125, + 83.3333740234375, + ], + }, + { + "brightness": 1, + "density": 1, + "fadeEnd": 16, + "fadeWidth": 16, + "haze": 1, + "lightIntensity": 1, + "reserved": 0, + "velocity": Float32Array [ + 0, + 0, + ], + }, + { + "brightness": 1, + "density": 1, + "fadeEnd": 16, + "fadeWidth": 16, + "haze": 1, + "lightIntensity": 1, + "reserved": 0, + "velocity": Float32Array [ + 0, + 0, + ], + }, + ], + "cutOut": 3000, + "depth": 0, + "extent": 1, + "name": "", + "reserved": 0, + "scale": 0.5172410011291504, + "texture": 195082, + }, + { + "altitude": 20689.65625, + "attributes": [ + { + "brightness": 1, + "density": 1, + "fadeEnd": 16, + "fadeWidth": 16, + "haze": 1, + "lightIntensity": 1, + "reserved": 0, + "velocity": Float32Array [ + -163.7930908203125, + 89.0804443359375, + ], + }, + { + "brightness": 1, + "density": 1, + "fadeEnd": 16, + "fadeWidth": 16, + "haze": 1, + "lightIntensity": 1, + "reserved": 0, + "velocity": Float32Array [ + 0, + 0, + ], + }, + { + "brightness": 1, + "density": 1, + "fadeEnd": 16, + "fadeWidth": 16, + "haze": 1, + "lightIntensity": 1, + "reserved": 0, + "velocity": Float32Array [ + 0, + 0, + ], + }, + ], + "cutOut": 3000, + "depth": 0, + "extent": 1, + "name": "", + "reserved": 0, + "scale": 0.8908050060272217, + "texture": 195082, + }, + { + "altitude": 15608.8564453125, + "attributes": [ + { + "brightness": 3, + "density": 0.26011601090431213, + "fadeEnd": 16, + "fadeWidth": 16, + "haze": 0.12546099722385406, + "lightIntensity": 1.5, + "reserved": 0, + "velocity": Float32Array [ + 77.4908447265625, + -33.2103271484375, + ], + }, + { + "brightness": 1, + "density": 1, + "fadeEnd": 16, + "fadeWidth": 16, + "haze": 1, + "lightIntensity": 1, + "reserved": 0, + "velocity": Float32Array [ + 0, + 0, + ], + }, + { + "brightness": 1, + "density": 1, + "fadeEnd": 16, + "fadeWidth": 16, + "haze": 1, + "lightIntensity": 1, + "reserved": 0, + "velocity": Float32Array [ + 0, + 0, + ], + }, + ], + "cutOut": 1000, + "depth": 0, + "extent": -1, + "name": "", + "reserved": 0, + "scale": 9.003689765930176, + "texture": 187566, + }, + ], + }, + "coloredLightRings": [], + "effect": [ + { + "clutTexturePath": 0, + "ext": {}, + "flags": 0, + "focalDepth": 6000, + "focalRange": 4000, + "glow": Uint8Array [ + 49, + 63, + 65, + 0, + ], + "glowAmplify": 0.25562700629234314, + "glowLevel": Uint8Array [ + 1, + 1, + 1, + 0, + ], + "saturation": 1.399999976158142, + "ssaoAmount": 3, + "ssaoBrighten": 0.20000000298023224, + "ssaoContrast": 1, + "ssaoSunScale": 0.5, + "tintAmount": 0, + "tintColor": Uint8Array [ + 255, + 255, + 255, + 255, + ], + "tintFocus": 0, + "tintTargetColor": Uint8Array [ + 255, + 255, + 255, + 0, + ], + }, + { + "clutTexturePath": 0, + "ext": {}, + "flags": 0, + "focalDepth": 6000, + "focalRange": 4000, + "glow": Uint8Array [ + 49, + 63, + 65, + 0, + ], + "glowAmplify": 0.25562700629234314, + "glowLevel": Uint8Array [ + 1, + 1, + 1, + 0, + ], + "saturation": 1.399999976158142, + "ssaoAmount": 3, + "ssaoBrighten": 0.20000000298023224, + "ssaoContrast": 1, + "ssaoSunScale": 0.5, + "tintAmount": 0, + "tintColor": Uint8Array [ + 255, + 255, + 255, + 255, + ], + "tintFocus": 0, + "tintTargetColor": Uint8Array [ + 255, + 255, + 255, + 0, + ], + }, + { + "clutTexturePath": 0, + "ext": {}, + "flags": 0, + "focalDepth": 6000, + "focalRange": 4000, + "glow": Uint8Array [ + 0, + 0, + 0, + 0, + ], + "glowAmplify": 0, + "glowLevel": Uint8Array [ + 0, + 0, + 0, + 0, + ], + "saturation": 1, + "ssaoAmount": 3, + "ssaoBrighten": 0.20000000298023224, + "ssaoContrast": 1, + "ssaoSunScale": 0.5, + "tintAmount": 0, + "tintColor": Uint8Array [ + 255, + 255, + 255, + 255, + ], + "tintFocus": 0, + "tintTargetColor": Uint8Array [ + 255, + 255, + 255, + 0, + ], + }, + ], + "ext": { + "brightMax": 0.5, + "brightMin": 0.30000001192092896, + "brightScale": 1, + "brightTime": 2.5, + "darkCoeff": 1.2000000476837158, + "darkExp": 0.800000011920929, + "darkMax": 0.30000001192092896, + "darkMin": 0.10000000149011612, + "darkScale": 1, + "dimTime": 5, + "ext2": {}, + "waterReflectionParams": Float32Array [ + 0, + 0, + 0, + 0, + ], + }, + "flags": 0, + "guid": 1876224430642856457n, + "haze": [ + { + "depthCue": 0.0002519999979995191, + "distRange": Float32Array [ + 648.6954345703125, + 2621.468994140625, + ], + "farColor": Uint8Array [ + 23, + 26, + 12, + 255, + ], + "heightColor": Uint8Array [ + 146, + 115, + 136, + 255, + ], + "heightRange": Float32Array [ + -359.7119140625, + 1478.148681640625, + ], + "nearColor": Uint8Array [ + 0, + 0, + 0, + 255, + ], + "sunDirRange": Float32Array [ + -1, + 1, + ], + }, + { + "depthCue": 0.0002519999979995191, + "distRange": Float32Array [ + 648.6954345703125, + 2621.468994140625, + ], + "farColor": Uint8Array [ + 23, + 26, + 12, + 255, + ], + "heightColor": Uint8Array [ + 146, + 115, + 136, + 255, + ], + "heightRange": Float32Array [ + -359.7119140625, + 1478.148681640625, + ], + "nearColor": Uint8Array [ + 0, + 0, + 0, + 255, + ], + "sunDirRange": Float32Array [ + -1, + 1, + ], + }, + { + "depthCue": 0, + "distRange": Float32Array [ + 0, + 0, + ], + "farColor": Uint8Array [ + 0, + 0, + 0, + 255, + ], + "heightColor": Uint8Array [ + 0, + 0, + 0, + 255, + ], + "heightRange": Float32Array [ + 0, + 0, + ], + "nearColor": Uint8Array [ + 0, + 0, + 0, + 255, + ], + "sunDirRange": Float32Array [ + 0, + 0, + ], + }, + ], + "lighting": [ + { + "backlightColor": Uint8Array [ + 255, + 255, + 255, + ], + "backlightIntensity": 0, + "lights": [ + { + "color": Uint8Array [ + 45, + 46, + 37, + ], + "direction": Float32Array [ + 0.7071067690849304, + 0, + 0.7071067690849304, + ], + "intensity": 1.2000000476837158, + }, + { + "color": Uint8Array [ + 31, + 140, + 183, + ], + "direction": Float32Array [ + -0.7071067690849304, + -0.0000012868819112554775, + -0.7071067690849304, + ], + "intensity": 0.12828947603702545, + }, + { + "color": Uint8Array [ + 249, + 98, + 15, + ], + "direction": Float32Array [ + -0.0000010291722674082848, + -1.8730171493647196e-12, + -1, + ], + "intensity": 0.25, + }, + { + "color": Uint8Array [ + 161, + 255, + 174, + ], + "direction": Float32Array [ + -0.0000010291722674082848, + -1.8730171493647196e-12, + 1, + ], + "intensity": 0.23355263471603394, + }, + { + "color": Uint8Array [ + 255, + 255, + 255, + ], + "direction": Float32Array [ + -0.7071067690849304, + -0.0000012868819112554775, + 0.7071067690849304, + ], + "intensity": 0.21052631735801697, + }, + { + "color": Uint8Array [ + 255, + 255, + 255, + ], + "direction": Float32Array [ + -4.371138828673793e-8, + 1, + 0, + ], + "intensity": 0, + }, + { + "color": Uint8Array [ + 255, + 255, + 255, + ], + "direction": Float32Array [ + 0.7071067690849304, + 0, + -0.7071067690849304, + ], + "intensity": 0, + }, + { + "color": Uint8Array [ + 255, + 255, + 255, + ], + "direction": Float32Array [ + -4.371138828673793e-8, + -1, + 0, + ], + "intensity": 0, + }, + ], + "shadowInfluence": 0, + }, + { + "backlightColor": Uint8Array [ + 255, + 255, + 255, + ], + "backlightIntensity": 0, + "lights": [ + { + "color": Uint8Array [ + 45, + 46, + 37, + ], + "direction": Float32Array [ + 0.7071067690849304, + 0, + 0.7071067690849304, + ], + "intensity": 1.2000000476837158, + }, + { + "color": Uint8Array [ + 31, + 140, + 183, + ], + "direction": Float32Array [ + -0.7071067690849304, + -0.0000012868819112554775, + -0.7071067690849304, + ], + "intensity": 0.12828947603702545, + }, + { + "color": Uint8Array [ + 249, + 98, + 15, + ], + "direction": Float32Array [ + -0.0000010291722674082848, + -1.8730171493647196e-12, + -1, + ], + "intensity": 0.25, + }, + { + "color": Uint8Array [ + 161, + 255, + 174, + ], + "direction": Float32Array [ + -0.0000010291722674082848, + -1.8730171493647196e-12, + 1, + ], + "intensity": 0.23355263471603394, + }, + { + "color": Uint8Array [ + 255, + 255, + 255, + ], + "direction": Float32Array [ + -0.7071067690849304, + -0.0000012868819112554775, + 0.7071067690849304, + ], + "intensity": 0.21052631735801697, + }, + { + "color": Uint8Array [ + 255, + 255, + 255, + ], + "direction": Float32Array [ + -4.371138828673793e-8, + 1, + 0, + ], + "intensity": 0, + }, + { + "color": Uint8Array [ + 255, + 255, + 255, + ], + "direction": Float32Array [ + 0.7071067690849304, + 0, + -0.7071067690849304, + ], + "intensity": 0, + }, + { + "color": Uint8Array [ + 255, + 255, + 255, + ], + "direction": Float32Array [ + -4.371138828673793e-8, + -1, + 0, + ], + "intensity": 0, + }, + ], + "shadowInfluence": 0, + }, + { + "backlightColor": Uint8Array [ + 0, + 0, + 0, + ], + "backlightIntensity": 0, + "lights": [ + { + "color": Uint8Array [ + 255, + 233, + 192, + ], + "direction": Float32Array [ + 0.7071067690849304, + 0, + 0.7071067690849304, + ], + "intensity": 1.2999999523162842, + }, + { + "color": Uint8Array [ + 124, + 172, + 248, + ], + "direction": Float32Array [ + -0.7071067690849304, + -0.0000012868819112554775, + -0.7071067690849304, + ], + "intensity": 0.30000001192092896, + }, + { + "color": Uint8Array [ + 191, + 221, + 255, + ], + "direction": Float32Array [ + 0.29848748445510864, + 0.9186500906944275, + 0.258819043636322, + ], + "intensity": 0.10000000149011612, + }, + { + "color": Uint8Array [ + 188, + 204, + 253, + ], + "direction": Float32Array [ + -0.7814504504203796, + 0.5677568912506104, + 0.258819043636322, + ], + "intensity": 0.10000000149011612, + }, + { + "color": Uint8Array [ + 199, + 190, + 255, + ], + "direction": Float32Array [ + -0.8824164271354675, + 0.39287903904914856, + 0.25881901383399963, + ], + "intensity": 0.10000000149011612, + }, + { + "color": Uint8Array [ + 189, + 222, + 255, + ], + "direction": Float32Array [ + 0.2984875440597534, + -0.9186500310897827, + 0.258819043636322, + ], + "intensity": 0.10000000149011612, + }, + { + "color": Uint8Array [ + 204, + 237, + 255, + ], + "direction": Float32Array [ + -9.099629210140847e-7, + 1.6560650420438527e-12, + 1, + ], + "intensity": 0.30000001192092896, + }, + { + "color": Uint8Array [ + 168, + 254, + 189, + ], + "direction": Float32Array [ + -9.099629210140847e-7, + 1.6560650420438527e-12, + -1, + ], + "intensity": 0.15000000596046448, + }, + ], + "shadowInfluence": 0, + }, + ], + "lightingCharGroups": [], + "name": "", + "nightMods": Uint8Array [ + 255, + 255, + 255, + 133, + ], + "particleFieldCutouts": [], + "particleFields": [ + { + "altitude": 0, + "angle": Float32Array [ + 0, + 0, + ], + "clusterCount": 0, + "clustering": Float32Array [ + 0, + 0, + ], + "depth": 0, + "deviation": 0, + "deviationSpeed": Float32Array [ + 0, + 0, + ], + "extent": 0, + "fade": 0, + "fieldDirection": Float32Array [ + 0, + 0, + 0, + ], + "flags": 0, + "lifetime": Float32Array [ + 0, + 0, + ], + "name": "", + "opacity": Float32Array [ + 0, + 0, + ], + "particleCount": 0, + "period": Float32Array [ + 0, + 0, + ], + "reserved": 0, + "rotation": Float32Array [ + 0, + 0, + ], + "scaleX": Float32Array [ + 0, + 0, + ], + "scaleY": Float32Array [ + 0, + 0, + ], + "seed": 0, + "speed": Float32Array [ + 0, + 0, + ], + "texColRow": Uint32Array [ + 0, + 0, + ], + "texFPS": 0, + "texPath": 0, + "type": 0, + }, + ], + "shapeArray": [ + { + "center": Float32Array [ + -2615.225341796875, + -2544.038330078125, + -15552.662109375, + ], + "fadeHorizInner": 135.1351318359375, + "fadeHorizOuter": 168.91891479492188, + "fadeVertical": 0, + "height": 3951.875, + "shapeType": 2, + "vertexArray": [ + Float32Array [ + -5818.7412109375, + -3732.5361328125, + ], + Float32Array [ + -6256.1357421875, + -1727.62060546875, + ], + Float32Array [ + -5617.3349609375, + -645.616943359375, + ], + Float32Array [ + -2946.139892578125, + 160.1561279296875, + ], + Float32Array [ + -1668.0675048828125, + 1133.7579345703125, + ], + Float32Array [ + 757.3450317382812, + 1139.85595703125, + ], + Float32Array [ + 1025.6849365234375, + -1410.267578125, + ], + Float32Array [ + 178.538330078125, + -1945.716552734375, + ], + Float32Array [ + 413.380615234375, + -3520.421875, + ], + Float32Array [ + -629.6490478515625, + -6227.9326171875, + ], + Float32Array [ + -3413.58447265625, + -5477.1689453125, + ], + ], + }, + ], + "sky": { + "dayBrightness": 1, + "dayHazeBottom": 0, + "dayHazeDensity": 0, + "dayHazeFalloff": 16, + "dayLightIntensity": 1, + "dayStarDensity": 0, + "flags": 0, + "nightBrightness": 1.5, + "nightHazeBottom": 0.4207436442375183, + "nightHazeDensity": 1, + "nightHazeFalloff": 0.4129158556461334, + "nightLightIntensity": 0.40577900409698486, + "nightStarDensity": 3, + "verticalOffset": 0, + }, + "skyCards": { + "cards": [], + }, + "spawns": {}, + "type": 5, + "water": [ + { + "animAmplitude": 0, + "animChoppiness": 0, + "animWind": Float32Array [ + -90, + -30, + ], + "bumpAmount": 300, + "bumpAngle0": 0, + "bumpAngle1": 40, + "bumpScale0": 0.10000000149011612, + "bumpScale1": 0.10000000149011612, + "bumpSpeed0": 1, + "bumpSpeed1": 1, + "bumpTile0": 1.7999999523162842, + "bumpTile1": 2.5999999046325684, + "constantTokens": [], + "constantValues": [], + "depthAttenuation": 200, + "distortAmount": 0.15000000596046448, + "foamColor0": Uint8Array [ + 51, + 126, + 174, + 38, + ], + "foamColor1": Uint8Array [ + 255, + 255, + 255, + 191, + ], + "foamDepthAttenuation": 0.8999999761581421, + "foamDissolve": 0.949999988079071, + "foamSpawn": 0.5, + "materialFilename": 0, + "patternAngle": 0, + "patternColor": Uint8Array [ + 255, + 255, + 255, + 0, + ], + "patternEdge": 1, + "patternSpeed": 1, + "patternTile": 1.7999999523162842, + "surfaceDeepColor": Uint8Array [ + 50, + 16, + 9, + 0, + ], + "surfaceFresnel": 2.5, + "surfaceShallowColor": Uint8Array [ + 190, + 168, + 103, + 0, + ], + "textureFilenames": [], + "waterFlags": 1, + }, + { + "animAmplitude": 0, + "animChoppiness": -0.4678260087966919, + "animWind": Float32Array [ + -34.065345764160156, + -27.119556427001953, + ], + "bumpAmount": 72.02046203613281, + "bumpAngle0": 70.15873718261719, + "bumpAngle1": 12.396697998046875, + "bumpScale0": 0.22796399891376495, + "bumpScale1": 0.20668700337409973, + "bumpSpeed0": 0.534434974193573, + "bumpSpeed1": 0.7768599987030029, + "bumpTile0": 2.3801651000976562, + "bumpTile1": 13.35779857635498, + "constantTokens": Uint32Array [ + 809906891, + 911119242, + 910462480, + 808137754, + 814574097, + 807298231, + 813734574, + 3101301168, + 1324870500, + 1472906389, + 2953265279, + 3427729611, + 1355227165, + 2983621944, + ], + "constantValues": [ + Float32Array [ + 0.521569013595581, + 0.521569013595581, + 0.521569013595581, + 255, + ], + Float32Array [ + 0.9372550249099731, + 0.8470590114593506, + 0.5803920030593872, + 1, + ], + Float32Array [ + 34.11420440673828, + 0, + 0, + 0, + ], + Float32Array [ + 0.8916540145874023, + 15, + 3, + 0, + ], + Float32Array [ + 0.7337750196456909, + 0.26622501015663147, + 0.3443709909915924, + 1, + ], + Float32Array [ + 0.23426100611686707, + 35, + 1, + 0, + ], + Float32Array [ + 0.49139100313186646, + 0.27417200803756714, + 0.15231800079345703, + 0.5721849799156189, + ], + Float32Array [ + 0, + 0, + 0, + 0, + ], + Float32Array [ + 0, + 0, + 0, + 0, + ], + Float32Array [ + 0, + 0, + 0, + 0, + ], + Float32Array [ + 0, + 0, + 0, + 0, + ], + Float32Array [ + 0, + 0, + 0, + 0, + ], + Float32Array [ + 0, + 0, + 0, + 0, + ], + Float32Array [ + 0, + 0, + 0, + 0, + ], + ], + "depthAttenuation": 431.1845397949219, + "distortAmount": 0.00009999999747378752, + "foamColor0": Uint8Array [ + 51, + 126, + 174, + 38, + ], + "foamColor1": Uint8Array [ + 255, + 255, + 255, + 191, + ], + "foamDepthAttenuation": 0.8999999761581421, + "foamDissolve": 0.949999988079071, + "foamSpawn": 0.5, + "materialFilename": 187551, + "patternAngle": 9.310355186462402, + "patternColor": Uint8Array [ + 179, + 124, + 125, + 34, + ], + "patternEdge": 0.36927199363708496, + "patternSpeed": 0.30727800726890564, + "patternTile": 14.381322860717773, + "surfaceDeepColor": Uint8Array [ + 58, + 94, + 103, + 0, + ], + "surfaceFresnel": 0.8354790210723877, + "surfaceShallowColor": Uint8Array [ + 116, + 218, + 226, + 0, + ], + "textureFilenames": [ + 0, + 186359, + 187574, + 187574, + 187576, + ], + "waterFlags": 1, + }, + { + "animAmplitude": 0, + "animChoppiness": 0, + "animWind": Float32Array [ + -90, + -30, + ], + "bumpAmount": 300, + "bumpAngle0": 0, + "bumpAngle1": 40, + "bumpScale0": 0.10000000149011612, + "bumpScale1": 0.10000000149011612, + "bumpSpeed0": 1, + "bumpSpeed1": 1, + "bumpTile0": 1.7999999523162842, + "bumpTile1": 2.5999999046325684, + "constantTokens": [], + "constantValues": [], + "depthAttenuation": 200, + "distortAmount": 0.15000000596046448, + "foamColor0": Uint8Array [ + 51, + 126, + 174, + 38, + ], + "foamColor1": Uint8Array [ + 255, + 255, + 255, + 191, + ], + "foamDepthAttenuation": 0.8999999761581421, + "foamDissolve": 0.949999988079071, + "foamSpawn": 0.5, + "materialFilename": 0, + "patternAngle": 0, + "patternColor": Uint8Array [ + 255, + 255, + 255, + 0, + ], + "patternEdge": 1, + "patternSpeed": 1, + "patternTile": 1.7999999523162842, + "surfaceDeepColor": Uint8Array [ + 50, + 16, + 9, + 0, + ], + "surfaceFresnel": 2.5, + "surfaceShallowColor": Uint8Array [ + 190, + 168, + 103, + 0, + ], + "textureFilenames": [], + "waterFlags": 1, + }, + ], + "wind": [ + { + "azimuth": 0, + "elevation": 0, + "gust": 0, + "gustFreq": 0, + "gustSpeed": 0, + "noise": 0, + "speed": 0, + }, + { + "azimuth": 7, + "elevation": 0, + "gust": 6, + "gustFreq": 38, + "gustSpeed": 24, + "noise": 4, + "speed": 10, + }, + { + "azimuth": 0, + "elevation": 0, + "gust": 0, + "gustFreq": 0, + "gustSpeed": 0, + "noise": 0, + "speed": 0, + }, + ], + }, + { + "audio": [], + "bindTarget": 1877344227401171457n, + "clouds": {}, + "coloredLightRings": [], + "effect": [], + "ext": { + "brightMax": 0.5, + "brightMin": 0.30000001192092896, + "brightScale": 1, + "brightTime": 2.5, + "darkCoeff": 1.2000000476837158, + "darkExp": 0.800000011920929, + "darkMax": 0.30000001192092896, + "darkMin": 0.10000000149011612, + "darkScale": 1, + "dimTime": 5, + "ext2": {}, + "waterReflectionParams": Float32Array [ + 0, + 0, + 0, + 0, + ], + }, + "flags": 0, + "guid": 1877343475781894656n, + "haze": [], + "lighting": [], + "lightingCharGroups": [], + "name": "", + "nightMods": Uint8Array [ + 255, + 255, + 255, + 133, + ], + "particleFieldCutouts": [], + "particleFields": [], + "shapeArray": [ + { + "center": Float32Array [ + 19825.69921875, + -10483.2734375, + -16030.5859375, + ], + "fadeHorizInner": 641.8919067382812, + "fadeHorizOuter": 0, + "fadeVertical": 0, + "height": 4391.90625, + "shapeType": 2, + "vertexArray": [ + Float32Array [ + 24681.8984375, + -16693.396484375, + ], + Float32Array [ + 19388.72265625, + -18463.95703125, + ], + Float32Array [ + 15921.7041015625, + -13600.837890625, + ], + Float32Array [ + 14647.1513671875, + -6005.93359375, + ], + Float32Array [ + 16396.759765625, + -2502.58935546875, + ], + Float32Array [ + 21514.01953125, + -2599.35205078125, + ], + Float32Array [ + 25004.24609375, + -4017.3671875, + ], + ], + }, + ], + "sky": {}, + "skyCards": {}, + "spawns": {}, + "type": 5, + "water": [], + "wind": [], + }, + { + "audio": [], + "bindTarget": 0n, + "clouds": { + "layers": [ + { + "altitude": 20712.07421875, + "attributes": [ + { + "brightness": 0.9731540083885193, + "density": 1, + "fadeEnd": 16, + "fadeWidth": 16, + "haze": 0.7446150183677673, + "lightIntensity": 0.5246149897575378, + "reserved": 0, + "velocity": Float32Array [ + 197.3154296875, + 162.4161376953125, + ], + }, + { + "brightness": 0.9731540083885193, + "density": 1, + "fadeEnd": 16, + "fadeWidth": 16, + "haze": 0.7446150183677673, + "lightIntensity": 0.5246149897575378, + "reserved": 0, + "velocity": Float32Array [ + 648.3221435546875, + 20.13421630859375, + ], + }, + { + "brightness": 1, + "density": 1, + "fadeEnd": 16, + "fadeWidth": 16, + "haze": 1, + "lightIntensity": 1, + "reserved": 0, + "velocity": Float32Array [ + 0, + 0, + ], + }, + ], + "cutOut": 2000, + "depth": 0.06362400203943253, + "extent": 1, + "name": "", + "reserved": 0, + "scale": 1.2948520183563232, + "texture": 198039, + }, + { + "altitude": 19736.841796875, + "attributes": [ + { + "brightness": 1, + "density": 0.5046979784965515, + "fadeEnd": 16, + "fadeWidth": 16, + "haze": 1, + "lightIntensity": 1, + "reserved": 0, + "velocity": Float32Array [ + -127.51678466796875, + -3.096008062362671, + ], + }, + { + "brightness": 0.26845601201057434, + "density": 0.7046980261802673, + "fadeEnd": 16, + "fadeWidth": 16, + "haze": 1, + "lightIntensity": 1, + "reserved": 0, + "velocity": Float32Array [ + 44.2952880859375, + -3.096008062362671, + ], + }, + { + "brightness": 1, + "density": 1, + "fadeEnd": 16, + "fadeWidth": 16, + "haze": 1, + "lightIntensity": 1, + "reserved": 0, + "velocity": Float32Array [ + 0, + 0, + ], + }, + ], + "cutOut": 1000, + "depth": 0.0037579999770969152, + "extent": 1, + "name": "", + "reserved": 0, + "scale": 3.744966983795166, + "texture": 275427, + }, + ], + }, + "coloredLightRings": [], + "effect": [ + { + "clutTexturePath": 936032, + "ext": {}, + "flags": 0, + "focalDepth": 6000, + "focalRange": 4000, + "glow": Uint8Array [ + 61, + 108, + 153, + 0, + ], + "glowAmplify": 0.4000000059604645, + "glowLevel": Uint8Array [ + 32, + 32, + 32, + 0, + ], + "saturation": 1, + "ssaoAmount": 3, + "ssaoBrighten": 0.20000000298023224, + "ssaoContrast": 1, + "ssaoSunScale": 0.5, + "tintAmount": 0, + "tintColor": Uint8Array [ + 0, + 0, + 0, + 0, + ], + "tintFocus": 0, + "tintTargetColor": Uint8Array [ + 0, + 0, + 0, + 0, + ], + }, + { + "clutTexturePath": 936032, + "ext": {}, + "flags": 0, + "focalDepth": 6000, + "focalRange": 4000, + "glow": Uint8Array [ + 61, + 108, + 153, + 0, + ], + "glowAmplify": 0.4000000059604645, + "glowLevel": Uint8Array [ + 32, + 32, + 32, + 0, + ], + "saturation": 1, + "ssaoAmount": 3, + "ssaoBrighten": 0.20000000298023224, + "ssaoContrast": 1, + "ssaoSunScale": 0.5, + "tintAmount": 0, + "tintColor": Uint8Array [ + 0, + 0, + 0, + 0, + ], + "tintFocus": 0, + "tintTargetColor": Uint8Array [ + 0, + 0, + 0, + 0, + ], + }, + { + "clutTexturePath": 0, + "ext": {}, + "flags": 0, + "focalDepth": 6000, + "focalRange": 4000, + "glow": Uint8Array [ + 0, + 0, + 0, + 0, + ], + "glowAmplify": 0, + "glowLevel": Uint8Array [ + 0, + 0, + 0, + 0, + ], + "saturation": 1, + "ssaoAmount": 3, + "ssaoBrighten": 0.20000000298023224, + "ssaoContrast": 1, + "ssaoSunScale": 0.5, + "tintAmount": 0, + "tintColor": Uint8Array [ + 255, + 255, + 255, + 255, + ], + "tintFocus": 0, + "tintTargetColor": Uint8Array [ + 255, + 255, + 255, + 0, + ], + }, + ], + "ext": { + "brightMax": 0.5, + "brightMin": 0.30000001192092896, + "brightScale": 1, + "brightTime": 2.5, + "darkCoeff": 1.2000000476837158, + "darkExp": 0.800000011920929, + "darkMax": 0.30000001192092896, + "darkMin": 0.10000000149011612, + "darkScale": 1, + "dimTime": 5, + "ext2": {}, + "waterReflectionParams": Float32Array [ + 0, + 0, + 0, + 0, + ], + }, + "flags": 0, + "guid": 1877344227401171457n, + "haze": [ + { + "depthCue": 0.00041099998634308577, + "distRange": Float32Array [ + 1985.322021484375, + 3932.41162109375, + ], + "farColor": Uint8Array [ + 11, + 12, + 16, + 255, + ], + "heightColor": Uint8Array [ + 38, + 74, + 115, + 255, + ], + "heightRange": Float32Array [ + -578.2079467773438, + -403.07635498046875, + ], + "nearColor": Uint8Array [ + 25, + 33, + 41, + 255, + ], + "sunDirRange": Float32Array [ + 0, + 0, + ], + }, + { + "depthCue": 0.00041099998634308577, + "distRange": Float32Array [ + 1985.322021484375, + 3932.41162109375, + ], + "farColor": Uint8Array [ + 11, + 12, + 16, + 255, + ], + "heightColor": Uint8Array [ + 38, + 74, + 115, + 255, + ], + "heightRange": Float32Array [ + -578.2079467773438, + -403.07635498046875, + ], + "nearColor": Uint8Array [ + 25, + 33, + 41, + 255, + ], + "sunDirRange": Float32Array [ + 0, + 0, + ], + }, + { + "depthCue": 0, + "distRange": Float32Array [ + 0, + 0, + ], + "farColor": Uint8Array [ + 0, + 0, + 0, + 255, + ], + "heightColor": Uint8Array [ + 0, + 0, + 0, + 255, + ], + "heightRange": Float32Array [ + 0, + 0, + ], + "nearColor": Uint8Array [ + 0, + 0, + 0, + 255, + ], + "sunDirRange": Float32Array [ + 0, + 0, + ], + }, + ], + "lighting": [ + { + "backlightColor": Uint8Array [ + 255, + 255, + 255, + ], + "backlightIntensity": 1, + "lights": [ + { + "color": Uint8Array [ + 61, + 68, + 92, + ], + "direction": Float32Array [ + 0.7071067690849304, + 0, + 0.7071067690849304, + ], + "intensity": 1.2019870281219482, + }, + { + "color": Uint8Array [ + 72, + 136, + 232, + ], + "direction": Float32Array [ + -0.7071067690849304, + -0.0000012868819112554775, + -0.7071067690849304, + ], + "intensity": 0.23684200644493103, + }, + { + "color": Uint8Array [ + 22, + 74, + 86, + ], + "direction": Float32Array [ + -0.0000010291722674082848, + -1.8730171493647196e-12, + 1, + ], + "intensity": 0.03289499878883362, + }, + { + "color": Uint8Array [ + 95, + 141, + 183, + ], + "direction": Float32Array [ + -0.0000010291722674082848, + 1.8730171493647196e-12, + -1, + ], + "intensity": 0.2337229996919632, + }, + { + "color": Uint8Array [ + 191, + 221, + 255, + ], + "direction": Float32Array [ + -0.7071067690849304, + -0.0000012868819112554775, + 0.7071067690849304, + ], + "intensity": 0.009867999702692032, + }, + { + "color": Uint8Array [ + 190, + 219, + 255, + ], + "direction": Float32Array [ + -4.371138828673793e-8, + 1, + 0, + ], + "intensity": 0.0394739992916584, + }, + { + "color": Uint8Array [ + 191, + 228, + 255, + ], + "direction": Float32Array [ + 0.7071067690849304, + 0, + -0.7071067690849304, + ], + "intensity": 0.07565800100564957, + }, + { + "color": Uint8Array [ + 255, + 190, + 199, + ], + "direction": Float32Array [ + -4.371138828673793e-8, + -1, + 0, + ], + "intensity": 0.20000000298023224, + }, + ], + "shadowInfluence": -0.5065360069274902, + }, + { + "backlightColor": Uint8Array [ + 255, + 255, + 255, + ], + "backlightIntensity": 1, + "lights": [ + { + "color": Uint8Array [ + 61, + 68, + 92, + ], + "direction": Float32Array [ + 0.7071067690849304, + 0, + 0.7071067690849304, + ], + "intensity": 1.2019870281219482, + }, + { + "color": Uint8Array [ + 72, + 136, + 232, + ], + "direction": Float32Array [ + -0.7071067690849304, + -0.0000012868819112554775, + -0.7071067690849304, + ], + "intensity": 0.23684200644493103, + }, + { + "color": Uint8Array [ + 22, + 74, + 86, + ], + "direction": Float32Array [ + -0.0000010291722674082848, + -1.8730171493647196e-12, + 1, + ], + "intensity": 0.03289499878883362, + }, + { + "color": Uint8Array [ + 95, + 141, + 183, + ], + "direction": Float32Array [ + -0.0000010291722674082848, + 1.8730171493647196e-12, + -1, + ], + "intensity": 0.2337229996919632, + }, + { + "color": Uint8Array [ + 191, + 221, + 255, + ], + "direction": Float32Array [ + -0.7071067690849304, + -0.0000012868819112554775, + 0.7071067690849304, + ], + "intensity": 0.009867999702692032, + }, + { + "color": Uint8Array [ + 190, + 219, + 255, + ], + "direction": Float32Array [ + -4.371138828673793e-8, + 1, + 0, + ], + "intensity": 0.0394739992916584, + }, + { + "color": Uint8Array [ + 191, + 228, + 255, + ], + "direction": Float32Array [ + 0.7071067690849304, + 0, + -0.7071067690849304, + ], + "intensity": 0.07565800100564957, + }, + { + "color": Uint8Array [ + 255, + 190, + 199, + ], + "direction": Float32Array [ + -4.371138828673793e-8, + -1, + 0, + ], + "intensity": 0.20000000298023224, + }, + ], + "shadowInfluence": -0.5065360069274902, + }, + { + "backlightColor": Uint8Array [ + 0, + 0, + 0, + ], + "backlightIntensity": 0, + "lights": [ + { + "color": Uint8Array [ + 255, + 233, + 192, + ], + "direction": Float32Array [ + 0.7071067690849304, + 0, + 0.7071067690849304, + ], + "intensity": 1.2999999523162842, + }, + { + "color": Uint8Array [ + 124, + 172, + 248, + ], + "direction": Float32Array [ + -0.7071067690849304, + -0.0000012868819112554775, + -0.7071067690849304, + ], + "intensity": 0.30000001192092896, + }, + { + "color": Uint8Array [ + 191, + 221, + 255, + ], + "direction": Float32Array [ + 0.29848748445510864, + 0.9186500906944275, + 0.258819043636322, + ], + "intensity": 0.10000000149011612, + }, + { + "color": Uint8Array [ + 188, + 204, + 253, + ], + "direction": Float32Array [ + -0.7814504504203796, + 0.5677568912506104, + 0.258819043636322, + ], + "intensity": 0.10000000149011612, + }, + { + "color": Uint8Array [ + 199, + 190, + 255, + ], + "direction": Float32Array [ + -0.8824164271354675, + 0.39287903904914856, + 0.25881901383399963, + ], + "intensity": 0.10000000149011612, + }, + { + "color": Uint8Array [ + 189, + 222, + 255, + ], + "direction": Float32Array [ + 0.2984875440597534, + -0.9186500310897827, + 0.258819043636322, + ], + "intensity": 0.10000000149011612, + }, + { + "color": Uint8Array [ + 204, + 237, + 255, + ], + "direction": Float32Array [ + -9.099629210140847e-7, + 1.6560650420438527e-12, + 1, + ], + "intensity": 0.30000001192092896, + }, + { + "color": Uint8Array [ + 168, + 254, + 189, + ], + "direction": Float32Array [ + -9.099629210140847e-7, + 1.6560650420438527e-12, + -1, + ], + "intensity": 0.15000000596046448, + }, + ], + "shadowInfluence": 0, + }, + ], + "lightingCharGroups": [], + "name": "", + "nightMods": Uint8Array [ + 255, + 255, + 255, + 133, + ], + "particleFieldCutouts": [], + "particleFields": [ + { + "altitude": 0, + "angle": Float32Array [ + 0, + 0, + ], + "clusterCount": 24, + "clustering": Float32Array [ + 0.300462007522583, + 0.36209601163864136, + ], + "depth": 0, + "deviation": 4.895104885101318, + "deviationSpeed": Float32Array [ + 0.08131799846887589, + 0.116177998483181, + ], + "extent": 291, + "fade": 50, + "fieldDirection": Float32Array [ + -0.10389599949121475, + -0.07467500120401382, + -0.10769200325012207, + ], + "flags": 902, + "lifetime": Float32Array [ + 0, + 0, + ], + "name": "dark", + "opacity": Float32Array [ + 0.024536000564694405, + 0.10526300221681595, + ], + "particleCount": 10, + "period": Float32Array [ + 0, + 0, + ], + "reserved": 0, + "rotation": Float32Array [ + -0.03490599989891052, + 0.01745299994945526, + ], + "scaleX": Float32Array [ + 100, + 130, + ], + "scaleY": Float32Array [ + 64.41320037841797, + 120, + ], + "seed": 19391, + "speed": Float32Array [ + 0.34340500831604004, + 0.4699540138244629, + ], + "texColRow": Uint32Array [ + 3, + 3, + ], + "texFPS": 0.5, + "texPath": 195762, + "type": 1, + }, + { + "altitude": 16825.173828125, + "angle": Float32Array [ + 0, + 0, + ], + "clusterCount": 34, + "clustering": Float32Array [ + 0.4391370117664337, + 0.5639449954032898, + ], + "depth": 162.33766174316406, + "deviation": 236.2012939453125, + "deviationSpeed": Float32Array [ + 0.01968500018119812, + 0.054545000195503235, + ], + "extent": 319, + "fade": 116.08391571044922, + "fieldDirection": Float32Array [ + -0.10389599949121475, + -0.07467500120401382, + -0.9804199934005737, + ], + "flags": 839, + "lifetime": Float32Array [ + 0, + 0, + ], + "name": "light", + "opacity": Float32Array [ + 0.041095998138189316, + 0.19459599256515503, + ], + "particleCount": 25, + "period": Float32Array [ + 0, + 0, + ], + "reserved": 0, + "rotation": Float32Array [ + -0.22520099580287933, + -0.06804099678993225, + ], + "scaleX": Float32Array [ + 120, + 200, + ], + "scaleY": Float32Array [ + 110, + 140, + ], + "seed": 19391, + "speed": Float32Array [ + 0.06451400369405746, + 0.19106300175189972, + ], + "texColRow": Uint32Array [ + 3, + 3, + ], + "texFPS": 0.5, + "texPath": 195762, + "type": 1, + }, + { + "altitude": 0, + "angle": Float32Array [ + 0, + 0, + ], + "clusterCount": 12, + "clustering": Float32Array [ + 0, + 0, + ], + "depth": 0, + "deviation": 4.895104885101318, + "deviationSpeed": Float32Array [ + 0.08131827414035797, + 0.11617827415466309, + ], + "extent": 866, + "fade": 50, + "fieldDirection": Float32Array [ + -0.10389599949121475, + -0.07467500120401382, + -0.10769230127334595, + ], + "flags": 646, + "lifetime": Float32Array [ + 0, + 0, + ], + "name": "dark_2", + "opacity": Float32Array [ + 0.017514586448669434, + 0.04174228757619858, + ], + "particleCount": 10, + "period": Float32Array [ + 0, + 0, + ], + "reserved": 0, + "rotation": Float32Array [ + -0.034906528890132904, + 0.017453264445066452, + ], + "scaleX": Float32Array [ + 100, + 130, + ], + "scaleY": Float32Array [ + 64.41320037841797, + 120, + ], + "seed": 19391, + "speed": Float32Array [ + 0.2725268006324768, + 0.3990754783153534, + ], + "texColRow": Uint32Array [ + 3, + 3, + ], + "texFPS": 0.5, + "texPath": 195762, + "type": 1, + }, + { + "altitude": 16825.173828125, + "angle": Float32Array [ + 0, + 0, + ], + "clusterCount": 12, + "clustering": Float32Array [ + 0, + 0, + ], + "depth": 162.33766174316406, + "deviation": 236.2012939453125, + "deviationSpeed": Float32Array [ + 0.01968500018119812, + 0.054545000195503235, + ], + "extent": 990, + "fade": 116.08391571044922, + "fieldDirection": Float32Array [ + -0.10389599949121475, + -0.07467500120401382, + -0.9804195761680603, + ], + "flags": 583, + "lifetime": Float32Array [ + 0, + 0, + ], + "name": "light_3", + "opacity": Float32Array [ + 0.015992455184459686, + 0.08348457515239716, + ], + "particleCount": 25, + "period": Float32Array [ + 0, + 0, + ], + "reserved": 0, + "rotation": Float32Array [ + -0.22520138323307037, + -0.0680411085486412, + ], + "scaleX": Float32Array [ + 120, + 200, + ], + "scaleY": Float32Array [ + 110, + 140, + ], + "seed": 19391, + "speed": Float32Array [ + 0.19856683909893036, + 0.3251155614852905, + ], + "texColRow": Uint32Array [ + 3, + 3, + ], + "texFPS": 0.5, + "texPath": 195762, + "type": 1, + }, + ], + "shapeArray": [], + "sky": { + "dayBrightness": 1, + "dayHazeBottom": 0.4827589988708496, + "dayHazeDensity": 1, + "dayHazeFalloff": 0.22257100045681, + "dayLightIntensity": 0, + "dayStarDensity": 0, + "flags": 0, + "nightBrightness": 1, + "nightHazeBottom": 0.4827589988708496, + "nightHazeDensity": 1, + "nightHazeFalloff": 0.22257100045681, + "nightLightIntensity": 0, + "nightStarDensity": 0, + "verticalOffset": 0, + }, + "skyCards": { + "cards": [], + }, + "spawns": {}, + "type": 3, + "water": [ + { + "animAmplitude": 0, + "animChoppiness": 0, + "animWind": Float32Array [ + -90, + -30, + ], + "bumpAmount": 300, + "bumpAngle0": 0, + "bumpAngle1": 40, + "bumpScale0": 0.10000000149011612, + "bumpScale1": 0.10000000149011612, + "bumpSpeed0": 1, + "bumpSpeed1": 1, + "bumpTile0": 1.7999999523162842, + "bumpTile1": 2.5999999046325684, + "constantTokens": [], + "constantValues": [], + "depthAttenuation": 200, + "distortAmount": 0.15000000596046448, + "foamColor0": Uint8Array [ + 51, + 126, + 174, + 38, + ], + "foamColor1": Uint8Array [ + 255, + 255, + 255, + 191, + ], + "foamDepthAttenuation": 0.8999999761581421, + "foamDissolve": 0.949999988079071, + "foamSpawn": 0.5, + "materialFilename": 0, + "patternAngle": 0, + "patternColor": Uint8Array [ + 255, + 255, + 255, + 0, + ], + "patternEdge": 1, + "patternSpeed": 1, + "patternTile": 1.7999999523162842, + "surfaceDeepColor": Uint8Array [ + 50, + 16, + 9, + 0, + ], + "surfaceFresnel": 2.5, + "surfaceShallowColor": Uint8Array [ + 190, + 168, + 103, + 0, + ], + "textureFilenames": [], + "waterFlags": 1, + }, + { + "animAmplitude": 0, + "animChoppiness": 0, + "animWind": Float32Array [ + -90, + -30, + ], + "bumpAmount": 300, + "bumpAngle0": 0, + "bumpAngle1": 40, + "bumpScale0": 0.10000000149011612, + "bumpScale1": 0.10000000149011612, + "bumpSpeed0": 1, + "bumpSpeed1": 1, + "bumpTile0": 1.7999999523162842, + "bumpTile1": 2.5999999046325684, + "constantTokens": [], + "constantValues": [], + "depthAttenuation": 200, + "distortAmount": 0.15000000596046448, + "foamColor0": Uint8Array [ + 51, + 126, + 174, + 38, + ], + "foamColor1": Uint8Array [ + 255, + 255, + 255, + 191, + ], + "foamDepthAttenuation": 0.8999999761581421, + "foamDissolve": 0.949999988079071, + "foamSpawn": 0.5, + "materialFilename": 0, + "patternAngle": 0, + "patternColor": Uint8Array [ + 255, + 255, + 255, + 0, + ], + "patternEdge": 1, + "patternSpeed": 1, + "patternTile": 1.7999999523162842, + "surfaceDeepColor": Uint8Array [ + 50, + 16, + 9, + 0, + ], + "surfaceFresnel": 2.5, + "surfaceShallowColor": Uint8Array [ + 190, + 168, + 103, + 0, + ], + "textureFilenames": [], + "waterFlags": 1, + }, + { + "animAmplitude": 0, + "animChoppiness": 0, + "animWind": Float32Array [ + -90, + -30, + ], + "bumpAmount": 300, + "bumpAngle0": 0, + "bumpAngle1": 40, + "bumpScale0": 0.10000000149011612, + "bumpScale1": 0.10000000149011612, + "bumpSpeed0": 1, + "bumpSpeed1": 1, + "bumpTile0": 1.7999999523162842, + "bumpTile1": 2.5999999046325684, + "constantTokens": [], + "constantValues": [], + "depthAttenuation": 200, + "distortAmount": 0.15000000596046448, + "foamColor0": Uint8Array [ + 51, + 126, + 174, + 38, + ], + "foamColor1": Uint8Array [ + 255, + 255, + 255, + 191, + ], + "foamDepthAttenuation": 0.8999999761581421, + "foamDissolve": 0.949999988079071, + "foamSpawn": 0.5, + "materialFilename": 0, + "patternAngle": 0, + "patternColor": Uint8Array [ + 255, + 255, + 255, + 0, + ], + "patternEdge": 1, + "patternSpeed": 1, + "patternTile": 1.7999999523162842, + "surfaceDeepColor": Uint8Array [ + 50, + 16, + 9, + 0, + ], + "surfaceFresnel": 2.5, + "surfaceShallowColor": Uint8Array [ + 190, + 168, + 103, + 0, + ], + "textureFilenames": [], + "waterFlags": 1, + }, + ], + "wind": [ + { + "azimuth": 28, + "elevation": 0, + "gust": 22, + "gustFreq": 3, + "gustSpeed": 11, + "noise": 10, + "speed": 16, + }, + { + "azimuth": 28, + "elevation": 0, + "gust": 22, + "gustFreq": 3, + "gustSpeed": 11, + "noise": 10, + "speed": 16, + }, + { + "azimuth": 0, + "elevation": 0, + "gust": 0, + "gustFreq": 0, + "gustSpeed": 0, + "noise": 0, + "speed": 0, + }, + ], + }, + { + "audio": [], + "bindTarget": 1868350783349621257n, + "clouds": { + "layers": [ + { + "altitude": 5895.5986328125, + "attributes": [ + { + "brightness": 1, + "density": 0.572160005569458, + "fadeEnd": 30, + "fadeWidth": 30, + "haze": 0, + "lightIntensity": 1, + "reserved": 0, + "velocity": Float32Array [ + 25.588512420654297, + 50.15349578857422, + ], + }, + { + "brightness": 1, + "density": 0.572160005569458, + "fadeEnd": 30, + "fadeWidth": 30, + "haze": 0, + "lightIntensity": 1, + "reserved": 0, + "velocity": Float32Array [ + 25.588512420654297, + 50.15349578857422, + ], + }, + { + "brightness": 1, + "density": 0, + "fadeEnd": 30, + "fadeWidth": 30, + "haze": 1, + "lightIntensity": 1, + "reserved": 0, + "velocity": Float32Array [ + 0, + 0, + ], + }, + ], + "cutOut": 1000, + "depth": 0.011873000301420689, + "extent": 1, + "name": "AwesomeCloudDay", + "reserved": 0, + "scale": 4.677585124969482, + "texture": 188574, + }, + { + "altitude": 462.0123291015625, + "attributes": [ + { + "brightness": 1, + "density": 0, + "fadeEnd": 225, + "fadeWidth": 100, + "haze": 1, + "lightIntensity": 1, + "reserved": 0, + "velocity": Float32Array [ + 0, + 0, + ], + }, + { + "brightness": 1, + "density": 0, + "fadeEnd": 225, + "fadeWidth": 100, + "haze": 1, + "lightIntensity": 1, + "reserved": 0, + "velocity": Float32Array [ + 0, + 0, + ], + }, + { + "brightness": 1, + "density": 0, + "fadeEnd": 225, + "fadeWidth": 100, + "haze": 1, + "lightIntensity": 1, + "reserved": 0, + "velocity": Float32Array [ + 0, + 0, + ], + }, + ], + "cutOut": 2000, + "depth": 0.004569000098854303, + "extent": 1, + "name": "Night Fog", + "reserved": 0, + "scale": 1.630321979522705, + "texture": 188576, + }, + { + "altitude": 30000, + "attributes": [ + { + "brightness": 1, + "density": 0.43103447556495667, + "fadeEnd": 16, + "fadeWidth": 16, + "haze": 1, + "lightIntensity": 0.36925286054611206, + "reserved": 0, + "velocity": Float32Array [ + -290.2298583984375, + -149.42529296875, + ], + }, + { + "brightness": 1, + "density": 0.43103447556495667, + "fadeEnd": 16, + "fadeWidth": 16, + "haze": 1, + "lightIntensity": 0.36925286054611206, + "reserved": 0, + "velocity": Float32Array [ + -290.2298583984375, + -149.42529296875, + ], + }, + { + "brightness": 1, + "density": 1, + "fadeEnd": 16, + "fadeWidth": 16, + "haze": 1, + "lightIntensity": 1, + "reserved": 0, + "velocity": Float32Array [ + 0, + 0, + ], + }, + ], + "cutOut": 100, + "depth": 0, + "extent": 1, + "name": "HighThin", + "reserved": 0, + "scale": 1.3074712753295898, + "texture": 195082, + }, + { + "altitude": 30000, + "attributes": [ + { + "brightness": 1, + "density": 1, + "fadeEnd": 16, + "fadeWidth": 16, + "haze": 1, + "lightIntensity": 1, + "reserved": 0, + "velocity": Float32Array [ + -178.160888671875, + 0, + ], + }, + { + "brightness": 1, + "density": 1, + "fadeEnd": 16, + "fadeWidth": 16, + "haze": 1, + "lightIntensity": 1, + "reserved": 0, + "velocity": Float32Array [ + -178.160888671875, + 0, + ], + }, + { + "brightness": 1, + "density": 1, + "fadeEnd": 16, + "fadeWidth": 16, + "haze": 1, + "lightIntensity": 1, + "reserved": 0, + "velocity": Float32Array [ + 0, + 0, + ], + }, + ], + "cutOut": 100, + "depth": 0, + "extent": 1, + "name": "HighThin2", + "reserved": 0, + "scale": 0.7471264004707336, + "texture": 195082, + }, + { + "altitude": 22801.72265625, + "attributes": [ + { + "brightness": 1, + "density": 1, + "fadeEnd": 16, + "fadeWidth": 16, + "haze": 1, + "lightIntensity": 1, + "reserved": 0, + "velocity": Float32Array [ + -267.2413330078125, + 83.3333740234375, + ], + }, + { + "brightness": 1, + "density": 1, + "fadeEnd": 16, + "fadeWidth": 16, + "haze": 1, + "lightIntensity": 1, + "reserved": 0, + "velocity": Float32Array [ + -267.2413330078125, + 83.3333740234375, + ], + }, + { + "brightness": 1, + "density": 1, + "fadeEnd": 16, + "fadeWidth": 16, + "haze": 1, + "lightIntensity": 1, + "reserved": 0, + "velocity": Float32Array [ + 0, + 0, + ], + }, + ], + "cutOut": 3000, + "depth": 0, + "extent": 1, + "name": "LowerThin", + "reserved": 0, + "scale": 0.5172414183616638, + "texture": 195082, + }, + { + "altitude": 20689.65625, + "attributes": [ + { + "brightness": 1, + "density": 1, + "fadeEnd": 16, + "fadeWidth": 16, + "haze": 1, + "lightIntensity": 1, + "reserved": 0, + "velocity": Float32Array [ + -163.7930908203125, + 89.0804443359375, + ], + }, + { + "brightness": 1, + "density": 1, + "fadeEnd": 16, + "fadeWidth": 16, + "haze": 1, + "lightIntensity": 1, + "reserved": 0, + "velocity": Float32Array [ + -163.7930908203125, + 89.0804443359375, + ], + }, + { + "brightness": 1, + "density": 1, + "fadeEnd": 16, + "fadeWidth": 16, + "haze": 1, + "lightIntensity": 1, + "reserved": 0, + "velocity": Float32Array [ + 0, + 0, + ], + }, + ], + "cutOut": 3000, + "depth": 0, + "extent": 1, + "name": "LowerThin2", + "reserved": 0, + "scale": 0.8908045887947083, + "texture": 195082, + }, + { + "altitude": 20, + "attributes": [ + { + "brightness": 0.9986577033996582, + "density": 0.5315436124801636, + "fadeEnd": 15.973154067993164, + "fadeWidth": 15.57046890258789, + "haze": 0.9046980142593384, + "lightIntensity": 1, + "reserved": 0, + "velocity": Float32Array [ + -14.76507568359375, + -111.409423828125, + ], + }, + { + "brightness": 1, + "density": 1, + "fadeEnd": 15.973154067993164, + "fadeWidth": 15.57046890258789, + "haze": 1, + "lightIntensity": 1, + "reserved": 0, + "velocity": Float32Array [ + 0, + 0, + ], + }, + { + "brightness": 1, + "density": 1, + "fadeEnd": 15.973154067993164, + "fadeWidth": 15.57046890258789, + "haze": 1, + "lightIntensity": 1, + "reserved": 0, + "velocity": Float32Array [ + 0, + 0, + ], + }, + ], + "cutOut": 50, + "depth": 0.006442952901124954, + "extent": 1, + "name": "goldfloor1", + "reserved": 0, + "scale": 3.3691275119781494, + "texture": 194274, + }, + { + "altitude": 15, + "attributes": [ + { + "brightness": 0.5852348804473877, + "density": 0.800000011920929, + "fadeEnd": 16, + "fadeWidth": 16, + "haze": 0.5731543898582458, + "lightIntensity": 1, + "reserved": 0, + "velocity": Float32Array [ + 159.7315673828125, + 41.6107177734375, + ], + }, + { + "brightness": 1, + "density": 1, + "fadeEnd": 16, + "fadeWidth": 16, + "haze": 1, + "lightIntensity": 1, + "reserved": 0, + "velocity": Float32Array [ + 0, + 0, + ], + }, + { + "brightness": 1, + "density": 1, + "fadeEnd": 16, + "fadeWidth": 16, + "haze": 1, + "lightIntensity": 1, + "reserved": 0, + "velocity": Float32Array [ + 0, + 0, + ], + }, + ], + "cutOut": 60, + "depth": 0.008053691126406193, + "extent": 0.028187919408082962, + "name": "goldfloor2", + "reserved": 0, + "scale": 4.751677989959717, + "texture": 189261, + }, + { + "altitude": 3503.355712890625, + "attributes": [ + { + "brightness": 0.26174497604370117, + "density": 0.9758388996124268, + "fadeEnd": 16, + "fadeWidth": 16, + "haze": 0.21073825657367706, + "lightIntensity": 0.9718120694160461, + "reserved": 0, + "velocity": Float32Array [ + -312.75164794921875, + 0, + ], + }, + { + "brightness": 1, + "density": 1, + "fadeEnd": 16, + "fadeWidth": 16, + "haze": 1, + "lightIntensity": 1, + "reserved": 0, + "velocity": Float32Array [ + 0, + 0, + ], + }, + { + "brightness": 1, + "density": 1, + "fadeEnd": 16, + "fadeWidth": 16, + "haze": 1, + "lightIntensity": 1, + "reserved": 0, + "velocity": Float32Array [ + 0, + 0, + ], + }, + ], + "cutOut": 500, + "depth": 0.006979865487664938, + "extent": 1, + "name": "goldceiling", + "reserved": 0, + "scale": 2.711409330368042, + "texture": 275425, + }, + ], + }, + "coloredLightRings": [], + "effect": [ + { + "clutTexturePath": 0, + "ext": {}, + "flags": 0, + "focalDepth": 6000, + "focalRange": 4000, + "glow": Uint8Array [ + 9, + 24, + 38, + 0, + ], + "glowAmplify": 0.30000001192092896, + "glowLevel": Uint8Array [ + 51, + 51, + 51, + 0, + ], + "saturation": 1, + "ssaoAmount": 3, + "ssaoBrighten": 0.20000000298023224, + "ssaoContrast": 1, + "ssaoSunScale": 0.5, + "tintAmount": 0, + "tintColor": Uint8Array [ + 0, + 0, + 0, + 0, + ], + "tintFocus": 0, + "tintTargetColor": Uint8Array [ + 0, + 0, + 0, + 0, + ], + }, + { + "clutTexturePath": 0, + "ext": {}, + "flags": 0, + "focalDepth": 6000, + "focalRange": 4000, + "glow": Uint8Array [ + 161, + 122, + 55, + 0, + ], + "glowAmplify": 0.4000000059604645, + "glowLevel": Uint8Array [ + 51, + 51, + 51, + 0, + ], + "saturation": 1, + "ssaoAmount": 3, + "ssaoBrighten": 0.20000000298023224, + "ssaoContrast": 1, + "ssaoSunScale": 0.5, + "tintAmount": 0, + "tintColor": Uint8Array [ + 0, + 0, + 0, + 0, + ], + "tintFocus": 0, + "tintTargetColor": Uint8Array [ + 0, + 0, + 0, + 0, + ], + }, + { + "clutTexturePath": 0, + "ext": {}, + "flags": 0, + "focalDepth": 6000, + "focalRange": 4000, + "glow": Uint8Array [ + 0, + 0, + 0, + 0, + ], + "glowAmplify": 0, + "glowLevel": Uint8Array [ + 0, + 0, + 0, + 0, + ], + "saturation": 1, + "ssaoAmount": 3, + "ssaoBrighten": 0.20000000298023224, + "ssaoContrast": 1, + "ssaoSunScale": 0.5, + "tintAmount": 0, + "tintColor": Uint8Array [ + 255, + 255, + 255, + 255, + ], + "tintFocus": 0, + "tintTargetColor": Uint8Array [ + 255, + 255, + 255, + 0, + ], + }, + ], + "ext": { + "brightMax": 0.5, + "brightMin": 0.30000001192092896, + "brightScale": 1, + "brightTime": 2.5, + "darkCoeff": 1.2000000476837158, + "darkExp": 0.800000011920929, + "darkMax": 0.30000001192092896, + "darkMin": 0.10000000149011612, + "darkScale": 1, + "dimTime": 5, + "ext2": {}, + "waterReflectionParams": Float32Array [ + 0, + 0, + 0, + 0, + ], + }, + "flags": 0, + "guid": 1887241509806309893n, + "haze": [ + { + "depthCue": 0.00041099998634308577, + "distRange": Float32Array [ + 227.00640869140625, + 2261.13671875, + ], + "farColor": Uint8Array [ + 13, + 13, + 12, + 255, + ], + "heightColor": Uint8Array [ + 19, + 19, + 14, + 255, + ], + "heightRange": Float32Array [ + -34.73039245605469, + 140.40118408203125, + ], + "nearColor": Uint8Array [ + 38, + 36, + 32, + 255, + ], + "sunDirRange": Float32Array [ + 0, + 0, + ], + }, + { + "depthCue": 0.0002519999979995191, + "distRange": Float32Array [ + 752.941162109375, + 4178.8232421875, + ], + "farColor": Uint8Array [ + 145, + 118, + 110, + 255, + ], + "heightColor": Uint8Array [ + 146, + 115, + 136, + 255, + ], + "heightRange": Float32Array [ + -283.95294189453125, + 399.01202392578125, + ], + "nearColor": Uint8Array [ + 74, + 42, + 16, + 255, + ], + "sunDirRange": Float32Array [ + -1, + 1, + ], + }, + { + "depthCue": 0, + "distRange": Float32Array [ + 0, + 0, + ], + "farColor": Uint8Array [ + 0, + 0, + 0, + 255, + ], + "heightColor": Uint8Array [ + 0, + 0, + 0, + 255, + ], + "heightRange": Float32Array [ + 0, + 0, + ], + "nearColor": Uint8Array [ + 0, + 0, + 0, + 255, + ], + "sunDirRange": Float32Array [ + 0, + 0, + ], + }, + ], + "lighting": [ + { + "backlightColor": Uint8Array [ + 255, + 255, + 255, + ], + "backlightIntensity": 1, + "lights": [ + { + "color": Uint8Array [ + 255, + 191, + 192, + ], + "direction": Float32Array [ + 0.7071067690849304, + 0, + 0.7071067690849304, + ], + "intensity": 0.9559032917022705, + }, + { + "color": Uint8Array [ + 46, + 174, + 255, + ], + "direction": Float32Array [ + -0.7071067690849304, + -0.0000012868819112554775, + -0.7071067690849304, + ], + "intensity": 0.3499999940395355, + }, + { + "color": Uint8Array [ + 255, + 221, + 191, + ], + "direction": Float32Array [ + -9.099629210140847e-7, + 1.6560650420438527e-12, + 1, + ], + "intensity": 0.07965860515832901, + }, + { + "color": Uint8Array [ + 30, + 210, + 255, + ], + "direction": Float32Array [ + -9.099629210140847e-7, + 1.6560650420438527e-12, + -1, + ], + "intensity": 0.25, + }, + { + "color": Uint8Array [ + 255, + 201, + 191, + ], + "direction": Float32Array [ + -0.7071067690849304, + -0.0000012868819112554775, + 0.7071067690849304, + ], + "intensity": 0.20000000298023224, + }, + { + "color": Uint8Array [ + 255, + 190, + 199, + ], + "direction": Float32Array [ + -4.371138828673793e-8, + 1, + 0, + ], + "intensity": 0.20000000298023224, + }, + { + "color": Uint8Array [ + 255, + 201, + 191, + ], + "direction": Float32Array [ + 0.7071067690849304, + 0, + -0.7071067690849304, + ], + "intensity": 0.20000000298023224, + }, + { + "color": Uint8Array [ + 255, + 190, + 199, + ], + "direction": Float32Array [ + -4.371138828673793e-8, + -1, + 0, + ], + "intensity": 0.20000000298023224, + }, + ], + "shadowInfluence": 0, + }, + { + "backlightColor": Uint8Array [ + 255, + 255, + 255, + ], + "backlightIntensity": 1, + "lights": [ + { + "color": Uint8Array [ + 240, + 126, + 45, + ], + "direction": Float32Array [ + 0.7071067690849304, + 0, + 0.7071067690849304, + ], + "intensity": 1.2000000476837158, + }, + { + "color": Uint8Array [ + 255, + 234, + 219, + ], + "direction": Float32Array [ + -0.7071067690849304, + -0.0000012868819112554775, + -0.7071067690849304, + ], + "intensity": 0.12171052396297455, + }, + { + "color": Uint8Array [ + 249, + 15, + 98, + ], + "direction": Float32Array [ + -0.0000010291722674082848, + -1.8730171493647196e-12, + -1, + ], + "intensity": 0.06578947603702545, + }, + { + "color": Uint8Array [ + 161, + 255, + 174, + ], + "direction": Float32Array [ + -0.0000010291722674082848, + -1.8730171493647196e-12, + 1, + ], + "intensity": 0.17117099463939667, + }, + { + "color": Uint8Array [ + 255, + 255, + 255, + ], + "direction": Float32Array [ + -0.7071067690849304, + -0.0000012868819112554775, + 0.7071067690849304, + ], + "intensity": 0.08408399671316147, + }, + { + "color": Uint8Array [ + 255, + 255, + 255, + ], + "direction": Float32Array [ + -4.371138828673793e-8, + 1, + 0, + ], + "intensity": 0.06606599688529968, + }, + { + "color": Uint8Array [ + 255, + 255, + 255, + ], + "direction": Float32Array [ + 0.7071067690849304, + 0, + -0.7071067690849304, + ], + "intensity": 0.08408399671316147, + }, + { + "color": Uint8Array [ + 255, + 255, + 255, + ], + "direction": Float32Array [ + -4.371138828673793e-8, + -1, + 0, + ], + "intensity": 0.08408399671316147, + }, + ], + "shadowInfluence": -0.2937690019607544, + }, + { + "backlightColor": Uint8Array [ + 0, + 0, + 0, + ], + "backlightIntensity": 0, + "lights": [ + { + "color": Uint8Array [ + 255, + 233, + 192, + ], + "direction": Float32Array [ + 0.7071067690849304, + 0, + 0.7071067690849304, + ], + "intensity": 1.2999999523162842, + }, + { + "color": Uint8Array [ + 124, + 172, + 248, + ], + "direction": Float32Array [ + -0.7071067690849304, + -0.0000012868819112554775, + -0.7071067690849304, + ], + "intensity": 0.30000001192092896, + }, + { + "color": Uint8Array [ + 191, + 221, + 255, + ], + "direction": Float32Array [ + 0.29848748445510864, + 0.9186500906944275, + 0.258819043636322, + ], + "intensity": 0.10000000149011612, + }, + { + "color": Uint8Array [ + 188, + 204, + 253, + ], + "direction": Float32Array [ + -0.7814504504203796, + 0.5677568912506104, + 0.258819043636322, + ], + "intensity": 0.10000000149011612, + }, + { + "color": Uint8Array [ + 199, + 190, + 255, + ], + "direction": Float32Array [ + -0.8824164271354675, + 0.39287903904914856, + 0.25881901383399963, + ], + "intensity": 0.10000000149011612, + }, + { + "color": Uint8Array [ + 189, + 222, + 255, + ], + "direction": Float32Array [ + 0.2984875440597534, + -0.9186500310897827, + 0.258819043636322, + ], + "intensity": 0.10000000149011612, + }, + { + "color": Uint8Array [ + 204, + 237, + 255, + ], + "direction": Float32Array [ + -9.099629210140847e-7, + 1.6560650420438527e-12, + 1, + ], + "intensity": 0.30000001192092896, + }, + { + "color": Uint8Array [ + 168, + 254, + 189, + ], + "direction": Float32Array [ + -9.099629210140847e-7, + 1.6560650420438527e-12, + -1, + ], + "intensity": 0.15000000596046448, + }, + ], + "shadowInfluence": 0, + }, + ], + "lightingCharGroups": [], + "name": "SCRIPT GoldenCaveDragonDark", + "nightMods": Uint8Array [ + 255, + 255, + 255, + 133, + ], + "particleFieldCutouts": [], + "particleFields": [ + { + "altitude": 0, + "angle": Float32Array [ + 0, + 0, + ], + "clusterCount": 20, + "clustering": Float32Array [ + 0.26810476183891296, + 0.34360554814338684, + ], + "depth": 0, + "deviation": 13.1362886428833, + "deviationSpeed": Float32Array [ + 0.03551575541496277, + 0.11402156949043274, + ], + "extent": 305, + "fade": 50, + "fieldDirection": Float32Array [ + 0, + 0, + 1, + ], + "flags": 643, + "lifetime": Float32Array [ + 0, + 0, + ], + "name": "blobs", + "opacity": Float32Array [ + 0.01217656023800373, + 0.06715063750743866, + ], + "particleCount": 30, + "period": Float32Array [ + 0, + 0, + ], + "reserved": 0, + "rotation": Float32Array [ + 0, + 0, + ], + "scaleX": Float32Array [ + 60.43596649169922, + 100, + ], + "scaleY": Float32Array [ + 59.71002197265625, + 100, + ], + "seed": 58782, + "speed": Float32Array [ + 0.10621240735054016, + 0.21417564153671265, + ], + "texColRow": Uint32Array [ + 3, + 3, + ], + "texFPS": 0.4000000059604645, + "texPath": 187549, + "type": 2, + }, + { + "altitude": -10, + "angle": Float32Array [ + 0, + 0, + ], + "clusterCount": 46, + "clustering": Float32Array [ + 0.1941448450088501, + 0.2465331256389618, + ], + "depth": 41.95804214477539, + "deviation": 25.174823760986328, + "deviationSpeed": Float32Array [ + 0.2234206199645996, + 0.3898305296897888, + ], + "extent": 2564, + "fade": 0, + "fieldDirection": Float32Array [ + 0, + 0, + -0.21118879318237305, + ], + "flags": 898, + "lifetime": Float32Array [ + 0, + 0, + ], + "name": "golddark", + "opacity": Float32Array [ + 0.06088279187679291, + 0.16894976794719696, + ], + "particleCount": 10, + "period": Float32Array [ + 0, + 0, + ], + "reserved": 0, + "rotation": Float32Array [ + 0, + 0, + ], + "scaleX": Float32Array [ + 60, + 120, + ], + "scaleY": Float32Array [ + 200, + 300, + ], + "seed": 197854, + "speed": Float32Array [ + 0.8690292835235596, + 0.9707242250442505, + ], + "texColRow": Uint32Array [ + 3, + 3, + ], + "texFPS": 0.699999988079071, + "texPath": 278712, + "type": 1, + }, + ], + "shapeArray": [], + "sky": {}, + "skyCards": {}, + "spawns": {}, + "type": 3, + "water": [], + "wind": [], + }, + ], + "dataOverrideArray": [], +} +`; diff --git a/parser/test/content/mapc2.bin b/parser/test/content/mapc2.bin new file mode 100644 index 0000000..be10307 Binary files /dev/null and b/parser/test/content/mapc2.bin differ diff --git a/parser/test/content/mapc3.bin b/parser/test/content/mapc3.bin new file mode 100644 index 0000000..493c535 Binary files /dev/null and b/parser/test/content/mapc3.bin differ diff --git a/parser/test/mapc2.test.ts b/parser/test/mapc2.test.ts new file mode 100644 index 0000000..db30752 --- /dev/null +++ b/parser/test/mapc2.test.ts @@ -0,0 +1,23 @@ +import * as fs from "fs"; + +import { DataParser } from "../src/data-parser"; +import { parseFile, parseAllChunks } from "../src/utils"; + +import { toArrayBuffer } from "./test-helper"; + +import * as ENV from "../definitions/ENV"; + +const chunkBuffer = fs.readFileSync("./test/content/mapc2.bin", null); +const dv = new DataView(toArrayBuffer(chunkBuffer)); +const fileHead = parseFile(dv); +const allChunks = parseAllChunks(dv, fileHead.newPosition); +const is64Bit = fileHead.data.flags == 5; + +// ENV +test("matches for ENV", function () { + const envChunk = allChunks.find((c) => c.chunkHeader.type === "env"); + const def = ENV.definitions[`V${envChunk!.chunkHeader.chunkVersion}` as keyof typeof ENV["definitions"]]; + const parser = new DataParser(def, is64Bit, false); + const test = parser.parse(dv, envChunk!.chunkPosition + envChunk!.chunkHeader.chunkHeaderSize); + expect(test.data).toMatchSnapshot("mapc2-env") +}); diff --git a/parser/test/mapc3.test.ts b/parser/test/mapc3.test.ts new file mode 100644 index 0000000..5f146bd --- /dev/null +++ b/parser/test/mapc3.test.ts @@ -0,0 +1,23 @@ +import * as fs from "fs"; + +import { DataParser } from "../src/data-parser"; +import { parseFile, parseAllChunks } from "../src/utils"; + +import { toArrayBuffer } from "./test-helper"; + +import * as ENV from "../definitions/ENV"; + +const chunkBuffer = fs.readFileSync("./test/content/mapc3.bin", null); +const dv = new DataView(toArrayBuffer(chunkBuffer)); +const fileHead = parseFile(dv); +const allChunks = parseAllChunks(dv, fileHead.newPosition); +const is64Bit = fileHead.data.flags == 5; + +// ENV +test("matches for ENV", function () { + const envChunk = allChunks.find((c) => c.chunkHeader.type === "env"); + const def = ENV.definitions[`V${envChunk!.chunkHeader.chunkVersion}` as keyof typeof ENV["definitions"]]; + const parser = new DataParser(def, is64Bit, false); + const test = parser.parse(dv, envChunk!.chunkPosition + envChunk!.chunkHeader.chunkHeaderSize); + expect(test.data).toMatchSnapshot("mapc3-env") +}); diff --git a/parser/test/tsconfig.json b/parser/test/tsconfig.json index 60ca1e2..38bb979 100644 --- a/parser/test/tsconfig.json +++ b/parser/test/tsconfig.json @@ -6,6 +6,6 @@ ], "noImplicitAny": true, "strictNullChecks": true, - "target": "es5", + "target": "ES2022", }, -} \ No newline at end of file +} diff --git a/utils/imhex/pf_types.pat b/utils/imhex/pf_types.pat index 57642ba..2492114 100644 --- a/utils/imhex/pf_types.pat +++ b/utils/imhex/pf_types.pat @@ -1,32 +1,40 @@ +#include "std/io.pat" + bool x64Mode in; u64 chunkMaxAddres in; struct Pointer { if(x64Mode) { - u64 offset; - if(offset != 0 && $ + offset < chunkMaxAddres) { - T data @ $ + offset - 8; + u64 __offset; + if(__offset == 0){} // Skip null pointers + else if($ + __offset < chunkMaxAddres) { + T data @ $ + __offset - 8 [[inline]]; } else { - std::print("Pointer out of range"); + T data @ $ - (9 + (0xffffffffffffffff - __offset)) [[inline]]; } } else { - u32 offset; - T data @ $ + offset; + u32 __offset; + if(__offset == 0){} // Skip null pointers + else if($ + __offset < chunkMaxAddres) { + T data @ $ + __offset - 4 [[inline]]; + } else { + T data @ $ - (5 + (0xffffffff - __offset)) [[inline]]; + } } }; struct FixedArray { - T array[Length]; + T array[Length] [[inline]]; }; struct DynArray { - u32 length; - Pointer> array; + u32 __length; + Pointer> array [[inline]]; }; struct RefArray { - u32 length; - Pointer, parent.length>> array; + u32 __length; + Pointer, parent.__length>> array [[inline]]; }; struct String {