mirror of https://github.com/axmolengine/axmol.git
111 lines
3.1 KiB
Lua
111 lines
3.1 KiB
Lua
|
|
--------------------------------
|
|
-- @module ControlHuePicker
|
|
-- @extend Control
|
|
-- @parent_module cc
|
|
|
|
--------------------------------
|
|
--
|
|
-- @function [parent=#ControlHuePicker] initWithTargetAndPos
|
|
-- @param self
|
|
-- @param #cc.Node target
|
|
-- @param #vec2_table pos
|
|
-- @return bool#bool ret (return value: bool)
|
|
|
|
--------------------------------
|
|
--
|
|
-- @function [parent=#ControlHuePicker] setHue
|
|
-- @param self
|
|
-- @param #float val
|
|
-- @return ControlHuePicker#ControlHuePicker self (return value: cc.ControlHuePicker)
|
|
|
|
--------------------------------
|
|
--
|
|
-- @function [parent=#ControlHuePicker] getStartPos
|
|
-- @param self
|
|
-- @return vec2_table#vec2_table ret (return value: vec2_table)
|
|
|
|
--------------------------------
|
|
--
|
|
-- @function [parent=#ControlHuePicker] getHue
|
|
-- @param self
|
|
-- @return float#float ret (return value: float)
|
|
|
|
--------------------------------
|
|
--
|
|
-- @function [parent=#ControlHuePicker] getSlider
|
|
-- @param self
|
|
-- @return Sprite#Sprite ret (return value: cc.Sprite)
|
|
|
|
--------------------------------
|
|
--
|
|
-- @function [parent=#ControlHuePicker] setBackground
|
|
-- @param self
|
|
-- @param #cc.Sprite var
|
|
-- @return ControlHuePicker#ControlHuePicker self (return value: cc.ControlHuePicker)
|
|
|
|
--------------------------------
|
|
--
|
|
-- @function [parent=#ControlHuePicker] setHuePercentage
|
|
-- @param self
|
|
-- @param #float val
|
|
-- @return ControlHuePicker#ControlHuePicker self (return value: cc.ControlHuePicker)
|
|
|
|
--------------------------------
|
|
--
|
|
-- @function [parent=#ControlHuePicker] getBackground
|
|
-- @param self
|
|
-- @return Sprite#Sprite ret (return value: cc.Sprite)
|
|
|
|
--------------------------------
|
|
--
|
|
-- @function [parent=#ControlHuePicker] getHuePercentage
|
|
-- @param self
|
|
-- @return float#float ret (return value: float)
|
|
|
|
--------------------------------
|
|
--
|
|
-- @function [parent=#ControlHuePicker] setSlider
|
|
-- @param self
|
|
-- @param #cc.Sprite var
|
|
-- @return ControlHuePicker#ControlHuePicker self (return value: cc.ControlHuePicker)
|
|
|
|
--------------------------------
|
|
--
|
|
-- @function [parent=#ControlHuePicker] create
|
|
-- @param self
|
|
-- @param #cc.Node target
|
|
-- @param #vec2_table pos
|
|
-- @return ControlHuePicker#ControlHuePicker ret (return value: cc.ControlHuePicker)
|
|
|
|
--------------------------------
|
|
--
|
|
-- @function [parent=#ControlHuePicker] setEnabled
|
|
-- @param self
|
|
-- @param #bool enabled
|
|
-- @return ControlHuePicker#ControlHuePicker self (return value: cc.ControlHuePicker)
|
|
|
|
--------------------------------
|
|
--
|
|
-- @function [parent=#ControlHuePicker] onTouchMoved
|
|
-- @param self
|
|
-- @param #cc.Touch pTouch
|
|
-- @param #cc.Event pEvent
|
|
-- @return ControlHuePicker#ControlHuePicker self (return value: cc.ControlHuePicker)
|
|
|
|
--------------------------------
|
|
--
|
|
-- @function [parent=#ControlHuePicker] onTouchBegan
|
|
-- @param self
|
|
-- @param #cc.Touch touch
|
|
-- @param #cc.Event pEvent
|
|
-- @return bool#bool ret (return value: bool)
|
|
|
|
--------------------------------
|
|
-- js ctor
|
|
-- @function [parent=#ControlHuePicker] ControlHuePicker
|
|
-- @param self
|
|
-- @return ControlHuePicker#ControlHuePicker self (return value: cc.ControlHuePicker)
|
|
|
|
return nil
|