Lesson 6

Table of Contents

Adding the AkEnvironment to a Trigger

Once the game regions or areas have been defined in a scene, you can use a Trigger to encapsulate the space and detect when other Triggers are entering. In the Wwise Adventure Game and in this certification, we'll be referring to this trigger and its components as an Aux Environment (not to be confused with Audio Environments, which in the Wwise Adventure Game refers to the region-exclusive Scenes).

To create an Aux Environment, you can use the premade AkEnvironment script, included in the Wwise Unity Integration. When this script is added to a Trigger, all game objects with the AkGameObj component set to Environment Aware will be assigned the aux bus when inside the Trigger.

Crucially, Wwise will also need to know which sounds are going to have their Auxiliary sends controlled from the game, and so the corresponding Audio objects should have the Use game-defined auxiliary sends toggle enabled.

[Note]

The AkEnvironment will only affect game objects with an AkGameObj component, set to environment-aware, to keep track of environment related properties such as send values. Learn more about environment-aware objects in the section - Creating an Aux Environment.

In the following steps, you will create an Aux Environment in the starting area (also referred to as Training Area) and ensure that the correct aux bus is assigned using the Profiler. All sounds set to environment-aware and Use game-defined auxiliary sends will then send to the aux bus selected for that area.

  1. In the Unity menu, go to Audiokinetic > Certification > 301 > Lesson 6 and select Adding the AkEnvironment to a Trigger.

  2. In the Hierarchy, expand the AUX Environment game object and select the Training game object.

    The Training game object will have a Mesh Trigger attached. For the sake of demonstration, we've enabled a semi-transparent Mesh Renderer that will allow you to see the sides of the shape. All you need to do, is add the AkEnvironment script and assign it to the correct aux bus.

  3. In the Inspector, click Add Component, then type in AkEnvironment and select it.

    In the Inspector, you will see the AkEnvironment script and, above it, the Collider used.

    Whenever any other game object with a collider enters this Mesh Collider, the AkEnvironment script will check if it's environment-aware. If so, the Wwise object will be assigned to the selected aux bus.

  4. Click the AuxBus Name, expand Wwise 301 > Auxiliary Busses > Default Work Unit > Master Audio Bus > World > AUX > Region_Village and select the Training aux bus.

    That's it! By simply attaching the script and setting the aux bus name, all environment-aware sounds within that region will receive the effects of that aux bus, as long as the 'Use game-defined auxiliary sends' is selected on the Wwise object. Next, let's connect the Profiler and verify the implementation on sounds within the Trigger.

  5. In Wwise, go to the Profiler layout, and in the Advanced Profiler's Voices Graph, click the Filter browse (...) button.

  6. Expand Master-Mixer Hierarchy > Default Work Unit > Master Audio Bus > World > AUX > Region_Village, then select the Training aux bus and click OK.

    The Profiler is ready, so let's connect to the game. To get a better overview while playing, consider positioning Wwise and Unity next to each other, so you can look at the Advanced Profiler and the Game view simultaneously.

  7. Remote Connect to the Wwise Adventure Game (editor), and Play the Scene in Unity.

  8. In the Training area, run to a stone and attack it.

    When attacking, look in the Advanced Profiler > Voices Graph. All Wwise objects triggered from the Player_WeaponSwing Event are now routed through the Training aux bus and receiving a Wwise RoomVerb Effect.

    Let's compare the result to an area with no Aux Environment. The AkEnvironment component on the Village Trigger has been removed, so to try the sound without any Effects applied, you can run to the Village and hit a stone.

  9. Run to the Village, find a stone and attack it.

    With the sound of the weapon without any aux sends, you are ready to set up your own region-based effects.

By adding the AkEnvironment script to the premade Training Trigger, you have now built an Aux Environment in the Training Area. In the following section, you will learn how to create an Aux Environment from scratch.


Was this page helpful?