lyra.Weapon.DrawAimAssistDebug
lyra.Weapon.DrawAimAssistDebug
#Overview
name: lyra.Weapon.DrawAimAssistDebug
This variable is created as a Console Variable (cvar).
- type:
Var
- help:
Should we draw some debug stats about aim assist?
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>/Projects/Lyra/Plugins/GameFeatures/ShooterCore/Source/ShooterCoreRuntime/Private/Input/AimAssistInputModifier.cpp:34
Scope (from outer to inner):
file
namespace LyraConsoleVariables
Source code excerpt:
static bool bDrawAimAssistDebug = false;
static FAutoConsoleVariableRef CVarDrawAimAssistDebug(
TEXT("lyra.Weapon.DrawAimAssistDebug"),
bDrawAimAssistDebug,
TEXT("Should we draw some debug stats about aim assist?"),
ECVF_Cheat);
}
///////////////////////////////////////////////////////////////////