'use strict'; var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) { function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); } return new (P || (P = Promise))(function (resolve, reject) { function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } } function rejected(value) { try { step(generator["throw"](value)); } catch (e) { reject(e); } } function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); } step((generator = generator.apply(thisArg, _arguments || [])).next()); }); }; Object.defineProperty(exports, "__esModule", { value: true }); exports.Light = exports.LIGHT = void 0; const StaticLightSettings_1 = require("./StaticLightSettings"); exports.LIGHT = { "__type__": "cc.Light", "_name": "", "_objFlags": 0, "node": null, "_enabled": true, "__prefab": null, "_color": { "__type__": "cc.Color", "r": 255, "g": 255, "b": 255, "a": 255, }, "_useColorTemperature": false, "_colorTemperature": 6550, "_staticSettings": { "__id__": 1, }, }; class Light { static create() { return JSON.parse(JSON.stringify(exports.LIGHT)); } static migrate(json2D) { return __awaiter(this, void 0, void 0, function* () { const source = JSON.parse(JSON.stringify(exports.LIGHT)); for (const key in json2D) { const value = json2D[key]; if (key === '__type__' || value === undefined || value === null) { continue; } source[key] = value; } return source; }); } static apply(index, json2D, json3D) { return __awaiter(this, void 0, void 0, function* () { const source = yield Light.migrate(json2D[index]); const settings = StaticLightSettings_1.StaticLightSettings.create(); json3D.push(settings); source._staticSettings = { __id__: json3D.length - 1, }; json3D.splice(index, 1, source); return source; }); } } exports.Light = Light;