mirror of https://github.com/axmolengine/axmol.git
42 lines
1.4 KiB
Lua
42 lines
1.4 KiB
Lua
|
|
--------------------------------
|
|
-- @module EaseQuarticActionOut
|
|
-- @extend ActionEase
|
|
-- @parent_module cc
|
|
|
|
--------------------------------
|
|
-- brief Create the action with the inner action.<br>
|
|
-- param action The pointer of the inner action.<br>
|
|
-- return A pointer of EaseQuarticActionOut action. If creation failed, return nil.
|
|
-- @function [parent=#EaseQuarticActionOut] create
|
|
-- @param self
|
|
-- @param #cc.ActionInterval action
|
|
-- @return EaseQuarticActionOut#EaseQuarticActionOut ret (return value: cc.EaseQuarticActionOut)
|
|
|
|
--------------------------------
|
|
--
|
|
-- @function [parent=#EaseQuarticActionOut] clone
|
|
-- @param self
|
|
-- @return EaseQuarticActionOut#EaseQuarticActionOut ret (return value: cc.EaseQuarticActionOut)
|
|
|
|
--------------------------------
|
|
--
|
|
-- @function [parent=#EaseQuarticActionOut] update
|
|
-- @param self
|
|
-- @param #float time
|
|
-- @return EaseQuarticActionOut#EaseQuarticActionOut self (return value: cc.EaseQuarticActionOut)
|
|
|
|
--------------------------------
|
|
--
|
|
-- @function [parent=#EaseQuarticActionOut] reverse
|
|
-- @param self
|
|
-- @return EaseQuarticActionOut#EaseQuarticActionOut ret (return value: cc.EaseQuarticActionOut)
|
|
|
|
--------------------------------
|
|
--
|
|
-- @function [parent=#EaseQuarticActionOut] EaseQuarticActionOut
|
|
-- @param self
|
|
-- @return EaseQuarticActionOut#EaseQuarticActionOut self (return value: cc.EaseQuarticActionOut)
|
|
|
|
return nil
|