Raylib 2.0 Released

Raylib is a cross platform open source C based game framework that is absolutely perfect for beginners that want to get started with game development using C or C++.  It provides a complete C/C++ turn key game development setup with tools, editor and framework all pre-configured, just download and start coding.  If you are interested in learning more about Raylib be sure to check out our earlier video available here.  Raylib just released version 2.0, which now has less external dependencies.  Perhaps the most exciting new feature of this release is support for various Linux and *nix based operating system, a long requested feature.

The highlights of this release from the Raylib forums:

  • Complete removal of external dependencies. Finally, raylib does not require external libraries to be installed and linked along with raylib, all required libraries are contained and compiled within raylib. Obviously some external libraries are required but only the strictly platform-dependant ones, that comes installed with the OS. So, raylib becomes a self-contained platform-independent games development library.
  • Full redesign of audio module to use the amazing mini_al audio library, along with external dependencies removal, OpenAL library has been replaced by mini_al, this brand new library offers automatic dynamic linking with default OS audio systems. Undoubtly, the perfect low-level companion for raylib audio module!
  • Support for continuous integration building through AppVeyor and Travis CI. As a consequence, raylib GitHub develop branch has been completely removed simplyfing the code-base to a single master branch, always stable. Every time a new commit is deployed, library is compiled for up-to 12 different configurations, including multiple platforms, 32bit/64bit and multiple compiler options! All those binaries are automatically attached to any new release!
  • More platforms supported and tested, including BSD family (FreeBSD, openBSD, NetBSD, DragonFly) and Linux-based family platforms (openSUSE, Debian, Ubuntu, Arch, NixOS…). raylib has already been added to some package managers! Oh, and last but not less important, Android 64bit is already supported by raylib!
  • Support for TCC compiler! Thanks to the lack of external dependencies, raylib can now be easily compiled with a minimal toolchain, like the one provide by Tiny C Compiler. It opens the door to an amazing future, allowing, for example, static linkage of libtcc for runtime compilation of raylib-based code… and the library itself if required! Moreover, TCC is blazing fast, it can compile all raylib in just a few seconds!
  • Refactored all raylib configuration #defines into a centralized config.h header, with more than 40 possible configuration options to compile a totally customizable raylib version including only desired options like supported file-formats or specific functionality support. It allows generating a trully ligth-weight version of the library if desired!
  • A part of that, lots of new features, like a brand new font rendering and packaging system for TTF fonts with SDF support (thanks to the amazing STB headers), new functions for CPU image data manipulation, new orthographic 3d camera mode, a complete review of raymath.h single-file header-only library for better consistency and performance, new examples and way, way more.
  • As always, examples and templates have been reviewed and improved to work with new features; some new examples have been added and templates have been prepared for real multiplatform support including Android and HTML5.

These are only the highlight features, for complete details of the 2.0 release are available in the changelog.  Raylib is available here, while the source code is available on Github.

GameDev News CPP


Scroll to Top