Adds level prefabs, theme assets, audio, extensions, and deployment scripts for the Unity WebGL migration. Co-authored-by: Cursor <cursoragent@cursor.com>
34 lines
861 B
TypeScript
34 lines
861 B
TypeScript
'use strict';
|
|
export const EFFECTASSET = {
|
|
"__type__": "cc.EffectAsset",
|
|
"_name": "",
|
|
"_objFlags": 0,
|
|
"_native": "",
|
|
"techniques": [],
|
|
"shaders": [],
|
|
"combinations": [],
|
|
};
|
|
|
|
export class EffectAsset {
|
|
|
|
static create() {
|
|
return JSON.parse(JSON.stringify(EFFECTASSET));
|
|
}
|
|
|
|
static async migrate(json2D: any) {
|
|
const source = JSON.parse(JSON.stringify(EFFECTASSET));
|
|
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 EffectAsset.migrate(json2D[index]);
|
|
json3D.splice(index, 1, source);
|
|
return source;
|
|
}
|
|
}
|