Adds level prefabs, theme assets, audio, extensions, and deployment scripts for the Unity WebGL migration. Co-authored-by: Cursor <cursoragent@cursor.com>
101 lines
3.1 KiB
TypeScript
101 lines
3.1 KiB
TypeScript
'use strict';
|
|
import { ImporterBase } from "../common/base";
|
|
import { getBlendFactor2DTo3D, setColor } from "../common/utlis";
|
|
|
|
export const LABEL = {
|
|
"__type__": "cc.Label",
|
|
"_name": "",
|
|
"_objFlags": 0,
|
|
"node": null,
|
|
"_enabled": true,
|
|
"__prefab": null,
|
|
"_customMaterial": null,
|
|
"_visFlags": 0,
|
|
"_srcBlendFactor": 2,
|
|
"_dstBlendFactor": 4,
|
|
"_color": {
|
|
"__type__": "cc.Color",
|
|
"r": 255,
|
|
"g": 255,
|
|
"b": 255,
|
|
"a": 255,
|
|
},
|
|
"_useOriginalSize": true,
|
|
"_string": "label",
|
|
"_horizontalAlign": 1,
|
|
"_verticalAlign": 1,
|
|
"_actualFontSize": 0,
|
|
"_fontSize": 40,
|
|
"_fontFamily": "Arial",
|
|
"_lineHeight": 40,
|
|
"_overflow": 0,
|
|
"_enableWrapText": true,
|
|
"_font": null,
|
|
"_isSystemFontUsed": true,
|
|
"_isItalic": false,
|
|
"_isBold": false,
|
|
"_isUnderline": false,
|
|
"_underlineHeight": 0,
|
|
"_cacheMode": 0,
|
|
};
|
|
|
|
export class Label {
|
|
|
|
static create() {
|
|
return JSON.parse(JSON.stringify(LABEL));
|
|
}
|
|
|
|
static async migrate(index: number, json2D: any, json3D: any) {
|
|
const source = JSON.parse(JSON.stringify(LABEL));
|
|
const label = json2D[index];
|
|
for (const key in label) {
|
|
const value = label[key];
|
|
if (key === '__type__' || value === undefined || value === null) { continue; }
|
|
if (key === 'node') {
|
|
source.node = value;
|
|
setColor(source, value.__id__, json2D);
|
|
}
|
|
else if (key === '_materials') {
|
|
// for (let i = 0; i < value.length; ++i) {
|
|
let material = value[0];
|
|
if (material) {
|
|
material = {
|
|
__uuid__: await ImporterBase.getUuid(material.__uuid__),
|
|
};
|
|
}
|
|
source._customMaterial = material;
|
|
// }
|
|
} else if (key === '_N$file') {
|
|
source._font = {
|
|
__uuid__: await ImporterBase.getUuid(value.__uuid__),
|
|
};
|
|
} else if (key === '_N$string') {
|
|
source._string = value;
|
|
} else if (key === '_N$fontFamily') {
|
|
source._fontFamily = value;
|
|
} else if (key === '_N$overflow') {
|
|
source._overflow = value;
|
|
} else if (key === '_N$cacheMode') {
|
|
source._cacheMode = value;
|
|
} else if (key === '_N$horizontalAlign') {
|
|
source._horizontalAlign = value;
|
|
} else if (key === '_N$verticalAlign') {
|
|
source._verticalAlign = value;
|
|
} else if (key === '_srcBlendFactor') {
|
|
source._srcBlendFactor = getBlendFactor2DTo3D(value);
|
|
} else if (key === '_dstBlendFactor') {
|
|
source._dstBlendFactor = getBlendFactor2DTo3D(value);
|
|
} else {
|
|
source[key] = value;
|
|
}
|
|
}
|
|
return source;
|
|
}
|
|
|
|
static async apply(index: number, json2D: any, json3D: any) {
|
|
const source = await Label.migrate(index, json2D, json3D);
|
|
json3D.splice(index, 1, source);
|
|
return source;
|
|
}
|
|
}
|