summaryrefslogtreecommitdiff
path: root/API.md
diff options
context:
space:
mode:
authorjussi2023-02-06 23:03:39 +0200
committerjussi2023-02-06 23:03:39 +0200
commitdb957a8181497a25e52328882e6e0f98d6551d0b (patch)
tree583aa051b304c04457d8eba4e7ec238c04b5dcd7 /API.md
parent7e61bffe5f313599423ad3cf88b0e44329de7dd2 (diff)
downloadreilua-enhanced-db957a8181497a25e52328882e6e0f98d6551d0b.tar.gz
reilua-enhanced-db957a8181497a25e52328882e6e0f98d6551d0b.tar.bz2
reilua-enhanced-db957a8181497a25e52328882e6e0f98d6551d0b.zip
RL_LoadFontEx.
Diffstat (limited to 'API.md')
-rw-r--r--API.md14
1 files changed, 11 insertions, 3 deletions
diff --git a/API.md b/API.md
index 81e365f..514c5cb 100644
--- a/API.md
+++ b/API.md
@@ -3698,6 +3698,15 @@ Load font from file into GPU memory ( VRAM )
---
+> font = RL_LoadFontEx( string fileName, int fontSize )
+
+Load font from file with extended parameters. Loading the default character set
+
+- Failure return -1
+- Success return int
+
+---
+
> font = RL_LoadFontFromImage( Image image, Color key, int firstChar )
Load font from Image ( XNA style )
@@ -3926,10 +3935,9 @@ Draw a plane XZ
---
-> success = RL_DrawQuad3DTexture( texture, Vector3{} vertices, Vector2{} texCoords, Color color )
+> success = RL_DrawQuad3DTexture( texture, Vector3{} vertices, Vector2{} texCoords, Color{} colors )
-Draw 3D quad texture using vertices and texture coordinates. Texture coordinates opengl style 0.0 - 1.0.
-Note! Could be replaced something like "DrawPlaneTextureRec"
+Draw 3D textured quad. ( Texture coordinates opengl style 0.0 - 1.0 ).
- Failure return false
- Success return true