代码拉取完成,页面将自动刷新
# Cache
**Description:**
  A singleton cache instance for various game resources.
## Cache.ResourceType
**Type:** Enumeration.
**Description:**
  An enum that defines the various types of resources that can be loaded into the cache.
**Signature:**
```tl
enum ResourceType
"Bone"
"Spine"
"Texture"
"SVG"
"Clip"
"Frame"
"Model"
"Particle"
"Shader"
"Font"
"Sound"
end
```
## Cache.ResourceTypeSafeUnload
**Type:** Enumeration.
**Description:**
  An enum that defines the various types of resources that can be safely unloaded from the cache.
**Signature:**
```tl
enum ResourceTypeSafeUnload
"Texture"
"SVG"
"Clip"
"Frame"
"Model"
"Particle"
"Shader"
"Font"
"Sound"
"Spine"
end
```
## load
**Type:** Function.
**Description:**
  Loads a file into the cache with a blocking operation.
**Signature:**
```tl
load: function(self: Cache, filename: string): boolean
```
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
| filename | string | The name of the file to load. |
**Returns:**
| Return Type | Description |
| --- | --- |
| boolean | True if the file was loaded successfully, false otherwise. |
## loadAsync
**Type:** Function.
**Description:**
  Loads a file into the cache asynchronously.
**Signature:**
```tl
loadAsync: function(self: Cache, filename: string | {string}, handler?: function(progress: number)): boolean
```
**Usage:**
```tl
thread(function()
local success = Cache:loadAsync("file.png")
if success then
print("Game resource is loaded into memory")
end
end)
```
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
| filenames | string | \{string} | The name of the file(s) to load. |
| handler | function | [optional] A callback function that is invoked when the file is loaded. The progress parameter is a number between 0 and 1. |
**Returns:**
| Return Type | Description |
| --- | --- |
| boolean | True if the files were loaded successfully, false otherwise. |
## update
**Type:** Function.
**Description:**
  Updates the content of a file loaded in the cache.
If the item of filename does not exist in the cache, a new file content will be added into the cache.
**Signature:**
```tl
update: function(self: Cache, filename: string, content: string)
```
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
| filename | string | The name of the file to update. |
| content | string | The new content for the file. |
## update
**Type:** Function.
**Description:**
  Updates the texture object of the specific filename loaded in the cache.
If the texture object of filename does not exist in the cache, it will be added into the cache.
**Signature:**
```tl
update: function(self: Cache, filename: string, texture: Texture2D)
```
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
| filename | string | The name of the texture to update. |
| texture | Texture2D | The new texture object for the file. |
## unload
**Type:** Function.
**Description:**
  Unloads a resource from the cache.
**Signature:**
```tl
unload: function(self: Cache, type: ResourceTypeSafeUnload): boolean
```
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
| type | ResourceTypeSafeUnload | The type of resource to unload. |
**Returns:**
| Return Type | Description |
| --- | --- |
| boolean | True if the resource was unloaded successfully, false otherwise. |
## unload
**Type:** Function.
**Description:**
  Unloads a resource from the cache.
**Signature:**
```tl
unload: function(self: Cache, filename: string): boolean
```
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
| filename | string | The name of the file to unload. |
**Returns:**
| Return Type | Description |
| --- | --- |
| boolean | True if the resource was unloaded successfully, false otherwise. |
## unload
**Type:** Function.
**Description:**
  Unloads all resources from the cache.
**Signature:**
```tl
unload: function(self: Cache)
```
## removeUnused
**Type:** Function.
**Description:**
  Removes all unused resources (not being referenced) of the given type from the cache.
**Signature:**
```tl
removeUnused: function(self: Cache, type: ResourceType)
```
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
| type | ResourceType | The type of resource to remove. |
## removeUnused
**Type:** Function.
**Description:**
  Removes all unused resources (not being referenced) from the cache.
**Signature:**
```tl
removeUnused: function(self: Cache)
```
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。