mirror of https://github.com/axmolengine/axmol.git
40 lines
994 B
Lua
40 lines
994 B
Lua
|
|
--------------------------------
|
|
-- @module ProgressTo
|
|
-- @extend ActionInterval
|
|
-- @parent_module cc
|
|
|
|
--------------------------------
|
|
-- Creates and initializes with a duration and a percent
|
|
-- @function [parent=#ProgressTo] create
|
|
-- @param self
|
|
-- @param #float duration
|
|
-- @param #float percent
|
|
-- @return ProgressTo#ProgressTo ret (return value: cc.ProgressTo)
|
|
|
|
--------------------------------
|
|
--
|
|
-- @function [parent=#ProgressTo] startWithTarget
|
|
-- @param self
|
|
-- @param #cc.Node target
|
|
|
|
--------------------------------
|
|
--
|
|
-- @function [parent=#ProgressTo] clone
|
|
-- @param self
|
|
-- @return ProgressTo#ProgressTo ret (return value: cc.ProgressTo)
|
|
|
|
--------------------------------
|
|
--
|
|
-- @function [parent=#ProgressTo] reverse
|
|
-- @param self
|
|
-- @return ProgressTo#ProgressTo ret (return value: cc.ProgressTo)
|
|
|
|
--------------------------------
|
|
--
|
|
-- @function [parent=#ProgressTo] update
|
|
-- @param self
|
|
-- @param #float time
|
|
|
|
return nil
|