summaryrefslogtreecommitdiffhomepage
path: root/parser/output/raylib_api.lua
diff options
context:
space:
mode:
Diffstat (limited to 'parser/output/raylib_api.lua')
-rw-r--r--parser/output/raylib_api.lua11
1 files changed, 11 insertions, 0 deletions
diff --git a/parser/output/raylib_api.lua b/parser/output/raylib_api.lua
index 68fef97b..4a6998bb 100644
--- a/parser/output/raylib_api.lua
+++ b/parser/output/raylib_api.lua
@@ -5267,6 +5267,17 @@ return {
}
},
{
+ 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",
returnType = "Rectangle",