a.StripFramesOnCompression
a.StripFramesOnCompression
#Overview
name: a.StripFramesOnCompression
The value of this variable can be defined or overridden in .ini config files. 1
.ini config file referencing this setting variable.
This variable is created as a Console Variable (cvar).
- type:
Var
- help:
1 = Strip every other frame on animations that have an even number of frames. 0 = off
It is referenced in 1
C++ source file.
#Summary
#Setting Variables
#References In INI files
Location: <Workspace>/Projects/Lyra/Config/DefaultDeviceProfiles.ini:61, section: [Mobile DeviceProfile]
- INI Section:
Mobile DeviceProfile
- Raw value:
1
- Is Array:
False
#References in C++ code
#Callsites
This variable is referenced in the following C++ source code:
#Loc: <Workspace>/Engine/Source/Runtime/Engine/Private/Animation/AnimSequence.cpp:79
Scope: file
Source code excerpt:
int32 GPerformFrameStrippingOddFramedAnimations = 0;
static const TCHAR* StripFrameCVarName = TEXT("a.StripFramesOnCompression");
static const TCHAR* OddFrameStripStrippingCVarName = TEXT("a.StripOddFramesWhenFrameStripping");
static FAutoConsoleVariableRef CVarFrameStripping(
StripFrameCVarName,
GPerformFrameStripping,
TEXT("1 = Strip every other frame on animations that have an even number of frames. 0 = off"));