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>
This commit is contained in:
32
extensions/plugin-import-2x/creator/components/CurveRange.ts
Normal file
32
extensions/plugin-import-2x/creator/components/CurveRange.ts
Normal file
@@ -0,0 +1,32 @@
|
||||
'use strict';
|
||||
export const CURVERANGE = {
|
||||
"__type__": "cc.CurveRange",
|
||||
"mode": 0,
|
||||
"constant": 0,
|
||||
"constantMin": 0,
|
||||
"constantMax": 0,
|
||||
"multiplier": 1,
|
||||
};
|
||||
|
||||
export class CurveRange {
|
||||
|
||||
static create() {
|
||||
return JSON.parse(JSON.stringify(CURVERANGE));
|
||||
}
|
||||
|
||||
static async migrate(json2D: any) {
|
||||
const source = JSON.parse(JSON.stringify(CURVERANGE));
|
||||
for (const key in json2D) {
|
||||
const value = json2D[key];
|
||||
if (value === undefined || value === null) { continue; }
|
||||
source[key] = value;
|
||||
}
|
||||
return source;
|
||||
}
|
||||
|
||||
static async apply(index: number, json2D: any, json3D: any) {
|
||||
const source = await CurveRange.migrate(json2D[index]);
|
||||
json3D.splice(index, 1, source);
|
||||
return source;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user