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