Navigation
API > API/Runtime > API/Runtime/Engine > API/Runtime/Engine/Sound
References
| Module | Engine |
| Header | /Engine/Source/Runtime/Engine/Classes/Sound/SoundConcurrency.h |
| Include | #include "Sound/SoundConcurrency.h" |
Syntax
namespace EMaxConcurrentResolutionRule
{
enum Type
{
PreventNew,
StopOldest,
StopFarthestThenPreventNew,
StopFarthestThenOldest,
StopLowestPriority,
StopQuietest,
StopLowestPriorityThenPreventNew,
UMETA =(Hidden),
}
}
Values
| Name | Description |
|---|---|
| PreventNew | When Max Concurrent sounds are active do not start a new sound. |
| StopOldest | When Max Concurrent sounds are active stop the oldest and start a new one. |
| StopFarthestThenPreventNew | When Max Concurrent sounds are active stop the furthest sound. |
| StopFarthestThenOldest | When Max Concurrent sounds are active stop the furthest sound. |
| StopLowestPriority | Stop the lowest priority sound in the group. |
| StopQuietest | Stop the sound that is quietest in the group. |
| StopLowestPriorityThenPreventNew | Stop the lowest priority sound in the group. |
| UMETA |