Note: this project is no longer actively maintained.
This project provides some tools for car/ball simulation in Rocket League, and some basic controllers that might be useful for writing a custom bot.
- Clone the repo and its dependencies
git clone https://github.com/samuelpmish/RLUtilities --recursive
- Use cmake to configure the project for the generator you want (Makefiles, Visual Studio, Ninja, ... )
cd RLUtilities
mkdir build
cd build
cmake .. -DCMAKE_BUILD_TYPE=Release
- Build the library
cmake --build . --parallel
Add this repo as a submodule to your project, so that you might easily receive updates to it:
> cd my_rlbot_folder
> git submodule add -b develop [email protected]:samuelpmish/RLUtilities.git
> git submodule update --remote
The project uses CMake, so put add_directory(path/to/RLUtilities)
in your CMakeLists.txt to
include it in an existing CMake project. From there, link it to any target that depends on it.
Download the latest Release.