diff options
| author | Ray <[email protected]> | 2024-02-04 12:14:15 +0100 |
|---|---|---|
| committer | Ray <[email protected]> | 2024-02-04 12:14:15 +0100 |
| commit | c0c2e28c1ba0018a23a44d01f0ea4f6145ff626c (patch) | |
| tree | ec58fd595e802f79d026d07765a87cae0ab87c29 /parser/output/raylib_api.json | |
| parent | 615ee9d177e53415996be026bcbd2977f88a1cc0 (diff) | |
| parent | cd8da72feaca4df374ba4980b3d2fd4d164349c9 (diff) | |
| download | raylib-c0c2e28c1ba0018a23a44d01f0ea4f6145ff626c.tar.gz raylib-c0c2e28c1ba0018a23a44d01f0ea4f6145ff626c.zip | |
Merge branch 'master' of https://github.com/raysan5/raylib
Diffstat (limited to 'parser/output/raylib_api.json')
| -rw-r--r-- | parser/output/raylib_api.json | 66 |
1 files changed, 33 insertions, 33 deletions
diff --git a/parser/output/raylib_api.json b/parser/output/raylib_api.json index c48c1dd5..b0f82d3c 100644 --- a/parser/output/raylib_api.json +++ b/parser/output/raylib_api.json @@ -3910,38 +3910,54 @@ ] }, { - "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", + "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", + "type": "Vector2", "name": "position" }, { - "type": "Camera", + "type": "Camera2D", "name": "camera" } ] @@ -3962,38 +3978,22 @@ ] }, { - "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" } ] }, { - "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" } |
