summaryrefslogtreecommitdiff
path: root/meta/3rd/Cocos4.0/library/cc/Action.lua
diff options
context:
space:
mode:
Diffstat (limited to 'meta/3rd/Cocos4.0/library/cc/Action.lua')
m---------meta/3rd/Cocos4.00
-rw-r--r--meta/3rd/Cocos4.0/library/cc/Action.lua84
2 files changed, 0 insertions, 84 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/Action.lua b/meta/3rd/Cocos4.0/library/cc/Action.lua
deleted file mode 100644
index 3c41651f..00000000
--- a/meta/3rd/Cocos4.0/library/cc/Action.lua
+++ /dev/null
@@ -1,84 +0,0 @@
----@meta
-
----@class cc.Action :cc.Ref
-local Action={ }
-cc.Action=Action
-
-
-
-
----* Called before the action start. It will also set the target. <br>
----* param target A certain target.
----@param target cc.Node
----@return self
-function Action:startWithTarget (target) end
----* Set the original target, since target can be nil.<br>
----* Is the target that were used to run the action. Unless you are doing something complex, like ActionManager, you should NOT call this method.<br>
----* The target is 'assigned', it is not 'retained'.<br>
----* since v0.8.2<br>
----* param originalTarget Is 'assigned', it is not 'retained'.
----@param originalTarget cc.Node
----@return self
-function Action:setOriginalTarget (originalTarget) end
----* Returns a clone of action.<br>
----* return A clone action.
----@return self
-function Action:clone () end
----* Return a original Target. <br>
----* return A original Target.
----@return cc.Node
-function Action:getOriginalTarget () end
----* Called after the action has finished. It will set the 'target' to nil.<br>
----* IMPORTANT: You should never call "Action::stop()" manually. Instead, use: "target->stopAction(action);".
----@return self
-function Action:stop () end
----* Called once per frame. time a value between 0 and 1.<br>
----* For example:<br>
----* - 0 Means that the action just started.<br>
----* - 0.5 Means that the action is in the middle.<br>
----* - 1 Means that the action is over.<br>
----* param time A value between 0 and 1.
----@param time float
----@return self
-function Action:update (time) end
----* Return certain target.<br>
----* return A certain target.
----@return cc.Node
-function Action:getTarget () end
----* Returns a flag field that is used to group the actions easily.<br>
----* return A tag.
----@return unsigned_int
-function Action:getFlags () end
----* Called every frame with it's delta time, dt in seconds. DON'T override unless you know what you are doing. <br>
----* param dt In seconds.
----@param dt float
----@return self
-function Action:step (dt) end
----* Changes the tag that is used to identify the action easily. <br>
----* param tag Used to identify the action easily.
----@param tag int
----@return self
-function Action:setTag (tag) end
----* Changes the flag field that is used to group the actions easily.<br>
----* param flags Used to group the actions easily.
----@param flags unsigned_int
----@return self
-function Action:setFlags (flags) end
----* Returns a tag that is used to identify the action easily. <br>
----* return A tag.
----@return int
-function Action:getTag () end
----* The action will modify the target properties. <br>
----* param target A certain target.
----@param target cc.Node
----@return self
-function Action:setTarget (target) end
----* Return true if the action has finished. <br>
----* return Is true if the action has finished.
----@return boolean
-function Action:isDone () end
----* Returns a new action that performs the exact reverse of the action. <br>
----* return A new action that performs the exact reverse of the action.<br>
----* js NA
----@return self
-function Action:reverse () end \ No newline at end of file