Navigation

Quick Start

Project Structure

Car Manager

Track Generator

Powerups

Game Systems

Levels

Car AI

Customization

Support

Powerups

Wheel Rush currently includes 6 built-in powerups, all located in:

Assets/Prefabs/Powerups

You can create your own custom powerups, but doing so requires writing additional logic. This section explains how the system works and how to extend it safely.


Powerup Structure

Every powerup follows a consistent structure:

  1. A Trigger Collider
  2. PowerupActivator Script
  3. A Script That Implements IPowerup

This separation ensures that the activation system stays generic and reusable.


Adding a New Powerup

You can create new powerups without breaking the system. Follow these steps:

  1. Duplicate any existing powerup prefab
  2. Remove the existing powerup script from the parent object
  3. Create your own script
  4. Attach your custom script to the duplicated powerup prefab.

Once this is done, the powerup will integrate cleanly with the game’s pickup system.


Future Expansion

There are 6 additional powerups planned for an upcoming release.

These will introduce:

This will make creating custom powerups even easier and more powerful.