2D Racing Multiplayer Game Template
  • 🌟Welcome
  • Getting Started
    • ⚡Import The Template
    • đŸ•šī¸Build Project
    • 📂Project Structure
  • Customization
    • 🏁Add New Race Map ( Classic Mode )
    • đŸšĻAdd New Race Map ( Multiplayer Mode )
    • đŸŽī¸Add New Car
    • đŸĒ™Set Cars Price
    • 💾Save System
    • 💰Monetization ( Admob + Unity IAP )
      • 🔷Ads Manager
      • 🔷Reward Free Coins
    • đŸ’ģPlayFab
    • 📃GDPR
    • đŸŽĩAudio System
    • ✨Lighting Effect
  • 🌠UI Animation
  • đŸĨˆSet Race Lap
  • ⌛Set Countdown Return To Room Lobby
  • đŸ’ļReward System ( Multiplayer Mode )
  • Other Informations
    • 📓Changelogs
    • â˜Žī¸Contact
Powered by GitBook
On this page
  1. Customization

Audio System

PreviousGDPRNextLighting Effect

Last updated 1 month ago

You can add new musics or sound effects by below steps:

  1. On Project Window, search "settings data" -> select "Settings Data" asset on The Project Window.

  2. On The Settings Data Inspector Window, click on add musics button -> input music name and add the audio clip you like.

  3. In the script where you want to play new musics, add namespace BK.RacingGame2DTemplate.Common at the top of script -> add the line code AudioManager.Instance.PlayMusic("GameplayNew").

For playing new sound effect, add line code AudioManager.Instance.PlaySFX("YourNameSoundEffect").

For re-skin game, you can easily replace audio clips on The Settings Data Inspector Window.

đŸŽĩ