GuiScrollBar.

This commit is contained in:
jussi
2023-12-20 01:13:28 +02:00
parent 9884c544bb
commit 192d471fb3
9 changed files with 108 additions and 8 deletions

View File

@@ -301,6 +301,13 @@ function RL.init()
"Color Panel",
1.0
)
local scrollbar = Gui:GuiScrollBar(
Rect:new( 50, 760, 256, 16 ),
0,
0,
256,
function( self ) print( "Scrollbar value: ", self.value ) end
)
end
function RL.process( delta )