diff options
| author | jussi | 2024-02-18 15:26:21 +0200 |
|---|---|---|
| committer | jussi | 2024-02-18 15:26:21 +0200 |
| commit | 9b27daefc225752f3f24ea862e9c2be13f8addf6 (patch) | |
| tree | cfa74048b9bddb9dc58e8117a4a7af845ee137eb /examples/raygui_extensions/property_list.lua | |
| parent | 9de10be468c5151765a0e007d5889971c637fd24 (diff) | |
| download | reilua-enhanced-9b27daefc225752f3f24ea862e9c2be13f8addf6.tar.gz reilua-enhanced-9b27daefc225752f3f24ea862e9c2be13f8addf6.tar.bz2 reilua-enhanced-9b27daefc225752f3f24ea862e9c2be13f8addf6.zip | |
Process renamed to update to be more inline with naming of raylib and common convention.
Diffstat (limited to 'examples/raygui_extensions/property_list.lua')
| -rw-r--r-- | examples/raygui_extensions/property_list.lua | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/examples/raygui_extensions/property_list.lua b/examples/raygui_extensions/property_list.lua index 35f2f36..d8d2622 100644 --- a/examples/raygui_extensions/property_list.lua +++ b/examples/raygui_extensions/property_list.lua @@ -158,14 +158,14 @@ function PropertyList:addGroup( name, active, group ) return control end -function PropertyList:process() +function PropertyList:update() if not RL.CheckCollisionRecs( self.view, RL.GetMousePosition() ) then self.gui.locked = true else self.gui.locked = false end - self.gui:process() + self.gui:update() RL.BeginTextureMode( self.framebuffer ) RL.ClearBackground( RL.BLANK ) |
