diff options
| author | jussi | 2023-05-10 21:21:40 +0300 |
|---|---|---|
| committer | jussi | 2023-05-10 21:21:40 +0300 |
| commit | b387742850a4d2d6b750f7cdc878ff00d7e4a5fb (patch) | |
| tree | 585ab2374c0c1821f85e0c1340ff44d6dd0fea5c /API.md | |
| parent | 1e58f551bbfb6a8ef4d83292685d7c3672385c8b (diff) | |
| download | reilua-enhanced-b387742850a4d2d6b750f7cdc878ff00d7e4a5fb.tar.gz reilua-enhanced-b387742850a4d2d6b750f7cdc878ff00d7e4a5fb.tar.bz2 reilua-enhanced-b387742850a4d2d6b750f7cdc878ff00d7e4a5fb.zip | |
DrawBillboardPro and rlglGetVersion.
Diffstat (limited to 'API.md')
| -rw-r--r-- | API.md | 33 |
1 files changed, 33 insertions, 0 deletions
@@ -921,6 +921,18 @@ LIGHT_DIRECTIONAL LIGHT_POINT +## Globals - rlGlVersion + +RL_OPENGL_11 + +RL_OPENGL_21 + +RL_OPENGL_33 + +RL_OPENGL_43 + +RL_OPENGL_ES_20 + ## Globals - OpenGL GL_COLOR_BUFFER_BIT @@ -4446,6 +4458,15 @@ Draw a billboard texture defined by source --- +> success = RL.DrawBillboardPro( Camera camera, Texture2D texture, Rectangle source, Vector3 position, Vector3 up, Vector2 size, Vector2 origin, float rotation, Color tint ) + +Draw a billboard texture defined by source and rotation + +- Failure return false +- Success return true + +--- + > success = RL.SetModelTransform( Model model, Matrix transform ) Set model transform matrix @@ -6460,6 +6481,18 @@ Get the line drawing width --- +## RLGL - Initialization functions + +--- + +> version = RL.rlGetVersion() + +Get current OpenGL version + +- Success return int + +--- + ## OpenGL - Framebuffer management --- |
