diff options
| author | jussi | 2022-03-30 22:15:57 +0300 |
|---|---|---|
| committer | jussi | 2022-03-30 22:15:57 +0300 |
| commit | f5b723519f8dd9358db15ac5f366f6646905715f (patch) | |
| tree | af3f4c00a28a26b31d4ab7fc8f5125b4dd448cb7 /API.md | |
| parent | 9997e40530d0af01a2fa930d45c55b419cae996f (diff) | |
| download | reilua-enhanced-f5b723519f8dd9358db15ac5f366f6646905715f.tar.gz reilua-enhanced-f5b723519f8dd9358db15ac5f366f6646905715f.tar.bz2 reilua-enhanced-f5b723519f8dd9358db15ac5f366f6646905715f.zip | |
Gui Icons.
Diffstat (limited to 'API.md')
| -rw-r--r-- | API.md | 64 |
1 files changed, 64 insertions, 0 deletions
@@ -3381,6 +3381,21 @@ Get one style property --- +> success = RL_GuiLoadStyle( int control, int property ) + +Load style file over global style variable ( .rgs ) + +- Failure return false +- Success return true + +--- + +> RL_GuiLoadStyleDefault() + +Load style default over global style + +--- + ## Gui - Container --- @@ -3626,3 +3641,52 @@ Color Bar Hue control - Success return float --- + +## Gui - Icons + +--- + +> success = RL_GuiDrawIcon( int iconId, Vector2 pos, int pixelSize, Color color ) + +Draw icon + +- Failure return false +- Success return true + +--- + +> success = RL_GuiSetIconScale( int scale ) + +Set icon scale ( 1 by default ) + +- Failure return false +- Success return true + +--- + +> success = RL_GuiSetIconPixel( int iconId, Vector2 pos ) + +Set icon pixel value + +- Failure return false +- Success return true + +--- + +> success = RL_GuiClearIconPixel( int iconId, Vector2 pos ) + +Clear icon pixel value + +- Failure return false +- Success return true + +--- + +> value = RL_GuiCheckIconPixel( int iconId, Vector2 pos ) + +Check icon pixel value + +- Failure return nil +- Success return bool + +--- |
