静态
ANIMATIONCLIP静态
ATLAS静态
BUFFER静态
downloader静态
只读
ext静态
FONT静态
group静态
HIERARCHY静态
只读
hot静态
IMAGE静态
JSON静态
loaded静态
Loader静态
Loader静态
Loader静态
Loader静态
MATERIAL静态
MESH静态
pre静态
SOUND静态
SPINE静态
TERRAINHEIGHTDATA静态
TERRAINRES静态
TEXT静态
TEXTURE2D静态
TEXTURE2DARRAY静态
TEXTURECUBE静态
TTF静态
只读
type静态
VIDEO静态
XMLThe URL of the atlas or texture, e.g., "res/atlas/comp.atlas" or "hall/bg.jpg".
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.
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.
True if there are listeners for this event type, false otherwise.
The URL to download from.
The expected content type of the resource.
可选
onProgress: ProgressCallbackOptional callback for progress updates.
可选
options: Readonly<ILoadOptions>Optional loading options.
A promise that resolves with the downloaded content. If the download fails, the promise resolves with null.
The URL or array of URLs of the resource(s) to load.
可选
type: stringThe type of resource. For example: Loader.IMAGE.
可选
onProgress: ProgressCallbackThe progress callback function.
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.
The URL or array of URLs of the resource(s) to load.
可选
options: Readonly<ILoadOptions>The loading options.
可选
onProgress: ProgressCallbackThe progress callback function.
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.
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: HandlerThe 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: HandlerThe progress callback. The callback parameter is the current resource loading progress (0-1).
可选
type: stringThe resource type. For example: Loader.IMAGE.
可选
priority: numberThe loading priority. Higher numbers indicate higher priority. Default is 0.
可选
cache: booleanWhether to cache the resource. Default is true.
可选
group: stringThe group name for resource management.
可选
ignoreCache: booleanWhether to ignore the cache. Default is false.
可选
useWorkerLoader: booleanWhether to use worker loading (only for IMAGE and ATLAS types, and when browser supports it). Default is false.
A Promise object.
The path of the sub-package in mini-game.
可选
onProgress: ProgressCallbackThe callback for loading progress.
A Promise that resolves when the package is loaded.
The path of the sub-package.
可选
remoteUrl: stringIf the package is a remote package, provide the remote resource server address, e.g., "http://cdn.com/"
可选
onProgress: ProgressCallbackThe callback for loading progress.
A Promise that resolves when the package is loaded.
The type of event.
The listener function.
This EventDispatcher object.
The type of event.
The execution scope of the event listener function.
可选
listener: FunctionThe listener function.
可选
args: any[]This EventDispatcher object.
可选
type: string(Optional) The type of event. If the value is null, all types of listeners on this object are removed.
This EventDispatcher object.
The type of event.
The listener function.
This EventDispatcher object.
The type of event.
The execution scope of the event listener function.
The listener function.
可选
args: any[](Optional) The callback parameters of the event listener function.
This EventDispatcher object.
The type of event.
The listener function.
This EventDispatcher object.
The type of event.
The execution scope of the event listener function.
The listener function.
可选
args: any[](Optional) The callback parameters of the event listener function.
This EventDispatcher object.
静态
cache静态
clear静态
clear静态
create静态
get静态
getThe URL of the BaseTexture resource.
The BaseTexture resource.
静态
get静态
get静态
getURLInfo静态
registerExtensions
Loader class
可选
type: stringType 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: booleanWhether to support hot reload
静态
set静态
warn静态
warn
En
The
Loader
class can be used to load resources such as text, JSON, XML, binary, images, etc.Zh
Loader
类可用来加载文本、JSON、XML、二进制、图像等资源。