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:
11
extensions/plugin-import-2x/creator/convertor/skeleton.ts
Normal file
11
extensions/plugin-import-2x/creator/convertor/skeleton.ts
Normal file
@@ -0,0 +1,11 @@
|
||||
'use strict';
|
||||
import { ImporterBase } from '../common/base';
|
||||
|
||||
export class SkeletonImporter extends ImporterBase {
|
||||
type: string = 'base';
|
||||
async import(): Promise<boolean> {
|
||||
this._3dMeta.ver = '1.0.0';
|
||||
this._3dMeta.importer = 'instantiation-skeleton';
|
||||
return true;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user