Update raylib_api.* by CI

This commit is contained in:
github-actions[bot]
2024-05-30 06:24:58 +00:00
parent 606cc1d897
commit 1344979c70
4 changed files with 346 additions and 298 deletions

View File

@ -6703,6 +6703,29 @@
}
]
},
{
"name": "CheckCollisionCircleLine",
"description": "Check if circle collides with a line created betweeen two points [p1] and [p2]",
"returnType": "bool",
"params": [
{
"type": "Vector2",
"name": "center"
},
{
"type": "float",
"name": "radius"
},
{
"type": "Vector2",
"name": "p1"
},
{
"type": "Vector2",
"name": "p2"
}
]
},
{
"name": "GetCollisionRec",
"description": "Get collision rectangle for two rectangles collision",