'use strict'; export const SPHERELIGHT = { "__type__": "cc.SphereLight", "_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, }, "_size": 0.15, "_luminance": 1913.8445799108247, "_term": 0, "_range": 1, }; export class SphereLight { static create() { return JSON.parse(JSON.stringify(SPHERELIGHT)); } static async migrate(json2D: any) { const source = JSON.parse(JSON.stringify(SPHERELIGHT)); for (const key in json2D) { const value = json2D[key]; if (key === '__type__' || value === undefined || value === null) { continue; } source[key] = value; } return source; } static async apply(index: number, json2D: any, json3D: any) { const source = await SphereLight.migrate(json2D[index]); json3D.splice(index, 1, source); return source; } }