Difference between revisions of "UI.Bar"
From GiderosMobile
Line 1: | Line 1: | ||
__NOTOC__ | __NOTOC__ | ||
+ | '''Available since:''' Gideros 2023.1<br/> | ||
+ | '''Class:''' [[UI]]<br/> | ||
+ | |||
=== Description === | === Description === | ||
− | + | Creates a Bar widget. | |
<syntaxhighlight lang="lua"> | <syntaxhighlight lang="lua"> | ||
UI.Bar.new(maximum) | UI.Bar.new(maximum) |
Revision as of 15:53, 13 October 2023
Available since: Gideros 2023.1
Class: UI
Description
Creates a Bar widget.
UI.Bar.new(maximum)
Parameters
maximum: (number) the bar maximum value
Functions
setValue: (number) sets the bar current value
setMaximum: (number) sets the bar maximum value
setSize: (number, number) sets the bar size
Example
local maxvalue = 200
local value = 102
local gui = UI.Bar.new(maxvalue)
gui:setSize(400, 32)
gui:setPosition(64,64)
stage:addChild(gui)
local way = 1
stage:addEventListener(Event.ENTER_FRAME, function(e)
value += 3*way
if value < 0 then way=1 end
if value > maxvalue then way=-1 end
gui:setValue(value)
end)