summaryrefslogtreecommitdiff
path: root/meta/3rd/Cocos4.0/cc.AnimationCache.lua
diff options
context:
space:
mode:
author最萌小汐 <sumneko@hotmail.com>2021-02-22 21:05:36 +0800
committer最萌小汐 <sumneko@hotmail.com>2021-02-22 21:05:36 +0800
commit52097b6ee7cc8f5a770eb851902560b5b8592218 (patch)
tree6dcbb53ac0104912e950747a37aac6b25039e862 /meta/3rd/Cocos4.0/cc.AnimationCache.lua
parent6839cd530c53387df4d5db61f0cb2e5ed1a87298 (diff)
downloadlua-language-server-52097b6ee7cc8f5a770eb851902560b5b8592218.zip
add meta/3rd with acknowledgement
Diffstat (limited to 'meta/3rd/Cocos4.0/cc.AnimationCache.lua')
-rw-r--r--meta/3rd/Cocos4.0/cc.AnimationCache.lua60
1 files changed, 60 insertions, 0 deletions
diff --git a/meta/3rd/Cocos4.0/cc.AnimationCache.lua b/meta/3rd/Cocos4.0/cc.AnimationCache.lua
new file mode 100644
index 00000000..a2651959
--- /dev/null
+++ b/meta/3rd/Cocos4.0/cc.AnimationCache.lua
@@ -0,0 +1,60 @@
+
+---@class cc.AnimationCache :cc.Ref
+local AnimationCache={ }
+cc.AnimationCache=AnimationCache
+
+
+
+
+---* Returns a Animation that was previously added.<br>
+---* If the name is not found it will return nil.<br>
+---* You should retain the returned copy if you are going to use it.<br>
+---* return A Animation that was previously added. If the name is not found it will return nil.
+---@param name string
+---@return cc.Animation
+function AnimationCache:getAnimation (name) end
+---* Adds a Animation with a name.<br>
+---* param animation An animation.<br>
+---* param name The name of animation.
+---@param animation cc.Animation
+---@param name string
+---@return self
+function AnimationCache:addAnimation (animation,name) end
+---*
+---@return boolean
+function AnimationCache:init () end
+---* Adds an animation from an NSDictionary.<br>
+---* Make sure that the frames were previously loaded in the SpriteFrameCache.<br>
+---* param dictionary An NSDictionary.<br>
+---* param plist The path of the relative file,it use to find the plist path for load SpriteFrames.<br>
+---* since v1.1<br>
+---* js NA
+---@param dictionary map_table
+---@param plist string
+---@return self
+function AnimationCache:addAnimationsWithDictionary (dictionary,plist) end
+---* Deletes a Animation from the cache.<br>
+---* param name The name of animation.
+---@param name string
+---@return self
+function AnimationCache:removeAnimation (name) end
+---* Adds an animation from a plist file.<br>
+---* Make sure that the frames were previously loaded in the SpriteFrameCache.<br>
+---* since v1.1<br>
+---* js addAnimations<br>
+---* lua addAnimations<br>
+---* param plist An animation from a plist file.
+---@param plist string
+---@return self
+function AnimationCache:addAnimationsWithFile (plist) end
+---* Purges the cache. It releases all the Animation objects and the shared instance.<br>
+---* js NA
+---@return self
+function AnimationCache:destroyInstance () end
+---* Returns the shared instance of the Animation cache <br>
+---* js NA
+---@return self
+function AnimationCache:getInstance () end
+---* js ctor
+---@return self
+function AnimationCache:AnimationCache () end \ No newline at end of file