summaryrefslogtreecommitdiffhomepage
path: root/parser/output/raylib_api.lua
diff options
context:
space:
mode:
authorgithub-actions[bot] <github-actions[bot]@users.noreply.github.com>2024-02-04 11:03:25 +0000
committergithub-actions[bot] <github-actions[bot]@users.noreply.github.com>2024-02-04 11:03:25 +0000
commit31ce1374e49fd5f7932675b93d7a3f372954aaf2 (patch)
treedac51cfc6b61ad996baacdec5de23a9c7fdeaace /parser/output/raylib_api.lua
parent80580746e52e9231f076c18b92a90e17895898c2 (diff)
downloadraylib-31ce1374e49fd5f7932675b93d7a3f372954aaf2.tar.gz
raylib-31ce1374e49fd5f7932675b93d7a3f372954aaf2.zip
Update raylib_api.* by CI
Diffstat (limited to 'parser/output/raylib_api.lua')
-rw-r--r--parser/output/raylib_api.lua44
1 files changed, 22 insertions, 22 deletions
diff --git a/parser/output/raylib_api.lua b/parser/output/raylib_api.lua
index 882fb61f..c547fea2 100644
--- a/parser/output/raylib_api.lua
+++ b/parser/output/raylib_api.lua
@@ -3655,28 +3655,32 @@ return {
}
},
{
- name = "GetCameraMatrix",
- description = "Get camera transform matrix (view matrix)",
- returnType = "Matrix",
+ name = "GetWorldToScreen",
+ description = "Get the screen space position for a 3d world space position",
+ returnType = "Vector2",
params = {
+ {type = "Vector3", name = "position"},
{type = "Camera", name = "camera"}
}
},
{
- name = "GetCameraMatrix2D",
- description = "Get camera 2d transform matrix",
- returnType = "Matrix",
+ name = "GetWorldToScreenEx",
+ description = "Get size position for a 3d world space position",
+ returnType = "Vector2",
params = {
- {type = "Camera2D", name = "camera"}
+ {type = "Vector3", name = "position"},
+ {type = "Camera", name = "camera"},
+ {type = "int", name = "width"},
+ {type = "int", name = "height"}
}
},
{
- name = "GetWorldToScreen",
- description = "Get the screen space position for a 3d world space position",
+ name = "GetWorldToScreen2D",
+ description = "Get the screen space position for a 2d camera world space position",
returnType = "Vector2",
params = {
- {type = "Vector3", name = "position"},
- {type = "Camera", name = "camera"}
+ {type = "Vector2", name = "position"},
+ {type = "Camera2D", name = "camera"}
}
},
{
@@ -3689,22 +3693,18 @@ return {
}
},
{
- name = "GetWorldToScreenEx",
- description = "Get size position for a 3d world space position",
- returnType = "Vector2",
+ name = "GetCameraMatrix",
+ description = "Get camera transform matrix (view matrix)",
+ returnType = "Matrix",
params = {
- {type = "Vector3", name = "position"},
- {type = "Camera", name = "camera"},
- {type = "int", name = "width"},
- {type = "int", name = "height"}
+ {type = "Camera", name = "camera"}
}
},
{
- name = "GetWorldToScreen2D",
- description = "Get the screen space position for a 2d camera world space position",
- returnType = "Vector2",
+ name = "GetCameraMatrix2D",
+ description = "Get camera 2d transform matrix",
+ returnType = "Matrix",
params = {
- {type = "Vector2", name = "position"},
{type = "Camera2D", name = "camera"}
}
},