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