Navigation
API > API/Plugins > API/Plugins/AudioInsights
Trace provider for the "Sounds Dashboard"
"Sounds Dashboard" displays active audio in the following tree structure:
- Category (i.e. The EntryType of the sound asset, e.g. SoundCue, MetaSound etc)
- Active Sound (i.e. The Active Sound instance playing)
- SoundWave Instances (optional) (i.e. If an entry type can have multiple SoundWaves playing simultaneously (e.g. SoundCue) , individual Soundwaves are shown here)
| Name | UE::Audio::Insights::ESoundDashboardFilterFlags |
| Type | enum |
| Header File | /Engine/Plugins/AudioInsights/Source/AudioInsights/Public/Views/SoundDashboardViewFactory.h |
| Include Path | #include "Views/SoundDashboardViewFactory.h" |
Syntax
namespace UE
{
namespace Audio
{
namespace Insights
{
enum ESoundDashboardFilterFlags
{
None = 0,
MetaSound = 1 << 0,
SoundCue = 1 << 1,
ProceduralSource = 1 << 2,
SoundWave = 1 << 3,
SoundCueTemplate = 1 << 4,
Pinned = 1 << 5,
}
}
}
}
Values
| Name | Remarks |
|---|---|
| None | |
| MetaSound | |
| SoundCue | |
| ProceduralSource | |
| SoundWave | |
| SoundCueTemplate | |
| Pinned |