Adding Custom Fonts
Walkthrough
Create a fonts
folder
Inside your project directory, create a folder named fonts
. This folder will contain all your game fonts.
your-project-dir/ # Your project's root directory.
βββ fonts/ # The directory of your font assets.
βββ src/ # The directory of your code.
β βββ lib.rs # The main file for the game.
βββ Cargo.toml # Rust project manifest.
βββ turbo.toml # Turbo configuration.
Put fonts in the folder
The following file formats are supported: .bdf
, .ttf
, and .otf
.
When you run your game, Turbo will automatically include any font assets in your project's fonts
directory. In your code, you can refer to these fonts by their file stem (the filename minus the extension).
For example, let's say you added a font called awesome.ttf
to the fonts
directory. In your code, you would use it like this:
text!("lorem ipsum...", font = "awesome")