summaryrefslogtreecommitdiff
path: root/meta/3rd/Cocos4.0/ccui.LoadingBar.lua
diff options
context:
space:
mode:
author最萌小汐 <sumneko@hotmail.com>2021-07-05 20:51:43 +0800
committer最萌小汐 <sumneko@hotmail.com>2021-07-05 20:51:43 +0800
commit8fefb8f3e100976235dc83d6ae3785952d11c710 (patch)
tree459117e6cecc70824273c4d32285cb6eec468098 /meta/3rd/Cocos4.0/ccui.LoadingBar.lua
parentb6c18d05410fd4ca209f9c34e0992caf40cf3701 (diff)
downloadlua-language-server-8fefb8f3e100976235dc83d6ae3785952d11c710.zip
cleanup
Diffstat (limited to 'meta/3rd/Cocos4.0/ccui.LoadingBar.lua')
-rw-r--r--meta/3rd/Cocos4.0/ccui.LoadingBar.lua87
1 files changed, 0 insertions, 87 deletions
diff --git a/meta/3rd/Cocos4.0/ccui.LoadingBar.lua b/meta/3rd/Cocos4.0/ccui.LoadingBar.lua
deleted file mode 100644
index 9f2cfbf4..00000000
--- a/meta/3rd/Cocos4.0/ccui.LoadingBar.lua
+++ /dev/null
@@ -1,87 +0,0 @@
----@meta
-
----@class ccui.LoadingBar :ccui.Widget
-local LoadingBar={ }
-ccui.LoadingBar=LoadingBar
-
-
-
-
----* Changes the progress value of LoadingBar.<br>
----* param percent Percent value from 1 to 100.
----@param percent float
----@return self
-function LoadingBar:setPercent (percent) end
----* Load texture for LoadingBar.<br>
----* param texture File name of texture.<br>
----* param texType Texture resource type,@see TextureResType.
----@param texture string
----@param texType int
----@return self
-function LoadingBar:loadTexture (texture,texType) end
----* Change the progress direction of LoadingBar.<br>
----* see Direction `LEFT` means progress left to right, `RIGHT` otherwise.<br>
----* param direction Direction
----@param direction int
----@return self
-function LoadingBar:setDirection (direction) end
----*
----@return cc.ResourceData
-function LoadingBar:getRenderFile () end
----* Enable scale9 renderer.<br>
----* param enabled Set to true will use scale9 renderer, false otherwise.
----@param enabled boolean
----@return self
-function LoadingBar:setScale9Enabled (enabled) end
----* Set capInsets for LoadingBar.<br>
----* This setting only take effect when enable scale9 renderer.<br>
----* param capInsets CapInset in `Rect`.
----@param capInsets rect_table
----@return self
-function LoadingBar:setCapInsets (capInsets) end
----* Get the progress direction of LoadingBar.<br>
----* see Direction `LEFT` means progress left to right, `RIGHT` otherwise.<br>
----* return LoadingBar progress direction.
----@return int
-function LoadingBar:getDirection () end
----* brief Query LoadingBar's capInsets.<br>
----* return CapInsets of LoadingBar.
----@return rect_table
-function LoadingBar:getCapInsets () end
----* brief Query whether LoadingBar is using scale9 renderer or not.<br>
----* return Whether LoadingBar uses scale9 renderer or not.
----@return boolean
-function LoadingBar:isScale9Enabled () end
----* Get the progress value of LoadingBar.<br>
----* return Progress value from 1 to 100.
----@return float
-function LoadingBar:getPercent () end
----@overload fun(string:string,int1:float):self
----@overload fun():self
----@overload fun(string:string,int:int,float:float):self
----@param textureName string
----@param texType int
----@param percentage float
----@return self
-function LoadingBar:create (textureName,texType,percentage) end
----*
----@return cc.Ref
-function LoadingBar:createInstance () end
----*
----@return cc.Node
-function LoadingBar:getVirtualRenderer () end
----*
----@return string
-function LoadingBar:getDescription () end
----*
----@return size_table
-function LoadingBar:getVirtualRendererSize () end
----*
----@param ignore boolean
----@return self
-function LoadingBar:ignoreContentAdaptWithSize (ignore) end
----* Default constructor.<br>
----* js ctor<br>
----* lua new
----@return self
-function LoadingBar:LoadingBar () end \ No newline at end of file