mirror of https://github.com/axmolengine/axmol.git
42 lines
1.3 KiB
Lua
42 lines
1.3 KiB
Lua
|
|
--------------------------------
|
|
-- @module EaseExponentialOut
|
|
-- @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 EaseExponentialOut action. If creation failed, return nil.
|
|
-- @function [parent=#EaseExponentialOut] create
|
|
-- @param self
|
|
-- @param #cc.ActionInterval action
|
|
-- @return EaseExponentialOut#EaseExponentialOut ret (return value: cc.EaseExponentialOut)
|
|
|
|
--------------------------------
|
|
--
|
|
-- @function [parent=#EaseExponentialOut] clone
|
|
-- @param self
|
|
-- @return EaseExponentialOut#EaseExponentialOut ret (return value: cc.EaseExponentialOut)
|
|
|
|
--------------------------------
|
|
--
|
|
-- @function [parent=#EaseExponentialOut] update
|
|
-- @param self
|
|
-- @param #float time
|
|
-- @return EaseExponentialOut#EaseExponentialOut self (return value: cc.EaseExponentialOut)
|
|
|
|
--------------------------------
|
|
--
|
|
-- @function [parent=#EaseExponentialOut] reverse
|
|
-- @param self
|
|
-- @return ActionEase#ActionEase ret (return value: cc.ActionEase)
|
|
|
|
--------------------------------
|
|
--
|
|
-- @function [parent=#EaseExponentialOut] EaseExponentialOut
|
|
-- @param self
|
|
-- @return EaseExponentialOut#EaseExponentialOut self (return value: cc.EaseExponentialOut)
|
|
|
|
return nil
|