Files
cocos/extensions/plugin-import-2x/creator/components/UIRenderable.ts
刘宇飞 d393302388 Complete Cocos Creator port with level bundles, themes, and tooling.
Adds level prefabs, theme assets, audio, extensions, and deployment scripts for the Unity WebGL migration.

Co-authored-by: Cursor <cursoragent@cursor.com>
2026-06-16 15:30:58 +08:00

44 lines
1.0 KiB
TypeScript

'use strict';
export const UIRENDERABLE = {
"__type__": "cc.UIRenderable",
"_name": "",
"_objFlags": 0,
"node": null,
"_enabled": true,
"__prefab": null,
"_materials": [],
"_visFlags": 0,
"_srcBlendFactor": 2,
"_dstBlendFactor": 4,
"_color": {
"__type__": "cc.Color",
"r": 255,
"g": 255,
"b": 255,
"a": 255,
},
};
export class UIRenderable {
static create() {
return JSON.parse(JSON.stringify(UIRENDERABLE));
}
static async migrate(json2D: any) {
const source = JSON.parse(JSON.stringify(UIRENDERABLE));
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 UIRenderable.migrate(json2D[index]);
json3D.splice(index, 1, source);
return source;
}
}