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