ModuleDef.ts 587 B

123456789101112131415161718192021
  1. export class ModuleDef {
  2. /**
  3. * @en basic bundle, used for basic scene and common ui
  4. * @zh 基础 bundle,用于存放基础场景,公共UI
  5. */
  6. public static BASIC = 'module_basic';
  7. public static BALL = 'module_ball';
  8. /**
  9. * @en game bundle, used for game scene and common ui
  10. * @zh 用于存放游戏场景相关的素材
  11. */
  12. public static GAME = 'module_game';
  13. /**
  14. * @en game bundle, used for game scene and common ui
  15. * @zh 用于存放游戏场景相关的素材
  16. */
  17. public static ICONS = 'module_icons';
  18. }