summaryrefslogtreecommitdiff
path: root/meta/3rd/Cocos4.0/library/cc/ActionTween.lua
diff options
context:
space:
mode:
Diffstat (limited to 'meta/3rd/Cocos4.0/library/cc/ActionTween.lua')
m---------meta/3rd/Cocos4.00
-rw-r--r--meta/3rd/Cocos4.0/library/cc/ActionTween.lua47
2 files changed, 0 insertions, 47 deletions
diff --git a/meta/3rd/Cocos4.0 b/meta/3rd/Cocos4.0
new file mode 160000
+Subproject c0b2259e0d367561fd4563ae114b029b4dfe3a8
diff --git a/meta/3rd/Cocos4.0/library/cc/ActionTween.lua b/meta/3rd/Cocos4.0/library/cc/ActionTween.lua
deleted file mode 100644
index 8ee28f6e..00000000
--- a/meta/3rd/Cocos4.0/library/cc/ActionTween.lua
+++ /dev/null
@@ -1,47 +0,0 @@
----@meta
-
----@class cc.ActionTween :cc.ActionInterval
-local ActionTween={ }
-cc.ActionTween=ActionTween
-
-
-
-
----* brief Initializes the action with the property name (key), and the from and to parameters.<br>
----* param duration The duration of the ActionTween. It's a value in seconds.<br>
----* param key The key of property which should be updated.<br>
----* param from The value of the specified property when the action begin.<br>
----* param to The value of the specified property when the action end.<br>
----* return If the initialization success, return true; otherwise, return false.
----@param duration float
----@param key string
----@param from float
----@param to float
----@return boolean
-function ActionTween:initWithDuration (duration,key,from,to) end
----* brief Create and initializes the action with the property name (key), and the from and to parameters.<br>
----* param duration The duration of the ActionTween. It's a value in seconds.<br>
----* param key The key of property which should be updated.<br>
----* param from The value of the specified property when the action begin.<br>
----* param to The value of the specified property when the action end.<br>
----* return If the creation success, return a pointer of ActionTween; otherwise, return nil.
----@param duration float
----@param key string
----@param from float
----@param to float
----@return self
-function ActionTween:create (duration,key,from,to) end
----*
----@param target cc.Node
----@return self
-function ActionTween:startWithTarget (target) end
----*
----@return self
-function ActionTween:clone () end
----*
----@param dt float
----@return self
-function ActionTween:update (dt) end
----*
----@return self
-function ActionTween:reverse () end \ No newline at end of file