Skip to content

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")
Learn More