diff options
| author | jussi | 2023-04-07 21:24:14 +0300 |
|---|---|---|
| committer | jussi | 2023-04-07 21:24:14 +0300 |
| commit | 6dad6544d7196905668b4863487daa00ac9843f7 (patch) | |
| tree | d6c365c90d3a1e8c8e8a368703ac4b6826fce491 /API.md | |
| parent | 22f70cf06f75cd5022e622a9d14a56b67e74a157 (diff) | |
| download | reilua-enhanced-6dad6544d7196905668b4863487daa00ac9843f7.tar.gz reilua-enhanced-6dad6544d7196905668b4863487daa00ac9843f7.tar.bz2 reilua-enhanced-6dad6544d7196905668b4863487daa00ac9843f7.zip | |
Audio and shapes now use new argumet style.
Diffstat (limited to 'API.md')
| -rw-r--r-- | API.md | 8 |
1 files changed, 4 insertions, 4 deletions
@@ -1172,7 +1172,7 @@ Set window minimum dimensions ( for FLAG_WINDOW_RESIZABLE ) --- -> position = RL.GetMonitorPosition( int monitor ) +> position = RL.GetMonitorPosition( ) Get specified monitor position @@ -2539,7 +2539,7 @@ Draw line using quadratic bezier curves with a control point --- -> success = RL.DrawLineStrip( Vector2{} points, int pointsCount, Color color ) +> success = RL.DrawLineStrip( Vector2{} points, Color color ) Draw lines sequence @@ -2728,7 +2728,7 @@ Draw triangle outline ( Vertex in counter-clockwise order! ) --- -> success = RL.DrawTriangleFan( Vector2{} points, int pointsCount, Color color ) +> success = RL.DrawTriangleFan( Vector2{} points, Color color ) Draw a triangle fan defined by points ( first vertex is the center ) @@ -2737,7 +2737,7 @@ Draw a triangle fan defined by points ( first vertex is the center ) --- -> success = RL.DrawTriangleStrip( Vector2{} points, int pointsCount, Color color ) +> success = RL.DrawTriangleStrip( Vector2{} points, Color color ) Draw a triangle strip defined by points |
