mirror of https://github.com/axmolengine/axmol.git
33 lines
890 B
Lua
33 lines
890 B
Lua
|
|
--------------------------------
|
|
-- @module EaseExponentialOut
|
|
-- @extend ActionEase
|
|
-- @parent_module cc
|
|
|
|
--------------------------------
|
|
-- creates the action
|
|
-- @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
|
|
|
|
--------------------------------
|
|
--
|
|
-- @function [parent=#EaseExponentialOut] reverse
|
|
-- @param self
|
|
-- @return ActionEase#ActionEase ret (return value: cc.ActionEase)
|
|
|
|
return nil
|