Adds level prefabs, theme assets, audio, extensions, and deployment scripts for the Unity WebGL migration. Co-authored-by: Cursor <cursoragent@cursor.com>
44 lines
1.0 KiB
TypeScript
44 lines
1.0 KiB
TypeScript
'use strict';
|
|
export const COLLIDER2D = {
|
|
"__type__": "cc.Collider2D",
|
|
"_name": "",
|
|
"_objFlags": 0,
|
|
"node": null,
|
|
"_enabled": true,
|
|
"__prefab": null,
|
|
"tag": 0,
|
|
"_group": 1,
|
|
"_density": 1,
|
|
"_sensor": false,
|
|
"_friction": 0.2,
|
|
"_restitution": 0,
|
|
"_offset": {
|
|
"__type__": "cc.Vec2",
|
|
"x": 0,
|
|
"y": 0,
|
|
},
|
|
};
|
|
|
|
export class Collider2D {
|
|
|
|
static create() {
|
|
return JSON.parse(JSON.stringify(COLLIDER2D));
|
|
}
|
|
|
|
static async migrate(json2D: any) {
|
|
const source = JSON.parse(JSON.stringify(COLLIDER2D));
|
|
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 Collider2D.migrate(json2D[index]);
|
|
json3D.splice(index, 1, source);
|
|
return source;
|
|
}
|
|
}
|