a.StripOddFramesWhenFrameStripping
a.StripOddFramesWhenFrameStripping
#Overview
name: a.StripOddFramesWhenFrameStripping
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 = When frame stripping apply to animations with an odd number of frames too. 0 = only even framed animations
It is referenced in 1
C++ source file.
#Summary
#Setting Variables
#References In INI files
Location: <Workspace>/Projects/Lyra/Config/DefaultDeviceProfiles.ini:62, 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:80
Scope: file
Source code excerpt:
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"));