raylua v3.5a
This commit is contained in:
parent
a6e3c328a4
commit
e4eb705aa6
2
luajit
2
luajit
@ -1 +1 @@
|
|||||||
Subproject commit 76958aa0c445aa817ff41d3a7987e9b7ba7a58c2
|
Subproject commit a2a39ea7184f3c8cab9474c6e41f6541265fb362
|
2
raygui
2
raygui
@ -1 +1 @@
|
|||||||
Subproject commit 07b30c30af7309b396cfa458d30f54b38ef78808
|
Subproject commit f5bd6c08f8d761b625890e4256339ff93c770ac1
|
2
raylib
2
raylib
@ -1 +1 @@
|
|||||||
Subproject commit 51e75be9d1ffeaf6d47d3670017cca36f4785a17
|
Subproject commit e25e380e80a117f2404d65b37700fb620dc1f990
|
@ -16,7 +16,7 @@
|
|||||||
|
|
||||||
local load = loadstring
|
local load = loadstring
|
||||||
|
|
||||||
raylua.version = "v3.5-pre1"
|
raylua.version = "v3.5a"
|
||||||
|
|
||||||
function raylua.repl()
|
function raylua.repl()
|
||||||
print("> raylua " .. raylua.version .. " <")
|
print("> raylua " .. raylua.version .. " <")
|
||||||
|
@ -185,10 +185,11 @@ void DrawPolyLines(Vector2 center, int sides, float radius, float rotation, Colo
|
|||||||
bool CheckCollisionRecs(Rectangle rec1, Rectangle rec2)
|
bool CheckCollisionRecs(Rectangle rec1, Rectangle rec2)
|
||||||
bool CheckCollisionCircles(Vector2 center1, float radius1, Vector2 center2, float radius2)
|
bool CheckCollisionCircles(Vector2 center1, float radius1, Vector2 center2, float radius2)
|
||||||
bool CheckCollisionCircleRec(Vector2 center, float radius, Rectangle rec)
|
bool CheckCollisionCircleRec(Vector2 center, float radius, Rectangle rec)
|
||||||
Rectangle GetCollisionRec(Rectangle rec1, Rectangle rec2)
|
|
||||||
bool CheckCollisionPointRec(Vector2 point, Rectangle rec)
|
bool CheckCollisionPointRec(Vector2 point, Rectangle rec)
|
||||||
bool CheckCollisionPointCircle(Vector2 point, Vector2 center, float radius)
|
bool CheckCollisionPointCircle(Vector2 point, Vector2 center, float radius)
|
||||||
bool CheckCollisionPointTriangle(Vector2 point, Vector2 p1, Vector2 p2, Vector2 p3)
|
bool CheckCollisionPointTriangle(Vector2 point, Vector2 p1, Vector2 p2, Vector2 p3)
|
||||||
|
bool CheckCollisionLines(Vector2 startPos1, Vector2 endPos1, Vector2 startPos2, Vector2 endPos2, Vector2 *collisionPoint)
|
||||||
|
Rectangle GetCollisionRec(Rectangle rec1, Rectangle rec2)
|
||||||
Image LoadImage(const char *fileName)
|
Image LoadImage(const char *fileName)
|
||||||
Image LoadImageRaw(const char *fileName, int width, int height, int format, int headerSize)
|
Image LoadImageRaw(const char *fileName, int width, int height, int format, int headerSize)
|
||||||
Image LoadImageAnim(const char *fileName, int *frames)
|
Image LoadImageAnim(const char *fileName, int *frames)
|
||||||
|
Loading…
Reference in New Issue
Block a user