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