aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorraysan5 <raysan5@gmail.com>2016-02-21 02:34:07 +0100
committerraysan5 <raysan5@gmail.com>2016-02-21 02:34:07 +0100
commitc86b3d0c05df9cb246f7838a0e2561bdce37063f (patch)
tree533b91ecab78a2c51cc72ee22d51934954816a26
parent9ec47768121766cf12fef5d1bab8c8302cdac3a6 (diff)
downloadraylib-c86b3d0c05df9cb246f7838a0e2561bdce37063f.tar.gz
raylib-c86b3d0c05df9cb246f7838a0e2561bdce37063f.zip
Updated
-rw-r--r--README.md6
1 files changed, 2 insertions, 4 deletions
diff --git a/README.md b/README.md
index fab198bd..49653a85 100644
--- a/README.md
+++ b/README.md
@@ -108,11 +108,9 @@ SpriteFonts system has been improved, adding support for AngelCode fonts (.fnt)
A set of Image manipulation functions have been added to crop, resize, colorize, flip, dither and even draw image-to-image or text-to-image.
-[raymath](https://github.com/raysan5/raylib/blob/develop/src/raymath.h) module has been reviewed and converted to a header-only file for easier portability, functions can also be used as inline.
+[raymath](https://github.com/raysan5/raylib/blob/develop/src/raymath.h) module has been reviewed and converted to a header-only file for easier portability, functions can also be used as inline. Raycast system for 3D picking is now fully functional, including some ray collision-detection functions.
-Raycast system for 3D picking is now fully functional, including some ray collision-detection functions.
-
-[raymath](https://github.com/raysan5/raylib/blob/develop/src/gestures.c) module has redesigned and simplified, now it can process touch events from any source, including mouse. This way, gestures system can be used for any platform.
+[gestures](https://github.com/raysan5/raylib/blob/develop/src/gestures.c) module has redesigned and simplified, now it can process touch events from any source, including mouse. This way, gestures system can be used for any platform.
Raspberry Pi input system has been redesigned to better read raw inputs using generic Linux event handlers (keyboard:`stdin`, mouse:`/dev/input/mouse0`, gamepad:`/dev/input/js0`). Gamepad support has been added.