mirror of https://github.com/axmolengine/axmol.git
75 lines
2.2 KiB
Lua
75 lines
2.2 KiB
Lua
|
|
--------------------------------
|
|
-- @module ProgressTimer
|
|
--------------------------------
|
|
-- @function [parent=#ProgressTimer] isReverseDirection
|
|
-- @param self
|
|
-- @return bool#bool ret (return value: bool)
|
|
|
|
--------------------------------
|
|
-- @function [parent=#ProgressTimer] setBarChangeRate
|
|
-- @param self
|
|
-- @param #point_table point
|
|
|
|
--------------------------------
|
|
-- @function [parent=#ProgressTimer] getPercentage
|
|
-- @param self
|
|
-- @return float#float ret (return value: float)
|
|
|
|
--------------------------------
|
|
-- @function [parent=#ProgressTimer] setSprite
|
|
-- @param self
|
|
-- @param #cc.Sprite sprite
|
|
|
|
--------------------------------
|
|
-- @function [parent=#ProgressTimer] getType
|
|
-- @param self
|
|
-- @return ProgressTimer::Type#ProgressTimer::Type ret (return value: cc.ProgressTimer::Type)
|
|
|
|
--------------------------------
|
|
-- @function [parent=#ProgressTimer] getSprite
|
|
-- @param self
|
|
-- @return Sprite#Sprite ret (return value: cc.Sprite)
|
|
|
|
--------------------------------
|
|
-- @function [parent=#ProgressTimer] setMidpoint
|
|
-- @param self
|
|
-- @param #point_table point
|
|
|
|
--------------------------------
|
|
-- @function [parent=#ProgressTimer] getBarChangeRate
|
|
-- @param self
|
|
-- @return point_table#point_table ret (return value: point_table)
|
|
|
|
--------------------------------
|
|
-- overload function: setReverseDirection(bool)
|
|
--
|
|
-- overload function: setReverseDirection(bool)
|
|
--
|
|
-- @function [parent=#ProgressTimer] setReverseDirection
|
|
-- @param self
|
|
-- @param #bool bool
|
|
|
|
--------------------------------
|
|
-- @function [parent=#ProgressTimer] getMidpoint
|
|
-- @param self
|
|
-- @return point_table#point_table ret (return value: point_table)
|
|
|
|
--------------------------------
|
|
-- @function [parent=#ProgressTimer] setPercentage
|
|
-- @param self
|
|
-- @param #float float
|
|
|
|
--------------------------------
|
|
-- @function [parent=#ProgressTimer] setType
|
|
-- @param self
|
|
-- @param #cc.ProgressTimer::Type type
|
|
|
|
--------------------------------
|
|
-- @function [parent=#ProgressTimer] create
|
|
-- @param self
|
|
-- @param #cc.Sprite sprite
|
|
-- @return ProgressTimer#ProgressTimer ret (return value: cc.ProgressTimer)
|
|
|
|
return nil
|