The Loader class can be used to load resources such as text, JSON, XML, binary, images, etc.

Loader 类可用来加载文本、JSON、XML、二进制、图像等资源。

层级 (查看层级一览)

属性

maxLoader: number = 5

Maximum number of download threads, default is 5.

最大下载线程,默认为 5 个。

retryDelay: number = 0

Delay time before retrying after an error, default is to retry immediately.

延迟时间多久再进行错误重试,默认立即重试。

retryNum: number = 1

Number of retry attempts after loading fails, default is 1.

加载出错后的重试次数,默认重试一次。

ANIMATIONCLIP: string = "ANIMATIONCLIP"

AnimationClip resource.

AnimationClip 资源。

ATLAS: string = "atlas"

Atlas type, returns atlas JSON information (and creates small Textures within the atlas) after loading is complete.

图集类型,加载完成后返回图集 json 信息(并创建图集内小图 Texture)。

BUFFER: string = "arraybuffer"

Binary type, returns a TextResource object containing arraybuffer after loading is complete.

二进制类型,加载完成后返回包含 arraybuffer 的 TextResource 对象。

downloader: Downloader = ...

The downloader used to download resources.

下载器,用来下载资源。

extMap: { [ext: string]: TypeMapEntry[] } = {}

List of resource loaders.

资源加载器列表。

FONT: string = "font"

Bitmap font type, returns a BitmapFont after loading is complete. It will be automatically registered as a bitmap font based on the file name.

位图字体类型,加载完成后返回 BitmapFont,加载后,会根据文件名自动注册为位图字体。

groupMap: { [name: string]: Set<string> } = {}

Resource group mapping table.

资源分组对应表。

HIERARCHY: string = "HIERARCHY"

Hierarchy resource.

Hierarchy 资源。

hotReloadableFlags: Record<number, boolean> = {}

Hot overload identification.

热重载标识。

IMAGE: string = "image"

Texture type, returns a Texture after loading is complete.

纹理类型,加载完成后返回 Texture。

JSON: string = "json"

JSON type, returns a TextResource object containing JSON data after loading is complete.

JSON 类型,加载完成后返回包含 json 数据的 TextResource 对象。

loadedMap: { [url: string]: any[] } = {}

Pool of loaded resources.

已加载的资源池。

LoaderStat_LoaderResourceCount: number

Number of resource downloads.

资源下载次数。

LoaderStat_LoadRequestCount: number

Number of network file requests.

网络文件请求次数。

LoaderStat_LoadRequestTime: number

Network download time.

网络下载时间。

LoaderStat_LoadResourceTime: number

Resource download + parse time.

资源下载 + 解析时间。

MATERIAL: string = "MATERIAL"

Material resource.

Material 资源。

MESH: string = "MESH"

Mesh resource.

Mesh 资源。

preLoadedMap: { [url: string]: any } = {}

Preloaded data files. If a url has a record here, the data here will be used directly when requested, abandoning network loading.

预加载的数据文件。如果一个 url 在这里有记录,则请求时直接使用这里的数据,放弃网络加载。

SOUND: string = "sound"

Sound type, returns a Sound after loading is complete.

声音类型,加载完成后返回 Sound。

SPINE: string = "SPINE"

Spine resource.

Spine 资源。

TERRAINHEIGHTDATA: string = "TERRAINHEIGHTDATA"

Terrain height data resource.

Terrain 高度数据资源。

TERRAINRES: string = "TERRAIN"

Terrain resource.

Terrain 资源。

TEXT: string = "text"

Text type, returns a TextResource object containing a string after loading is complete.

文本类型,加载完成后返回包含 string 的 TextResource 对象。

TEXTURE2D: string = "TEXTURE2D"

Texture2D resource. This is for compatibility, it should actually be BaseTexture.

Texture2D 资源。这里是为了兼容,实际应该是 BaseTexture。

TEXTURE2DARRAY: string = "TEXTURE2D"

TEXTURE2DARRAY resource.

TEXTURE2DARRAY 资源。

TEXTURECUBE: string = "TEXTURE2D"

TextureCube resource. For compatibility, now TEXTURE2D type can load Texture or TextureCube.

TextureCube 资源。兼容处理,现在 TEXTURE2D 类型可以载入 Texture 或者 TextureCube。

TTF: string = "ttf"

TTF font type, returns an object after loading is complete.

TTF 字体类型,加载完成后返回一个对象。

typeMap: { [type: string]: TypeMapEntry } = {}

Resource type mapping table.

资源类型对应表。

VIDEO: string = "video"

Video type, returns a VideoTexture after loading is complete.

视频类型,加载完成后返回 VideoTexture。

XML: string = "xml"

XML type, returns a TextResource object containing domXML after loading is complete.

XML 类型,加载完成后返回包含 domXML 的 TextResource 对象。

访问器

  • get loading(): boolean

    返回 boolean

    Indicates whether there are any loading tasks in progress.

    是否有任何的加载任务在进行。

方法

  • 参数

    • url: string

      The URL of the resource.

    • data: any

      The content to be cached.

    • 可选type: string

      The type of the resource.

    返回 void

    Cache a resource.

    缓存资源。

  • 参数

    • url: string

      The resource URL.

    返回 void

    Clears unloaded content based on a specific URL.

    根据地址清理掉未加载的内容。

  • 参数

    • urls: any[]

      An array of resource URLs.

    返回 void

    Clears unloaded content based on a collection of URLs.

    根据地址集合清理掉未加载的内容。

  • 参数

    • url: string

      The URL of the resource.

    • 可选checkObj: any

      If provided, only clear the resource if it matches this object.

    返回 void

    Clear the cached resource at the specified URL.

    清理指定资源地址的缓存。

  • 参数

    • url: string

      The URL of the atlas or texture, e.g., "res/atlas/comp.atlas" or "hall/bg.jpg".

    返回 void

    Destroy the image resource used by a Texture, keeping the texture shell. If the texture's image resource is found to be missing during the next render, it will be automatically restored. Compared to clearRes, clearTextureRes only clears the image resource used in the texture without destroying the texture itself. The image resource will be automatically restored when used again. While clearRes completely destroys the texture, making it unusable, clearTextureRes ensures immediate destruction of the image resource without worrying about incorrect destruction.

    销毁 Texture 使用的图片资源,保留 texture 壳。如果下次渲染时发现 texture 使用的图片资源不存在,则会自动恢复。相比 clearRes,clearTextureRes 只是清理 texture 里面使用的图片资源,并不销毁 texture,再次使用到的时候会自动恢复图片资源。而 clearRes 会彻底销毁 texture,导致不能再使用;clearTextureRes 能确保立即销毁图片资源,并且不用担心销毁错误。

  • 返回 void

    Clears all unfinished loading tasks. All unloaded content will stop loading.

    清理当前未完成的加载,所有未加载的内容全部停止加载。

  • 参数

    • type: string

      The type of event.

    • 可选data: any

      (Optional) Data to pass to the callback. If multiple parameters p1, p2, p3, ... need to be passed, use an array structure such as [p1, p2, p3, ...]. If a single parameter p needs to be passed and p is an array, use a structure such as [p]. For other single parameters p, you can directly pass parameter p. If data is Event.EMPTY, it means passing an Event object to the callback function. Note that it is not passing Event.TEMP, but an independent Event object.

    返回 boolean

    True if there are listeners for this event type, false otherwise.

    Dispatch an event.

    派发事件。

  • 类型参数

    • K extends keyof ContentTypeMap

    参数

    • url: string

      The URL to download from.

    • contentType: K

      The expected content type of the resource.

    • 可选onProgress: ProgressCallback

      Optional callback for progress updates.

    • 可选options: Readonly<ILoadOptions>

      Optional loading options.

    返回 Promise<ContentTypeMap[K]>

    A promise that resolves with the downloaded content. If the download fails, the promise resolves with null.

    Download from the specified URL. This is a low-level method for downloading resources. Unlike the load method, it doesn't parse the returned data or cache the downloaded content. Returns the downloaded data on success, null on failure.

    从指定URL下载。这是较为底层的下载资源的方法,它和load方法不同,不对返回的数据进行解析,也不会缓存下载的内容。成功则返回下载的数据,失败返回null。

  • 参数

    • url: string

      The URL of the resource.

    • 可选type: string

      The type of the resource.

    返回 any

    The resource.

    Get a resource by URL and type.

    通过 URL 和类型获取资源。

  • 参数

    • type: string

      The type of event.

    返回 boolean

    True if a listener of the specified type is registered, false otherwise.

    Check if the EventDispatcher object has any listeners registered for a specific type of event.

    检查 EventDispatcher 对象是否为特定事件类型注册了任何侦听器。

  • 参数

    • url: string | ILoadURL | (string | Readonly<ILoadURL>)[]

      The URL or array of URLs of the resource(s) to load.

    • 可选type: string

      The type of resource. For example: Loader.IMAGE.

    • 可选onProgress: ProgressCallback

      The progress callback function.

    返回 Promise<any>

    A Promise that resolves with the loaded resource(s). If url is a single resource, it returns the loaded resource or null if failed. If url is an array, it returns an array of loaded resources or null for each failed load.

    Loads resources.

    加载资源。

  • 参数

    • url: string | ILoadURL | (string | Readonly<ILoadURL>)[]

      The URL or array of URLs of the resource(s) to load.

    • 可选options: Readonly<ILoadOptions>

      The loading options.

    • 可选onProgress: ProgressCallback

      The progress callback function.

    返回 Promise<any>

    A Promise that resolves with the loaded resource(s). If url is a single resource, it returns the loaded resource or null if failed. If url is an array, it returns an array of loaded resources or null for each failed load.

    Loads resources with options.

    使用选项加载资源。

  • 参数

    • url: string | ILoadURL | (string | Readonly<ILoadURL>)[]

      The URL or array of URLs of the resource(s) to load. Can be a simple array ["a.png", "b.png"] or a complex array [{url:"a.png",type:Loader.IMAGE,size:100,priority:1},{url:"b.json",type:Loader.JSON,size:50,priority:1}].

    • 可选complete: Handler

      The completion callback. Returns the loaded resource if url is a string, or an array of loaded resources (or null for failed loads) if url is an array.

    • 可选progress: Handler

      The progress callback. The callback parameter is the current resource loading progress (0-1).

    • 可选type: string

      The resource type. For example: Loader.IMAGE.

    • 可选priority: number

      The loading priority. Higher numbers indicate higher priority. Default is 0.

    • 可选cache: boolean

      Whether to cache the resource. Default is true.

    • 可选group: string

      The group name for resource management.

    • 可选ignoreCache: boolean

      Whether to ignore the cache. Default is false.

    • 可选useWorkerLoader: boolean

      Whether to use worker loading (only for IMAGE and ATLAS types, and when browser supports it). Default is false.

    返回 Promise<any>

    A Promise object.

    Loads resources (compatible with engine 2.0 loading interface).

    加载资源(兼容 2.0 引擎的加载接口)。

  • 参数

    • path: string

      The path of the sub-package in mini-game.

    • 可选onProgress: ProgressCallback

      The callback for loading progress.

    返回 Promise<void>

    A Promise that resolves when the package is loaded.

    Loads a sub-package.

    载入一个分包。

  • 参数

    • path: string

      The path of the sub-package.

    • 可选remoteUrl: string

      If the package is a remote package, provide the remote resource server address, e.g., "http://cdn.com/"

    • 可选onProgress: ProgressCallback

      The callback for loading progress.

    返回 Promise<void>

    A Promise that resolves when the package is loaded.

    Loads a sub-package.

    载入一个分包。

  • 参数

    • type: string

      The type of event.

    • listener: Function

      The listener function.

    返回 EventDispatcher

    This EventDispatcher object.

    Register an event listener object with the EventDispatcher object so that the listener receives event notifications.

    使用 EventDispatcher 对象注册指定类型的事件侦听器对象,以使侦听器能够接收事件通知。

  • 参数

    • type: string

      The type of event.

    • caller: any

      The execution scope of the event listener function.

    • listener: Function

      The listener function.

    • 可选args: any[]

      (Optional) The callback parameters of the event listener function.

    返回 EventDispatcher

    This EventDispatcher object.

    Register an event listener object with the EventDispatcher object so that the listener receives event notifications.

    使用 EventDispatcher 对象注册指定类型的事件侦听器对象,以使侦听器能够接收事件通知。

  • 参数

    • type: string

      The type of event.

    • listener: Function

      The listener function.

    返回 EventDispatcher

    This EventDispatcher object.

    Register an event listener object with the EventDispatcher object so that the listener receives event notifications. This event listener responds once and is automatically removed after the first call.

    使用 EventDispatcher 对象注册指定类型的事件侦听器对象,以使侦听器能够接收事件通知,此侦听事件响应一次后自动移除。

  • 参数

    • type: string

      The type of event.

    • caller: any

      The execution scope of the event listener function.

    • listener: Function

      The listener function.

    • 可选args: any[]

      (Optional) The callback parameters of the event listener function.

    返回 EventDispatcher

    This EventDispatcher object.

    Register an event listener object with the EventDispatcher object so that the listener receives event notifications. This event listener responds once and is automatically removed after the first call.

    使用 EventDispatcher 对象注册指定类型的事件侦听器对象,以使侦听器能够接收事件通知,此侦听事件响应一次后自动移除。

  • 参数

    • url: string

      The URL of the resource.

    • data: any

      The content to be cached.

    • 可选type: string

      The type of the resource.

    返回 void

    Cache a resource.

    缓存资源。

  • 参数

    • url: string

      The URL of the resource.

    • 可选checkObj: any

      If provided, only clear the resource if it matches this object.

    返回 void

    Clear the cached resource at the specified URL.

    清理指定资源地址的缓存。

  • 参数

    • group: string

      The name of the group.

    返回 void

    Clean up resources based on grouping.

    根据分组清理资源。

  • 类型参数

    参数

    • url: string

      The URL of the prefab resource.

    返回 T

    The created node.

    Create nodes from a prefab resource.

    从预制资源创建节点。

  • 参数

    • url: string

      The resource address.

    • 可选type: string

    返回 any

    Returns the resource.

    Retrieve resources from the specified resource address.

    获取指定资源地址的资源。

  • 参数

    • url: string

      The URL to analyze.

    • 可选type: string

      Optional type specification.

    返回 URLInfo

    URLInfo object containing extension, main flag, typeId, and loaderType.

    Get URL information based on the provided URL and optional type.

    根据提供的URL和可选类型获取URL信息。

  • 参数

    • exts: string[]

      Extensions

    • cls: new () => IResourceLoader

      Loader class

    • 可选type: string

      Type identifier. If this kind of resource needs to support identification without extension, or if one extension corresponds to multiple resource types, specifying the type parameter is the best practice.

    • 可选hotReloadable: boolean

      Whether to support hot reload

    返回 void

    Register a resource loader.

    注册一种资源装载器。

  • 参数

    • url: string

      The URL of the resource.

    • group: string

      The name of the group.

    返回 void

    Set the resource group.

    设置资源分组。

  • 参数

    • msg: string

      The warning message to log.

    • 可选err: any

      Optional error object to include in the warning.

    返回 void

    Log a warning message, optionally including an error object.

    记录警告消息,可选择包含错误对象。

  • 参数

    • url: string

      The URL of the resource that failed to load.

    • 可选err: any

      Optional error object or message.

    • 可选initiatorUrl: string

      Optional URL of the resource that initiated the load.

    返回 void

    Log a warning about a failed resource load, optionally including the initiator URL.

    记录资源加载失败的警告,可选择包含启动器URL。