aboutsummaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2016-03-17Improved 2D-3D drawingRay
Depth test disabled for 2D and only used on 3D; consequently LINES vs TRIANGLES vs QUADS buffers drawing order maters... but blending also works ok.
2016-03-17Add support for multiple gamepads on RPIRay
2016-03-16Removed previous change that introduced a bugRay
2016-03-16Improved gamepad supportRay
Now it works ok also in RaspberryPi
2016-03-16Reset pointCount for gesturesRay
2016-03-16Corrected bug on GetCollisionRec()Ray
2016-03-16Merge pull request #103 from victorfisac/developRay
physac module redesign (2/3)
2016-03-16Updated headersvictorfisac
2016-03-16Updated and improved physac examplesvictorfisac
2016-03-16physac module redesign (2/3)victorfisac
physac module base almost finished. All collisions are now resolved properly and some force functions was added. COLLIDER_CAPSULE removed for now because in 2D everything is composed by rectangle and circle colliders... The last step is move physics update loop into another thread and update it in a fixed time step based on fps.
2016-03-16Merge remote-tracking branch 'refs/remotes/raysan5/develop' into developvictorfisac
2016-03-13Merge pull request #102 from LelixSuper/developRay
Fix examples and templates compiling on GNU/Linux
2016-03-13Remove GLEW library and uncomment other GNU/Linux dependencesLelixSuper
2016-03-13Convert tabs to spaces when it is possible in Makefile filesLelixSuper
2016-03-12Raname all makefile files to "Makefile"LelixSuper
I've renamed all makefile files to "Makefile" because they appear in the first files.
2016-03-12Add a missing library for compiling on GNU/LinuxLelixSuper
I've added "-ldl" library, it's necessary to compile the project.
2016-03-12Update "libraries" and "includes" sectionLelixSuper
I've cleaned the GNU/Linux compilation, now you can compile without useless parameters.
2016-03-12Update GNU/Linux compilationLelixSuper
If you have raylib on standard directories ("/usr/local/include/raylib/raylib.h" for the header and "/usr/local/lib/libraylib.a" for raylib library) you can compile without edit the makefile.
2016-03-12Edit the default target to conform to GNU standardsLelixSuper
I've changed all default target names with 'all'. Here there is the explanation: <https://www.gnu.org/prep/standards/standards.html#Standard-Targets>.
2016-03-09GESTURE SWIPERay
change name variable
2016-03-07Review GuiToggleButton()Ray
2016-03-06Improved function GetKeyPressed()raysan5
To support multiple keys (including function keys)
2016-03-06Added new functions to draw text on imageraysan5
2016-03-06Default style tweakraysan5
2016-03-06Redesign to use Material type -IN PROGRESS-raysan5
Requires Shader access functions review
2016-03-05Merge pull request #101 from victorfisac/developRay
Redesigned physac module (IN PROGRESS)
2016-03-05Fixed physac header little mistakevictorfisac
2016-03-05Redesigned physics module (IN PROGRESS)victorfisac
physac modules is being redesigned. Physics base behaviour is done and it is composed by three steps: apply physics, resolve collisions and fix overlapping. A basic example is currently in progress. The next steps are try to add torque and unoriented physic collisions and implement physics basic functions to add forces. Rigidbody grounding state is automatically calculated and has a perfect result. Rigidbodies interacts well with each others. To achieve physics accuracy, UpdatePhysics() is called a number of times per frame. In a future, it should be changed to another thread and call it without any target frame restriction. Basic physics example has been redone (not finished) using the new module functions. Forces examples will be redone so I removed it from branch.
2016-03-05Split mesh generation from model loadingraysan5
2016-03-05Support 2d camera system -IN PROGRESS-raysan5
2016-03-053d Camera: Added support for field-of-view Yraysan5
2016-03-03Replaced tabs by spacesRay
2016-03-02Added support for Nearest-Neighbor image scalingraysan5
Specially useful on default font scaling
2016-03-02Security check for unsupported BMFontsraysan5
- Check if first character is the expected Space char (32) - Check if characters are ordered in definition file (.fnt)
2016-03-02Review rlglUnproject() systemraysan5
2016-03-01Updated BoundingBox collision detectionsraysan5
2016-03-01Added color to DrawBoundigBox()raysan5
2016-03-01Adjust buffers usageraysan5
- Removed DrawQuad() function - DrawBillboard() uses DrawBillboardRec() - DrawPlane() uses RL_TRIANGLES - DrawRectangleV() uses RL_TRIANGLES, that way, [shapes] module uses only TRIANGLES buffers.
2016-03-01Do not free model meshraysan5
2016-03-01Corrected memory leakraysan5
2016-02-26Merge remote-tracking branch 'refs/remotes/raysan5/develop' into developvictorfisac
2016-02-23Removed a couple of TODOsRay
2016-02-21Merge pull request #88 from raysan5/develop1.4.0-installer1.4.0Ray
Develop branch integration
2016-02-21Updatedraysan5
2016-02-21Corrected typoraysan5
2016-02-21Updated some filesraysan5
2016-02-21Update README.mdRay
2016-02-21Merge pull request #87 from raysan5/developRay
Integrate Develop branch
2016-02-21Update README.mdRay
2016-02-21Merge pull request #86 from raysan5/masterRay
Small change from master to develop