diff options
author | 最萌小汐 <sumneko@hotmail.com> | 2022-08-13 01:23:32 +0800 |
---|---|---|
committer | 最萌小汐 <sumneko@hotmail.com> | 2022-08-13 01:23:32 +0800 |
commit | 04fa96b7c0abba4d7cca03ed12ff3b65b3912e01 (patch) | |
tree | c0c8a2c0e92d0580280f838ba475875c7f82a73c /meta/3rd/Cocos4.0/library/cc.ControlPotentiometer.lua | |
parent | c30c5c2e267f6917600afe4f19e1e0d674bad9c6 (diff) | |
download | lua-language-server-04fa96b7c0abba4d7cca03ed12ff3b65b3912e01.zip |
fix #1431
Diffstat (limited to 'meta/3rd/Cocos4.0/library/cc.ControlPotentiometer.lua')
-rw-r--r-- | meta/3rd/Cocos4.0/library/cc.ControlPotentiometer.lua | 116 |
1 files changed, 0 insertions, 116 deletions
diff --git a/meta/3rd/Cocos4.0/library/cc.ControlPotentiometer.lua b/meta/3rd/Cocos4.0/library/cc.ControlPotentiometer.lua deleted file mode 100644 index 21dcac5e..00000000 --- a/meta/3rd/Cocos4.0/library/cc.ControlPotentiometer.lua +++ /dev/null @@ -1,116 +0,0 @@ ----@meta - ----@class cc.ControlPotentiometer :cc.Control -local ControlPotentiometer={ } -cc.ControlPotentiometer=ControlPotentiometer - - - - ----* ----@param var vec2_table ----@return self -function ControlPotentiometer:setPreviousLocation (var) end ----* ----@param value float ----@return self -function ControlPotentiometer:setValue (value) end ----* ----@return cc.ProgressTimer -function ControlPotentiometer:getProgressTimer () end ----* ----@return float -function ControlPotentiometer:getMaximumValue () end ----* Returns the angle in degree between line1 and line2. ----@param beginLineA vec2_table ----@param endLineA vec2_table ----@param beginLineB vec2_table ----@param endLineB vec2_table ----@return float -function ControlPotentiometer:angleInDegreesBetweenLineFromPoint_toPoint_toLineFromPoint_toPoint (beginLineA,endLineA,beginLineB,endLineB) end ----* Factorize the event dispatch into these methods. ----@param location vec2_table ----@return self -function ControlPotentiometer:potentiometerBegan (location) end ----* ----@param maximumValue float ----@return self -function ControlPotentiometer:setMaximumValue (maximumValue) end ----* ----@return float -function ControlPotentiometer:getMinimumValue () end ----* ----@param var cc.Sprite ----@return self -function ControlPotentiometer:setThumbSprite (var) end ----* ----@return float -function ControlPotentiometer:getValue () end ----* Returns the distance between the point1 and point2. ----@param point1 vec2_table ----@param point2 vec2_table ----@return float -function ControlPotentiometer:distanceBetweenPointAndPoint (point1,point2) end ----* ----@param location vec2_table ----@return self -function ControlPotentiometer:potentiometerEnded (location) end ----* ----@return vec2_table -function ControlPotentiometer:getPreviousLocation () end ----* ----@param var cc.ProgressTimer ----@return self -function ControlPotentiometer:setProgressTimer (var) end ----* ----@param minimumValue float ----@return self -function ControlPotentiometer:setMinimumValue (minimumValue) end ----* ----@return cc.Sprite -function ControlPotentiometer:getThumbSprite () end ----* Initializes a potentiometer with a track sprite and a progress bar.<br> ----* param trackSprite Sprite, that is used as a background.<br> ----* param progressTimer ProgressTimer, that is used as a progress bar. ----@param trackSprite cc.Sprite ----@param progressTimer cc.ProgressTimer ----@param thumbSprite cc.Sprite ----@return boolean -function ControlPotentiometer:initWithTrackSprite_ProgressTimer_ThumbSprite (trackSprite,progressTimer,thumbSprite) end ----* ----@param location vec2_table ----@return self -function ControlPotentiometer:potentiometerMoved (location) end ----* Creates potentiometer with a track filename and a progress filename. ----@param backgroundFile char ----@param progressFile char ----@param thumbFile char ----@return self -function ControlPotentiometer:create (backgroundFile,progressFile,thumbFile) end ----* ----@param touch cc.Touch ----@return boolean -function ControlPotentiometer:isTouchInside (touch) end ----* ----@param enabled boolean ----@return self -function ControlPotentiometer:setEnabled (enabled) end ----* ----@param pTouch cc.Touch ----@param pEvent cc.Event ----@return self -function ControlPotentiometer:onTouchMoved (pTouch,pEvent) end ----* ----@param pTouch cc.Touch ----@param pEvent cc.Event ----@return self -function ControlPotentiometer:onTouchEnded (pTouch,pEvent) end ----* ----@param pTouch cc.Touch ----@param pEvent cc.Event ----@return boolean -function ControlPotentiometer:onTouchBegan (pTouch,pEvent) end ----* js ctor<br> ----* lua new ----@return self -function ControlPotentiometer:ControlPotentiometer () end
\ No newline at end of file |