blob: 1163b57b6bb4fac1540285bd82a88b6c81f72b05 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
---@class cc.Sprite3DCache
local Sprite3DCache={ }
cc.Sprite3DCache=Sprite3DCache
---* remove the SpriteData from Sprite3D by given the specified key
---@param key string
---@return self
function Sprite3DCache:removeSprite3DData (key) end
---* remove all the SpriteData from Sprite3D
---@return self
function Sprite3DCache:removeAllSprite3DData () end
---*
---@return self
function Sprite3DCache:destroyInstance () end
---* get & destroy
---@return self
function Sprite3DCache:getInstance () end
---*
---@return self
function Sprite3DCache:Sprite3DCache () end
|