diff --git a/tools/rlparser/output/raylib_api.json b/tools/rlparser/output/raylib_api.json
index 0da5fc3e0..396dc7bbe 100644
--- a/tools/rlparser/output/raylib_api.json
+++ b/tools/rlparser/output/raylib_api.json
@@ -8877,7 +8877,7 @@
},
{
"name": "DrawTextureEx",
- "description": "Draw a Texture2D with extended parameters",
+ "description": "Draw a Texture2D with rotation and scale",
"returnType": "void",
"params": [
{
@@ -9260,7 +9260,7 @@
},
{
"name": "LoadFontEx",
- "description": "Load font from file with extended parameters, use NULL for codepoints and 0 for codepointCount to load the default character set, font size is provided in pixels height",
+ "description": "Load font from file with defined codepoints and generation size, use NULL for codepoints and 0 for codepointCount to load the default character set, font size is provided in pixels height",
"returnType": "Font",
"params": [
{
@@ -10336,7 +10336,7 @@
},
{
"name": "DrawTriangle3D",
- "description": "Draw a color-filled triangle (vertex in counter-clockwise order!)",
+ "description": "Draw a color-filled triangle, counter-clockwise vertex order",
"returnType": "void",
"params": [
{
@@ -10489,7 +10489,7 @@
},
{
"name": "DrawSphereEx",
- "description": "Draw sphere with extended parameters",
+ "description": "Draw sphere with defined rings and slices",
"returnType": "void",
"params": [
{
@@ -10856,7 +10856,7 @@
},
{
"name": "DrawModelEx",
- "description": "Draw a model with extended parameters",
+ "description": "Draw a model with custom transform",
"returnType": "void",
"params": [
{
@@ -10910,7 +10910,7 @@
},
{
"name": "DrawModelWiresEx",
- "description": "Draw a model wires (with texture if set) with extended parameters",
+ "description": "Draw a model wires with custom transform",
"returnType": "void",
"params": [
{
diff --git a/tools/rlparser/output/raylib_api.lua b/tools/rlparser/output/raylib_api.lua
index 6fa5d9321..f35c4c688 100644
--- a/tools/rlparser/output/raylib_api.lua
+++ b/tools/rlparser/output/raylib_api.lua
@@ -6459,7 +6459,7 @@ return {
},
{
name = "DrawTextureEx",
- description = "Draw a Texture2D with extended parameters",
+ description = "Draw a Texture2D with rotation and scale",
returnType = "void",
params = {
{type = "Texture2D", name = "texture"},
@@ -6674,7 +6674,7 @@ return {
},
{
name = "LoadFontEx",
- description = "Load font from file with extended parameters, use NULL for codepoints and 0 for codepointCount to load the default character set, font size is provided in pixels height",
+ description = "Load font from file with defined codepoints and generation size, use NULL for codepoints and 0 for codepointCount to load the default character set, font size is provided in pixels height",
returnType = "Font",
params = {
{type = "const char *", name = "fileName"},
@@ -7258,7 +7258,7 @@ return {
},
{
name = "DrawTriangle3D",
- description = "Draw a color-filled triangle (vertex in counter-clockwise order!)",
+ description = "Draw a color-filled triangle, counter-clockwise vertex order",
returnType = "void",
params = {
{type = "Vector3", name = "v1"},
@@ -7333,7 +7333,7 @@ return {
},
{
name = "DrawSphereEx",
- description = "Draw sphere with extended parameters",
+ description = "Draw sphere with defined rings and slices",
returnType = "void",
params = {
{type = "Vector3", name = "centerPos"},
@@ -7514,7 +7514,7 @@ return {
},
{
name = "DrawModelEx",
- description = "Draw a model with extended parameters",
+ description = "Draw a model with custom transform",
returnType = "void",
params = {
{type = "Model", name = "model"},
@@ -7538,7 +7538,7 @@ return {
},
{
name = "DrawModelWiresEx",
- description = "Draw a model wires (with texture if set) with extended parameters",
+ description = "Draw a model wires with custom transform",
returnType = "void",
params = {
{type = "Model", name = "model"},
diff --git a/tools/rlparser/output/raylib_api.txt b/tools/rlparser/output/raylib_api.txt
index 97d2350c0..722d85d0a 100644
--- a/tools/rlparser/output/raylib_api.txt
+++ b/tools/rlparser/output/raylib_api.txt
@@ -3405,7 +3405,7 @@ Function 383: DrawTextureV() (3 input parameters)
Function 384: DrawTextureEx() (5 input parameters)
Name: DrawTextureEx
Return type: void
- Description: Draw a Texture2D with extended parameters
+ Description: Draw a Texture2D with rotation and scale
Param[1]: texture (type: Texture2D)
Param[2]: position (type: Vector2)
Param[3]: rotation (type: float)
@@ -3554,7 +3554,7 @@ Function 406: LoadFont() (1 input parameters)
Function 407: LoadFontEx() (4 input parameters)
Name: LoadFontEx
Return type: Font
- Description: Load font from file with extended parameters, use NULL for codepoints and 0 for codepointCount to load the default character set, font size is provided in pixels height
+ Description: Load font from file with defined codepoints and generation size, use NULL for codepoints and 0 for codepointCount to load the default character set, font size is provided in pixels height
Param[1]: fileName (type: const char *)
Param[2]: fontSize (type: int)
Param[3]: codepoints (type: const int *)
@@ -3958,7 +3958,7 @@ Function 466: DrawCircle3D() (5 input parameters)
Function 467: DrawTriangle3D() (4 input parameters)
Name: DrawTriangle3D
Return type: void
- Description: Draw a color-filled triangle (vertex in counter-clockwise order!)
+ Description: Draw a color-filled triangle, counter-clockwise vertex order
Param[1]: v1 (type: Vector3)
Param[2]: v2 (type: Vector3)
Param[3]: v3 (type: Vector3)
@@ -4012,7 +4012,7 @@ Function 473: DrawSphere() (3 input parameters)
Function 474: DrawSphereEx() (5 input parameters)
Name: DrawSphereEx
Return type: void
- Description: Draw sphere with extended parameters
+ Description: Draw sphere with defined rings and slices
Param[1]: centerPos (type: Vector3)
Param[2]: radius (type: float)
Param[3]: rings (type: int)
@@ -4142,7 +4142,7 @@ Function 490: DrawModel() (4 input parameters)
Function 491: DrawModelEx() (6 input parameters)
Name: DrawModelEx
Return type: void
- Description: Draw a model with extended parameters
+ Description: Draw a model with custom transform
Param[1]: model (type: Model)
Param[2]: position (type: Vector3)
Param[3]: rotationAxis (type: Vector3)
@@ -4160,7 +4160,7 @@ Function 492: DrawModelWires() (4 input parameters)
Function 493: DrawModelWiresEx() (6 input parameters)
Name: DrawModelWiresEx
Return type: void
- Description: Draw a model wires (with texture if set) with extended parameters
+ Description: Draw a model wires with custom transform
Param[1]: model (type: Model)
Param[2]: position (type: Vector3)
Param[3]: rotationAxis (type: Vector3)
diff --git a/tools/rlparser/output/raylib_api.xml b/tools/rlparser/output/raylib_api.xml
index 7fd73e2ed..6235a6de8 100644
--- a/tools/rlparser/output/raylib_api.xml
+++ b/tools/rlparser/output/raylib_api.xml
@@ -2242,7 +2242,7 @@
-
+
@@ -2344,7 +2344,7 @@
-
+
@@ -2628,7 +2628,7 @@
-
+
@@ -2668,7 +2668,7 @@
-
+
@@ -2764,7 +2764,7 @@
-
+
@@ -2778,7 +2778,7 @@
-
+