Navigation

Quick Start

Project Structure

Car Manager

Track Generator

Powerups

Game Systems

Levels

Car AI

Customization

Support

Customization

Wheel Rush allows full customization of the game’s audio and UI elements without modifying core systems. All relevant assets are grouped in clearly organized prefabs for quick editing.


Customizing Sounds

All sound-related assets are stored in the GameAssets prefab:

Location:

Assets/Prefabs/Resources/GameAssets.prefab

Inside this prefab you will find:

To replace or modify them:

  1. Select the GameAssets prefab.
  2. Find the audio fields inside the GameAssets component.
  3. Drag your new audio clips into the appropriate slots.

The SoundManager will automatically use the updated clips at runtime—no code changes required.


Customizing the UI

All UI screens are modular and located under:

Location:

Assets/Prefabs/UIScreens/

Each UI screen is a standalone prefab that contains:

To customize a UI screen:

  1. Open any screen prefab (e.g., MainMenu, GarageScreen, RaceHUD).
  2. Select the visual elements you want to modify.
  3. Replace the sprites, adjust layout, or change text styles as needed.

The UI Manager handles switching between screens automatically, so you can safely update their visuals without breaking functionality.