mirror of https://github.com/axmolengine/axmol.git
65 lines
1.8 KiB
Lua
65 lines
1.8 KiB
Lua
|
|
--------------------------------
|
|
-- @module LoadingBar
|
|
--------------------------------
|
|
-- @function [parent=#LoadingBar] setPercent
|
|
-- @param self
|
|
-- @param #int int
|
|
|
|
--------------------------------
|
|
-- @function [parent=#LoadingBar] loadTexture
|
|
-- @param self
|
|
-- @param #char char
|
|
-- @param #ccui.TextureResType texturerestype
|
|
|
|
--------------------------------
|
|
-- @function [parent=#LoadingBar] setDirection
|
|
-- @param self
|
|
-- @param #ccui.LoadingBarType loadingbartype
|
|
|
|
--------------------------------
|
|
-- @function [parent=#LoadingBar] setScale9Enabled
|
|
-- @param self
|
|
-- @param #bool bool
|
|
|
|
--------------------------------
|
|
-- @function [parent=#LoadingBar] setCapInsets
|
|
-- @param self
|
|
-- @param #rect_table rect
|
|
|
|
--------------------------------
|
|
-- @function [parent=#LoadingBar] getDirection
|
|
-- @param self
|
|
-- @return int#int ret (return value: int)
|
|
|
|
--------------------------------
|
|
-- @function [parent=#LoadingBar] getCapInsets
|
|
-- @param self
|
|
-- @return rect_table#rect_table ret (return value: rect_table)
|
|
|
|
--------------------------------
|
|
-- @function [parent=#LoadingBar] isScale9Enabled
|
|
-- @param self
|
|
-- @return bool#bool ret (return value: bool)
|
|
|
|
--------------------------------
|
|
-- @function [parent=#LoadingBar] getPercent
|
|
-- @param self
|
|
-- @return int#int ret (return value: int)
|
|
|
|
--------------------------------
|
|
-- @function [parent=#LoadingBar] create
|
|
-- @param self
|
|
-- @return LoadingBar#LoadingBar ret (return value: ccui.LoadingBar)
|
|
|
|
--------------------------------
|
|
-- @function [parent=#LoadingBar] createInstance
|
|
-- @param self
|
|
-- @return Ref#Ref ret (return value: cc.Ref)
|
|
|
|
--------------------------------
|
|
-- @function [parent=#LoadingBar] LoadingBar
|
|
-- @param self
|
|
|
|
return nil
|