summaryrefslogtreecommitdiff
path: root/meta/3rd/Cocos4.0/cc.AnimationCache.lua
diff options
context:
space:
mode:
author最萌小汐 <sumneko@hotmail.com>2021-07-05 20:51:43 +0800
committer最萌小汐 <sumneko@hotmail.com>2021-07-05 20:51:43 +0800
commit8fefb8f3e100976235dc83d6ae3785952d11c710 (patch)
tree459117e6cecc70824273c4d32285cb6eec468098 /meta/3rd/Cocos4.0/cc.AnimationCache.lua
parentb6c18d05410fd4ca209f9c34e0992caf40cf3701 (diff)
downloadlua-language-server-8fefb8f3e100976235dc83d6ae3785952d11c710.zip
cleanup
Diffstat (limited to 'meta/3rd/Cocos4.0/cc.AnimationCache.lua')
-rw-r--r--meta/3rd/Cocos4.0/cc.AnimationCache.lua61
1 files changed, 0 insertions, 61 deletions
diff --git a/meta/3rd/Cocos4.0/cc.AnimationCache.lua b/meta/3rd/Cocos4.0/cc.AnimationCache.lua
deleted file mode 100644
index 14469d9e..00000000
--- a/meta/3rd/Cocos4.0/cc.AnimationCache.lua
+++ /dev/null
@@ -1,61 +0,0 @@
----@meta
-
----@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