mirror of https://github.com/axmolengine/axmol.git
36 lines
1.0 KiB
Lua
36 lines
1.0 KiB
Lua
|
|
--------------------------------
|
|
-- @module EaseSineOut
|
|
-- @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 EaseSineOut action. If creation failed, return nil.
|
|
-- @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)
|
|
|
|
--------------------------------
|
|
--
|
|
-- @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
|