| 12345678910111213141516171819202122232425262728293031323334353637383940 |
- /*
- * @Author: dgflash
- * @Date: 2021-11-11 17:45:23
- * @LastEditors: dgflash
- * @LastEditTime: 2022-08-03 10:07:14
- */
- import { ecs } from "../../../../extensions/oops-plugin-framework/assets/libs/ecs/ECS";
- import { Account } from "../account/Account";
- import { InitResComp, InitResSystem } from "./bll/InitRes";
- /**
- * 游戏进入初始化模块
- * 1、热更新
- * 2、加载默认资源
- */
- @ecs.register('Initialize')
- export class Initialize extends ecs.Entity {
- /** 帐号管理 */
- account: Account = null!;
- protected init() {
- // 帐号模块为初始化模块的子实体对象
- // console.log('11111111111111')
- this.account = ecs.getEntity<Account>(Account);
- // console.log(this.account)
- this.addChild(this.account);
- // 初始化游戏公共资源
- this.add(InitResComp);
- }
- }
- export class EcsInitializeSystem extends ecs.System {
- constructor() {
- super();
- this.add(new InitResSystem());
- }
- }
|