Skip to content

Commit

Permalink
raylua v3.5a
Browse files Browse the repository at this point in the history
  • Loading branch information
TSnake41 committed Dec 25, 2020
1 parent a6e3c32 commit e4eb705
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 5 deletions.
2 changes: 1 addition & 1 deletion luajit
Submodule luajit updated 119 files
2 changes: 1 addition & 1 deletion raylib
Submodule raylib updated 51 files
+5 −5 .github/workflows/android.yml
+1 −1 .github/workflows/linux.yml
+1 −1 .github/workflows/macos.yml
+1 −1 .github/workflows/webassembly.yml
+1 −1 .github/workflows/windows.yml
+0 −129 .travis.yml
+15 −12 CHANGELOG
+37 −0 HISTORY.md
+6 −5 README.md
+1 −1 ROADMAP.md
+5 −0 SPONSORS.md
+24 −24 examples/Makefile
+25 −8 examples/Makefile.Android
+112 −106 examples/README.md
+30 −26 examples/core/core_quat_conversion.c
+ examples/core/core_window_flags.png
+3 −1 examples/models/models_animation.c
+11 −9 examples/models/rlights.h
+2 −2 examples/others/easings.h
+18 −18 examples/others/raudio_standalone.c
+6 −1 examples/shaders/rlights.h
+90 −98 examples/shaders/shaders_spotlight.c
+1,466 −2,288 examples/shapes/raygui.h
+556 −0 examples/shapes/ricons.h
+5 −5 examples/shapes/shapes_draw_rectangle_rounded.c
+1 −1 examples/text/text_font_sdf.c
+ examples/textures/resources/patterns.png
+62 −45 examples/textures/textures_draw_tiled.c
+ examples/textures/textures_draw_tiled.png
+638 −335 projects/Notepad++/raylib_npp_parser/raylib_npp.xml
+2 −2 projects/Notepad++/raylib_npp_parser/raylib_npp_parser.c
+156 −102 projects/Notepad++/raylib_npp_parser/raylib_to_parse.h
+5 −6 src/Makefile
+105 −140 src/core.c
+54 −54 src/models.c
+9 −9 src/raudio.c
+7 −7 src/raylib.h
+4 −4 src/raylib.rc
+ src/raylib.rc.data
+1 −1 src/rlgl.h
+3 −3 src/rmem.h
+24 −0 src/shapes.c
+5 −5 src/text.c
+4 −4 src/textures.c
+4 −4 src/utils.c
+42 −11 templates/advance_game/Makefile
+5 −5 templates/advance_game/Makefile.Android
+42 −11 templates/simple_game/Makefile
+25 −8 templates/simple_game/Makefile.Android
+42 −11 templates/standard_game/Makefile
+25 −8 templates/standard_game/Makefile.Android
2 changes: 1 addition & 1 deletion src/raylua.lua
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@

local load = loadstring

raylua.version = "v3.5-pre1"
raylua.version = "v3.5a"

function raylua.repl()
print("> raylua " .. raylua.version .. " <")
Expand Down
3 changes: 2 additions & 1 deletion tools/api.h
Original file line number Diff line number Diff line change
Expand Up @@ -185,10 +185,11 @@ void DrawPolyLines(Vector2 center, int sides, float radius, float rotation, Colo
bool CheckCollisionRecs(Rectangle rec1, Rectangle rec2)
bool CheckCollisionCircles(Vector2 center1, float radius1, Vector2 center2, float radius2)
bool CheckCollisionCircleRec(Vector2 center, float radius, Rectangle rec)
Rectangle GetCollisionRec(Rectangle rec1, Rectangle rec2)
bool CheckCollisionPointRec(Vector2 point, Rectangle rec)
bool CheckCollisionPointCircle(Vector2 point, Vector2 center, float radius)
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 LoadImageRaw(const char *fileName, int width, int height, int format, int headerSize)
Image LoadImageAnim(const char *fileName, int *frames)
Expand Down

0 comments on commit e4eb705

Please sign in to comment.