Adds level prefabs, theme assets, audio, extensions, and deployment scripts for the Unity WebGL migration. Co-authored-by: Cursor <cursoragent@cursor.com>
12 lines
289 B
TypeScript
12 lines
289 B
TypeScript
'use strict';
|
|
import { ImporterBase } from '../common/base';
|
|
|
|
export class AudioImporter extends ImporterBase {
|
|
type: string = 'base';
|
|
async import(): Promise<boolean> {
|
|
this._3dMeta.ver = '1.0.0';
|
|
this._3dMeta.importer = "audio-clip";
|
|
return true;
|
|
}
|
|
}
|