Version
Wwise Unreal Integration Documentation
|
You can use Unreal's Niagara VFX system to build complex effects system with visual programming paradigms. For additional information about the Niagara system, refer to the Niagara Overview.
The Wwise Unreal Integration provides the necessary code and Niagara modules to post and update Wwise Events from within a Niagara system.
The plugin can be installed as an Engine or Game plugin. It is installed automatically alongside the Wwise Unreal Engine Integration plugin. After the plugin is installed, you can activate it in the Unreal Editor. To activate it, select Edit > Plugins and then select Wwise Niagara Integration.
The integration includes a Niagara Data Interface for Wwise Events, which you can use to reference Wwise Event and Game Parameter assets in their Niagara systems. This Data Interface is only compatible with Niagara CPU simulations. You can use it to post fire-and-forget Events, as well as persistent Events, which can be controlled as the simulation progresses. In the case of persistent Events, the data interface tracks an internal "audio handle" which is used to map particle or emitter instances to posted Events.
Note: If you want to use Wwise Events in a GPU simulation, you can use the Export Particle Data Module as shown in Exporting Particle Data to Blueprints. |
Parameters:
The Niagara Wwise Event Data Interface implements functions for posting Events and updating their playback and GameObject parameters. These functions are available in Niagara modules, but not directly in a Niagara emitter's stack. The integration includes a set of basic Niagara modules which expose each of these functions to the Niagara stack.
Note: These modules are inside a plugin, so when you add a new module to a script, you must select the Plugins filter in order for them to appear in the Add new Module selection box. |
Parameters:
Behavior:
This module posts "fire-and-forget" Events, which do not require management during a particle or the emitter's lifetime. This module posts the Event on a temporary GameObject at a given location, with a given orientation.
Note: Events with infinite duration cannot post with this method, because there is no way to stop them outside of a call to StopAll(). |
Warning: Posting a large number of Wwise Events in a short time frame from a particle system can overload the sound engine. Ensure that you limit the number of Events the system can post per frame, or set playback limits in your Wwise project. |
Parameters:
Behavior: Creates an AkComponent at the given position with the specified rotation and posts the provided Event on it. The AkComponent for a given posted Event is kept alive by modules in the update loop. This ensures that if particles die or are culled, the AkComponents are destroyed and do not leak memory. If the modules are not updated in the Update scripts (System, Emitter, Particle), then the AKComponents are destroyed. In this case, one frame of audio is played after the post, and is immediatley killed. Whether the posted Event stops when its component is destroyed depends on the Stop when Component is Destroyed settings on the Niagara Wwise Event Data Interface.
If this module is placed in an Update stage of the Niagara system, the Event is only posted once per instance (emitter or particle) when the Post Event Condition is met, and keeps the AkComponent alive. If other persistent Event modules are used in the update stage, they keep the AkComponent alive, and the Post Persistent Event module can be placed instead in a Spawn stage of the emitter stack.
Note: When using Persistent Events, it is critical to use the same attribute for the Wwise Event Data parameter in modules that deal with the same persistent Event. Using the same attribute makes the instance data associated with each particle available in other modules. This attribute can be at the User, System, or Emitter level. |
You can use the following modules to control playback of the persistent Event, set Game Parameters on the AkComponent's GameObject, or update the AkComponent's position and orientation, which then update the GameObject within the Sound Engine.
Parameters:
Behavior:
Sets the AkComponent's position.
Parameters:
Behavior:
Sets the AkComponent's rotation.
Parameters:
Behavior:
Sets the Game Parameter value on the AkComponent's GameObject.
Parameters:
Parameters:
Monitor the Wwise Profiler closely when designing Niagara systems that post Wwise Events. Use the Max Plays per Tick parameter to help limit the load on the SoundEngine when the number of spawned particles is excessive, but if the audio Events are long enough, this can still lead to a large number of concurrent voices. Use the object playback limit settings in the Wwise project to set a hard limit on the number of voices a particle system can spawn.
The Export Particle Data module provides an alternative solution to connect a Niagara system to the Wwise Sound Engine. This module exports arbitrary particle data to a Blueprint which implements the Receive Particle Data interface. You can then use any Wwise Integration features which are exposed in Blueprints. By default, the Export Particle Data module exports two vectors and a float value, which can pass information about each particle such as its position, velocity, persistent ID, or age.
The Wwise Integration Unreal Gyms project provides sample Niagara systems that demonstrate how to use the aforementioned Niagara Wwise Event Data interface and its modules, as well as Niagara systems and Blueprint actors that demonstrate how to use the Export Particle Data with both CPU and GPU particle systems.
These samples post persistent Events that follow particle trajectories, set Game Parameters on those Events, and post fire-and-forget Events when particles collide.
Note: The sample GPU particle system requires the Generate Mesh Distance Fields setting to be enabled. See Mesh Distance Fields Properties. |
The provided Niagara modules are compatible with Unreal 5.X and later. If you are using Unreal 4, you can still use the provided Wwise Niagara functions, but you must recreate the relevant Niagara modules.
You can do this by creating an asset of type FX > Niagara Module Script.
Questions? Problems? Need more info? Contact us, and we can help!
Visit our Support pageRegister your project and we'll help you get started with no strings attached!
Get started with Wwise