au.streamcaching.NumSoundWavesToClearOnCacheOverflow
au.streamcaching.NumSoundWavesToClearOnCacheOverflow
#Overview
name: au.streamcaching.NumSoundWavesToClearOnCacheOverflow
This variable is created as a Console Variable (cvar).
- type:
Var
- help:
When set > 0, we will attempt to release retainers for only that many sounds every time we have a cache overflow.\n0: reset all retained sounds on cache overflow, >0: evict this many sounds on any cache overflow.
It is referenced in 1
C++ source file.
#Summary
#References in C++ code
#Callsites
This variable is referenced in the following C++ source code:
#Loc: <Workspace>/Engine/Source/Runtime/Engine/Private/AudioStreamingCache.cpp:80
Scope: file
Source code excerpt:
static int32 NumSoundWavesToClearOnCacheOverflowCVar = 0;
FAutoConsoleVariableRef CVarNumSoundWavesToClearOnCacheOverflow(
TEXT("au.streamcaching.NumSoundWavesToClearOnCacheOverflow"),
NumSoundWavesToClearOnCacheOverflowCVar,
TEXT("When set > 0, we will attempt to release retainers for only that many sounds every time we have a cache overflow.\n")
TEXT("0: reset all retained sounds on cache overflow, >0: evict this many sounds on any cache overflow."),
ECVF_Default);
static int32 EnableTrimmingRetainedAudioCVar = 1;