Navigation
BlueprintAPI > BlueprintAPI/Utilities > BlueprintAPI/Utilities/Struct
Adds a node that breaks a 'Sound Concurrency Settings' into its member fields
Inputs
| Type | Name | Description |
|---|---|---|
| struct | Sound Concurrency Settings |
Outputs
| Type | Name | Description |
|---|---|---|
| integer | Max Count (Dynamic) | The max number of allowable concurrent active voices for voices playing in this concurrency group.Can be mutated at runtime via Blueprint or code (see "Enable MaxCount Platform Scaling" for disablementof runtime manipulation, which in turn allows for platform scaling of the given value). |
| boolean | Limit To Owner | Whether or not to limit the concurrency to per sound owner (i.e. the actor that plays the sound). If the sound doesn't have an owner, it falls back to global concurrency. |
| boolean | Can Recover | Whether or not volume scaling can recover volume ducking behavior when concurrency group sounds stop (default scale mode only). |
| boolean | Enable Max Count Platform Scaling | If true, MaxCount supports platform scaling, but cannot be dynamically changed at runtime (ex. from Blueprint or Gameplay Code). If false, MaxCount is dynamically assignable at runtime, but is not platform scalable. |
| enum | Resolution Rule | Which concurrency resolution policy to use if max voice count is reached. |
| real | Retrigger Time | Amount of time to wait (in seconds) between different sounds which play with this concurrency. Sounds rejected from this will ignore virtualization settings. |
| struct | Max Count (Platform Scaled) | The max number of allowable concurrent active voices for voices playing in this concurrency group.Scalable per platform or platform group. Cannot be mutated at runtime (Disable "Enable MaxCount PlatformScaling" for enablement of MaxCount runtime manipulation). |
| real | Duck Time | Time taken to apply duck using volume scalar. |
| real | Recover Time | Time taken to recover volume scalar duck (default scale mode only). |
| real | Voice Steal Release Time | Time taken to fade out if voice is evicted or culled due to another voice in the group starting. |