blob: 3b346ec5a57efa634f1eefb15de114503118e136 (
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
25
|
---@meta
---@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
|