FRHD.rs
FRHD.rs is a tool used to create FreeRider HD tracks using the rust programming language.
For JavaScript look at ObeyLordGoomy's tool.
For Python look at Gaetgu's tool.
Usage
Using the library is pretty straightforward. Here are a few examples:
use *;
// Here is an example of implementing a new track
// Want to create a new line? Simple! `track_type` should be a 'p' or 's', for physical or scenery.
my_track.insLine;
// Here are the powerup types. Teleport and vehicles are coming soon!
my_track.insert_check;
my_track.insert_star;
my_track.insert_slow_mo;
my_track.insert_bomb;
my_track.insert_gravity;
my_track.insert_boost;
// To get the track code as a string, run this method:
my_track.generate_code;