summaryrefslogtreecommitdiff
path: root/API.md
diff options
context:
space:
mode:
authorjussi2023-05-10 21:21:40 +0300
committerjussi2023-05-10 21:21:40 +0300
commitb387742850a4d2d6b750f7cdc878ff00d7e4a5fb (patch)
tree585ab2374c0c1821f85e0c1340ff44d6dd0fea5c /API.md
parent1e58f551bbfb6a8ef4d83292685d7c3672385c8b (diff)
downloadreilua-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.md33
1 files changed, 33 insertions, 0 deletions
diff --git a/API.md b/API.md
index 44d4775..6700cff 100644
--- a/API.md
+++ b/API.md
@@ -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
---