mirror of https://github.com/axmolengine/axmol.git
33 lines
879 B
Lua
33 lines
879 B
Lua
|
|
--------------------------------
|
|
-- @module EaseExponentialIn
|
|
-- @extend ActionEase
|
|
-- @parent_module cc
|
|
|
|
--------------------------------
|
|
-- creates the action
|
|
-- @function [parent=#EaseExponentialIn] create
|
|
-- @param self
|
|
-- @param #cc.ActionInterval action
|
|
-- @return EaseExponentialIn#EaseExponentialIn ret (return value: cc.EaseExponentialIn)
|
|
|
|
--------------------------------
|
|
--
|
|
-- @function [parent=#EaseExponentialIn] clone
|
|
-- @param self
|
|
-- @return EaseExponentialIn#EaseExponentialIn ret (return value: cc.EaseExponentialIn)
|
|
|
|
--------------------------------
|
|
--
|
|
-- @function [parent=#EaseExponentialIn] update
|
|
-- @param self
|
|
-- @param #float time
|
|
|
|
--------------------------------
|
|
--
|
|
-- @function [parent=#EaseExponentialIn] reverse
|
|
-- @param self
|
|
-- @return ActionEase#ActionEase ret (return value: cc.ActionEase)
|
|
|
|
return nil
|