mirror of https://github.com/axmolengine/axmol.git
116 lines
3.6 KiB
Lua
116 lines
3.6 KiB
Lua
|
|
||
|
--------------------------------
|
||
|
-- @module ControlPotentiometer
|
||
|
--------------------------------
|
||
|
-- @function [parent=#ControlPotentiometer] setPreviousLocation
|
||
|
-- @param self
|
||
|
-- @param #point_table point
|
||
|
|
||
|
--------------------------------
|
||
|
-- @function [parent=#ControlPotentiometer] setValue
|
||
|
-- @param self
|
||
|
-- @param #float float
|
||
|
|
||
|
--------------------------------
|
||
|
-- @function [parent=#ControlPotentiometer] getProgressTimer
|
||
|
-- @param self
|
||
|
-- @return ProgressTimer#ProgressTimer ret (return value: cc.ProgressTimer)
|
||
|
|
||
|
--------------------------------
|
||
|
-- @function [parent=#ControlPotentiometer] getMaximumValue
|
||
|
-- @param self
|
||
|
-- @return float#float ret (return value: float)
|
||
|
|
||
|
--------------------------------
|
||
|
-- @function [parent=#ControlPotentiometer] angleInDegreesBetweenLineFromPoint_toPoint_toLineFromPoint_toPoint
|
||
|
-- @param self
|
||
|
-- @param #point_table point
|
||
|
-- @param #point_table point
|
||
|
-- @param #point_table point
|
||
|
-- @param #point_table point
|
||
|
-- @return float#float ret (return value: float)
|
||
|
|
||
|
--------------------------------
|
||
|
-- @function [parent=#ControlPotentiometer] potentiometerBegan
|
||
|
-- @param self
|
||
|
-- @param #point_table point
|
||
|
|
||
|
--------------------------------
|
||
|
-- @function [parent=#ControlPotentiometer] setMaximumValue
|
||
|
-- @param self
|
||
|
-- @param #float float
|
||
|
|
||
|
--------------------------------
|
||
|
-- @function [parent=#ControlPotentiometer] getMinimumValue
|
||
|
-- @param self
|
||
|
-- @return float#float ret (return value: float)
|
||
|
|
||
|
--------------------------------
|
||
|
-- @function [parent=#ControlPotentiometer] setThumbSprite
|
||
|
-- @param self
|
||
|
-- @param #cc.Sprite sprite
|
||
|
|
||
|
--------------------------------
|
||
|
-- @function [parent=#ControlPotentiometer] getValue
|
||
|
-- @param self
|
||
|
-- @return float#float ret (return value: float)
|
||
|
|
||
|
--------------------------------
|
||
|
-- @function [parent=#ControlPotentiometer] getPreviousLocation
|
||
|
-- @param self
|
||
|
-- @return point_table#point_table ret (return value: point_table)
|
||
|
|
||
|
--------------------------------
|
||
|
-- @function [parent=#ControlPotentiometer] distanceBetweenPointAndPoint
|
||
|
-- @param self
|
||
|
-- @param #point_table point
|
||
|
-- @param #point_table point
|
||
|
-- @return float#float ret (return value: float)
|
||
|
|
||
|
--------------------------------
|
||
|
-- @function [parent=#ControlPotentiometer] potentiometerEnded
|
||
|
-- @param self
|
||
|
-- @param #point_table point
|
||
|
|
||
|
--------------------------------
|
||
|
-- @function [parent=#ControlPotentiometer] setProgressTimer
|
||
|
-- @param self
|
||
|
-- @param #cc.ProgressTimer progresstimer
|
||
|
|
||
|
--------------------------------
|
||
|
-- @function [parent=#ControlPotentiometer] setMinimumValue
|
||
|
-- @param self
|
||
|
-- @param #float float
|
||
|
|
||
|
--------------------------------
|
||
|
-- @function [parent=#ControlPotentiometer] getThumbSprite
|
||
|
-- @param self
|
||
|
-- @return Sprite#Sprite ret (return value: cc.Sprite)
|
||
|
|
||
|
--------------------------------
|
||
|
-- @function [parent=#ControlPotentiometer] initWithTrackSprite_ProgressTimer_ThumbSprite
|
||
|
-- @param self
|
||
|
-- @param #cc.Sprite sprite
|
||
|
-- @param #cc.ProgressTimer progresstimer
|
||
|
-- @param #cc.Sprite sprite
|
||
|
-- @return bool#bool ret (return value: bool)
|
||
|
|
||
|
--------------------------------
|
||
|
-- @function [parent=#ControlPotentiometer] potentiometerMoved
|
||
|
-- @param self
|
||
|
-- @param #point_table point
|
||
|
|
||
|
--------------------------------
|
||
|
-- @function [parent=#ControlPotentiometer] create
|
||
|
-- @param self
|
||
|
-- @param #char char
|
||
|
-- @param #char char
|
||
|
-- @param #char char
|
||
|
-- @return ControlPotentiometer#ControlPotentiometer ret (return value: cc.ControlPotentiometer)
|
||
|
|
||
|
--------------------------------
|
||
|
-- @function [parent=#ControlPotentiometer] ControlPotentiometer
|
||
|
-- @param self
|
||
|
|
||
|
return nil
|