Difference between revisions of "Documentation/Engine/Sound/Modding"

From SCS Modding Wiki
Jump to navigation Jump to search
(Create own bank - Step by step)
(Create own bank - Step by step)
Line 16: Line 16:
 
# Set the '''name''' of the new bank.<br>''The bank name determines the name of the bank file so it is strongly recommended to use system independen names (lowercase chars, no spaces,...).''
 
# Set the '''name''' of the new bank.<br>''The bank name determines the name of the bank file so it is strongly recommended to use system independen names (lowercase chars, no spaces,...).''
 
# That is it!<br>New GUID is automatically create by FMOD for the new bank, so you have own independent bank which can be used in the game for modded sounds.
 
# That is it!<br>New GUID is automatically create by FMOD for the new bank, so you have own independent bank which can be used in the game for modded sounds.
 +
 +
Notes:
 +
- Always create new bank because creating new GUID for the bank is necessary!
 +
- If you create new project from other templates (for ex. from your older project) also always create new bank. The GUIDs have to be unique!

Revision as of 09:01, 5 March 2020

Modding Sound

FMOD requires each sound bank to have its own globally unique identifier (GUID). It also requires that the main mix buses of the master bank of each sound have the same GUIDs.
FMOD Studio does not provide a user interface to edit GUIDs, so to make it easier to create a correctly authored third party sounds, we are providing our Master Bank as a template for the new sound projects.

All modded sounds must be a part of new FMOD bank to be usable for the game.
Clicking the link below you can download "template.bank" FMOD Studio project.
You need install FMOD Studio software to authoring new sound for the game.

Create own bank - Step by step

  1. Download template.bank project.
  2. Unzip project to the 'your new sound project' folder.
  3. Rename "template.fspro" file (in project root folder) to "[my project name].fspro".
    (Not necessary but recommended.)
  4. Open your project (simply open [my project name].fspro file) in FMOD Studio software.
  5. There are three browsers that can appear in an event editor window: the events browser, the banks browser, and the assets browser.
    To create a new bank, right click in an empty space in the banks browser and select "New Bank".
  6. Set the name of the new bank.
    The bank name determines the name of the bank file so it is strongly recommended to use system independen names (lowercase chars, no spaces,...).
  7. That is it!
    New GUID is automatically create by FMOD for the new bank, so you have own independent bank which can be used in the game for modded sounds.

Notes: - Always create new bank because creating new GUID for the bank is necessary! - If you create new project from other templates (for ex. from your older project) also always create new bank. The GUIDs have to be unique!