Gui Icons enumeration.

This commit is contained in:
jussi
2024-12-11 00:21:28 +02:00
parent 14fbd73660
commit b4b81f68c4
10 changed files with 1343 additions and 18 deletions

View File

@@ -35,9 +35,9 @@ end
function TreeItem:setOpenIcon()
if self.open then
return RL.GuiIconText( 120, "" )
return RL.GuiIconText( RL.ICON_ARROW_DOWN_FILL, "" )
else
return RL.GuiIconText( 119, "" )
return RL.GuiIconText( RL.ICON_ARROW_RIGHT_FILL, "" )
end
end