diff options
| author | jussi | 2024-04-17 00:35:58 +0300 |
|---|---|---|
| committer | jussi | 2024-04-17 00:35:58 +0300 |
| commit | 70b40f67824b3d612235c382aa83821c054fa51e (patch) | |
| tree | 5d594cc457d6fed8af87e31977a0b9352677a4f5 /examples/raygui_lib/main.lua | |
| parent | 41b67398247d9031aed4ca6e3ffd6799ec8b1bca (diff) | |
| download | reilua-enhanced-70b40f67824b3d612235c382aa83821c054fa51e.tar.gz reilua-enhanced-70b40f67824b3d612235c382aa83821c054fa51e.tar.bz2 reilua-enhanced-70b40f67824b3d612235c382aa83821c054fa51e.zip | |
Object libraries like Vector2 optimizations.
Diffstat (limited to 'examples/raygui_lib/main.lua')
| -rw-r--r-- | examples/raygui_lib/main.lua | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/examples/raygui_lib/main.lua b/examples/raygui_lib/main.lua index 1539ea3..95a733f 100644 --- a/examples/raygui_lib/main.lua +++ b/examples/raygui_lib/main.lua @@ -323,13 +323,13 @@ function RL.init() local colorpicker = Gui:ColorPicker( Rect:new( 1500, 32, 128, 128 ), "Color Picker", - Color:new(), + Color:new( 255, 255, 255, 255 ), {} -- Callbacks. ) local colorpanel = Gui:ColorPanel( Rect:new( 1700, 32, 128, 128 ), "Color Panel", - Color:new(), + Color:new( 255, 255, 255, 255 ), {} -- Callbacks. ) local colorbaralpha = Gui:ColorBarAlpha( |
