mirror of https://github.com/axmolengine/axmol.git
34 lines
859 B
Lua
34 lines
859 B
Lua
|
|
--------------------------------
|
|
-- @module EaseInOut
|
|
-- @extend EaseRateAction
|
|
-- @parent_module cc
|
|
|
|
--------------------------------
|
|
-- Creates the action with the inner action and the rate parameter
|
|
-- @function [parent=#EaseInOut] create
|
|
-- @param self
|
|
-- @param #cc.ActionInterval action
|
|
-- @param #float rate
|
|
-- @return EaseInOut#EaseInOut ret (return value: cc.EaseInOut)
|
|
|
|
--------------------------------
|
|
--
|
|
-- @function [parent=#EaseInOut] clone
|
|
-- @param self
|
|
-- @return EaseInOut#EaseInOut ret (return value: cc.EaseInOut)
|
|
|
|
--------------------------------
|
|
--
|
|
-- @function [parent=#EaseInOut] update
|
|
-- @param self
|
|
-- @param #float time
|
|
|
|
--------------------------------
|
|
--
|
|
-- @function [parent=#EaseInOut] reverse
|
|
-- @param self
|
|
-- @return EaseInOut#EaseInOut ret (return value: cc.EaseInOut)
|
|
|
|
return nil
|