mirror of https://github.com/axmolengine/axmol.git
34 lines
1.0 KiB
Lua
34 lines
1.0 KiB
Lua
|
|
--------------------------------
|
|
-- @module EaseCubicActionInOut
|
|
-- @extend ActionEase
|
|
-- @parent_module cc
|
|
|
|
--------------------------------
|
|
-- creates the action
|
|
-- @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)
|
|
|
|
--------------------------------
|
|
-- param time in seconds
|
|
-- @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
|