Files
cocos/extensions/plugin-import-2x/creator/convertor/text.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

12 lines
282 B
TypeScript

'use strict';
import { ImporterBase } from '../common/base';
export class TextImporter extends ImporterBase {
type: string = 'base';
async import(): Promise<boolean> {
this._3dMeta.ver = '1.0.0';
this._3dMeta.importer = 'text';
return true;
}
}