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