load 加载
load
类型: MethodDeclaration
所属类: SceneTilemap
定义位置: scene.ts
描述
加载
返回值
类型: Promise<void>
源代码
位置: 第 2770 行
private async load(): Promise<void> {
    const promise = this.loadTextures()
    if (!this.loaded) {
      this.draw = Function.empty
      await promise
      // @ts-ignore
      delete this.draw
    }
    this.createAllImageData()
  }
文档生成时间:2025/7/21 20:53:39