mirror of https://github.com/axmolengine/axmol.git
47 lines
1.3 KiB
Lua
47 lines
1.3 KiB
Lua
|
|
--------------------------------
|
|
-- @module ActionEase
|
|
-- @extend ActionInterval
|
|
-- @parent_module cc
|
|
|
|
--------------------------------
|
|
-- brief Get the pointer of the inner action.<br>
|
|
-- return The pointer of the inner action.
|
|
-- @function [parent=#ActionEase] getInnerAction
|
|
-- @param self
|
|
-- @return ActionInterval#ActionInterval ret (return value: cc.ActionInterval)
|
|
|
|
--------------------------------
|
|
--
|
|
-- @function [parent=#ActionEase] startWithTarget
|
|
-- @param self
|
|
-- @param #cc.Node target
|
|
-- @return ActionEase#ActionEase self (return value: cc.ActionEase)
|
|
|
|
--------------------------------
|
|
--
|
|
-- @function [parent=#ActionEase] clone
|
|
-- @param self
|
|
-- @return ActionEase#ActionEase ret (return value: cc.ActionEase)
|
|
|
|
--------------------------------
|
|
--
|
|
-- @function [parent=#ActionEase] stop
|
|
-- @param self
|
|
-- @return ActionEase#ActionEase self (return value: cc.ActionEase)
|
|
|
|
--------------------------------
|
|
--
|
|
-- @function [parent=#ActionEase] reverse
|
|
-- @param self
|
|
-- @return ActionEase#ActionEase ret (return value: cc.ActionEase)
|
|
|
|
--------------------------------
|
|
--
|
|
-- @function [parent=#ActionEase] update
|
|
-- @param self
|
|
-- @param #float time
|
|
-- @return ActionEase#ActionEase self (return value: cc.ActionEase)
|
|
|
|
return nil
|