Navigation
API > API/Runtime > API/Runtime/Engine
| |
|
| Name |
EMaxConcurrentResolutionRule::Type |
| Type |
enum |
| Header File |
/Engine/Source/Runtime/Engine/Classes/Sound/SoundConcurrency.h |
| Include Path |
#include "Sound/SoundConcurrency.h" |
Syntax
namespace EMaxConcurrentResolutionRule
{
enum Type
{
PreventNew,
StopOldest,
StopFarthestThenPreventNew,
StopFarthestThenOldest,
StopLowestPriority,
StopQuietest,
StopLowestPriorityThenPreventNew,
Count,
}
}
Values
| Name |
Remarks |
| 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. |
| Count |
|