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