SkillAgentSearch skills...

AudioConductor

Audio Conductor is a tool that enhances the usability of audio features (AudioClip/AudioSource) in Unity, providing greater convenience in managing and controlling audio assets.

Install / Use

/learn @CyberAgentGameEntertainment/AudioConductor
About this skill

Quality Score

0/100

Supported Platforms

Universal

README

<p align="center"> <img width=500 src="./Images/logo_white.png#gh-dark-mode-only" alt="AudioConductor"> <img width=500 src="./Images/logo_color.png#gh-light-mode-only" alt="AudioConductor"> </p>

Audio Conductor

license license license

Docs (English, 日本語)

Audio Conductor is a tool that enhances the usability of audio features (AudioClip/AudioSource) in Unity, providing greater convenience in managing and controlling audio assets. You can define AudioClip and related parameters in a cue-sheet/cue/track style.

Table of Contents

<details> <summary>Details</summary> </details>

Concept

Track

The unit of play.
It has the following parameters:

  • Name
  • AudioClip
  • Volume
  • Volume range
  • Pitch
  • Pitch range
  • Start sample
  • End sample
  • Loop start sample
  • Loop
  • Random weight
  • Priority
  • Fade-in/fade-out time

When loop is enabled, the track will play from the start sample to the end sample and then loop back from the loop start sample to the end sample. When loop is disabled, the track will stop after playing from the start sample to the end sample.

Cue

An object that groups tracks.
Playback by specifying the "name" or "index value" of the track.
It has the following parameters:

  • Name
  • Category ID
  • Throttle type
  • Throttle limit
  • Volume
  • Volume range
  • Pitch
  • Pitch range
  • Play type
  • Track list

There are two play types: sequential play and random play.
Sequential play plays the track list in order from the top.
Random play plays randomly selected tracks depending on the weight of each track.

Cue-sheet

An object that groups cues.
It has the following parameters:

  • Name
  • Throttle type
  • Throttle limit
  • Volume
  • Pitch
  • Cue list

Runtime settings

It has the following parameters:

  • Throttle type
  • Throttle limit
  • Category list

Category

Any category can be defined. (e.g. BGM/SE/Voice)
Assigning AudioMixerGroup to a category will set it as the output for AudioSource.

Volume

The volume range can be set to randomly increase or decrease the volume.
For example, if the volume is 0.5 and the volume range is 0.2, the actual volume will be randomly determined in the range of 0.4 to 0.6. (Value range 0.00 to 1.00)
Volume range can be set to cue/track.
The AudioSource volume is the value calculated by multiplying the cue-sheet/cue/track actual volume.

Pitch

The Pitch range can be set to randomly increase or decrease the pitch. For example, if the pitch is 1 and the pitch range is 0.02, the actual pitch will be randomly determined in the range of 0.98 to 1.02. (Value range 0.01 to 3.00)
Pitch range can be set for a cue/track.
The AudioSource pitch is the value calculated by multiplying the cue-sheet/cue/track actual pitch.
If pitch Invert is enabled, the value will be a negative number.

Throttle type/Throttle limit

Throttle limit means "Limit of concurrent play". The number of audios that are allowed to be played at the same time. (0 is unlimited).
If a new play request is made while the limit is reached, it will be handled depending on the throttle type.

Throttle type means "Concurrent play control type". There are two throttle types: "priority order" and "first come, first served".
In the case of "priority order," if the priority of the new request is greater than or equal to the priority of the currently playing track, the track with the lowest priority is stopped and the new request is played. In the case of "first come, first served", the new request will be rejected.

The evaluation is made in order of cue, cue-sheet, category, and runtime settings.

Editor settings

It has the following parameters:

  • Color definition list

Color definitions consist of name and color.
It can be associated with a cue/track when editing a cue-sheet.
For example, "Editing: red" and "Done: green" make edit status easier to understand.

Setup

Requirements

  • Unity 2021.3 or higher.

Install

  1. Open the Package Manager from Window > Package Manager
  2. "+" button > Add package from git URL
  3. Enter the following
    • https://github.com/CyberAgentGameEntertainment/AudioConductor.git?path=/Packages/AudioConductor
<p align="center"> <img src="./Images/install_01.png" alt="Package Manager"> </p>

Or, open Packages/manifest.json and add the following to the dependencies block.

{
    "dependencies": {
      "jp.co.cyberagent.audioconductor": "https://github.com/CyberAgentGameEntertainment/AudioConductor.git?path=/Packages/AudioConductor"
    }
}

If you want to set the target version, write as follows.

  • https://github.com/CyberAgentGameEntertainment/AudioConductor.git?path=/Packages/AudioConductor#1.0.0

To update the version, rewrite the version as described above.
If you don't want to specify a version, you can also update the version by editing the hash of this library in the package-lock.json file.

{
  "dependencies": {
      "jp.co.cyberagent.audioconductor": {
      "version": "https://github.com/CyberAgentGameEntertainment/AudioConductor.git?path=/Packages/AudioConductor",
      "depth": 0,
      "source": "git",
      "dependencies": {},
      "hash": "..."
    }
  }
}

Create setting assets

You Create assets from Assets > Create > Audio Conductor.
This menu can also be opened from the context menu of the project view.

<p align="center"> <img width="70%" src="./Images/create_assets_01.png" alt="Create Assets"> </p>

Create runtime settings asset

You create a runtime settings asset by selecting Settings.
Can create more than one of this asset, but only one can be used.
You edit it in the inspector.

<p align="center"> <img width="70%" src="./Images/create_assets_02.png" alt="Runtime Asset"> </p>

Create editor settings asset

You create a editor settings asset by selecting EditorSettings.
Only one of this asset should be created in a project.
You edit it in the inspector.

<p align="center"> <img width="70%" src="./Images/create_assets_03.png" alt="Editor Asset"> </p>

Create cue-sheet assets

You create a cue-sheet assets by selecting CueSheetAsset.
This may be created as many times as needed.
You edit it in the editor window that open from the inspector. See Edit cue-sheet for more information.

<p align="center"> <img width="70%" src="./Images/create_assets_04.png" alt="CueSheet Asset"> </p>

Edit cue-sheet

The operation selection buttons vertically aligned on the left side switch between panes.
From the top: Edit cue-sheet parameters, Edit cues/tracks, Other operations.

<p align="center"> <img src="./Images/edit_cuesheet_01.png" alt="Select Pane"> </p>

Edit cue-sheet parameters

In this pane, you edit the cue-sheet name, concurrent play control, volume, pitch, etc.

<p align="center"> <img width="70%" src="./Images/edit_cuesheet_02.png" alt="Edit CueSheet Parameters"> </p>

Edit cues/tracks

This pane consists of a multi-column list and an inspector.
At the top of the list is a toggle button to show/hide columns and a search field.
In this pane, you can add, delete and edit cues/tracks.

<p align="center"> <img width="70%" src="./Images/edit_cuesheet_03.png" alt="Edit Cues/Tracks"> </p>

Add cues/tracks

Add a cue/track from the context menu. Tracks can only be added with the parent cue selected.
You can also add a cue/track by drag-and-drop an AudioClip in project onto the list.

<p align="center"> <img src="./Images/edit_cuelist_01.png" alt="Add Cues/Tracks"> </p>

Remove cues/tracks

Remove cues/tracks from the context menu.
You can also remove them with the backspace key or delete key.

<p align="center"> <img src="./Images/edit_cuelist_02.png" alt="Remove Cues/Tracks"> </p>

Edit cue/track parameters

Some parameters of cues/tracks are shown on the list.
You can edit Values from pull-down menus or input fields.
When cues/tracks are selected, detailed parameters are displayed in the inspector. You can also preview the cue/track.

<p align="center"> <img width="50%" src="./Images/edit_cuelist_03.png" alt="Edit Cues/Tracks in List"> </p> <p align="center"> <img width="50%" src="./Images/edit_cuelist_04.png" alt="Edit Cues/Tracks in Inspector"> </p>

Other operations

Operations currently provided are export/import.

<p align="center"> <img width="70%" src=
View on GitHub
GitHub Stars104
CategoryDevelopment
Updated13d ago
Forks5

Languages

C#

Security Score

95/100

Audited on Mar 8, 2026

No findings