mirror of https://github.com/axmolengine/axmol.git
44 lines
1.1 KiB
Lua
44 lines
1.1 KiB
Lua
|
|
--------------------------------
|
|
-- @module ActionTween
|
|
|
|
--------------------------------
|
|
-- @function [parent=#ActionTween] initWithDuration
|
|
-- @param self
|
|
-- @param #float float
|
|
-- @param #string str
|
|
-- @param #float float
|
|
-- @param #float float
|
|
-- @return bool#bool ret (return value: bool)
|
|
|
|
--------------------------------
|
|
-- @function [parent=#ActionTween] create
|
|
-- @param self
|
|
-- @param #float float
|
|
-- @param #string str
|
|
-- @param #float float
|
|
-- @param #float float
|
|
-- @return ActionTween#ActionTween ret (return value: cc.ActionTween)
|
|
|
|
--------------------------------
|
|
-- @function [parent=#ActionTween] startWithTarget
|
|
-- @param self
|
|
-- @param #cc.Node node
|
|
|
|
--------------------------------
|
|
-- @function [parent=#ActionTween] clone
|
|
-- @param self
|
|
-- @return ActionTween#ActionTween ret (return value: cc.ActionTween)
|
|
|
|
--------------------------------
|
|
-- @function [parent=#ActionTween] update
|
|
-- @param self
|
|
-- @param #float float
|
|
|
|
--------------------------------
|
|
-- @function [parent=#ActionTween] reverse
|
|
-- @param self
|
|
-- @return ActionTween#ActionTween ret (return value: cc.ActionTween)
|
|
|
|
return nil
|