Navigation
API > API/Runtime > API/Runtime/Core > API/Runtime/Core/HAL
References
| Module | Core |
| Header | /Engine/Source/Runtime/Core/Public/HAL/IConsoleManager.h |
| Include | #include "HAL/IConsoleManager.h" |
Syntax
class FAutoConsoleVariableDeprecated
Remarks
A class that can be used to deprecate a CVar - rename your existing CVar to the new name, then create a shadow of it with the old name with something like this:
FAutoConsoleVariableDeprecated ShadowCVar(TEXT("r.newname"), TEXT("r.oldname"), TEXT("5.5")); FAutoConsoleVariableDeprecated ShadowCVar(TEXT("r.newname"), TEXT("r.oldname"), TEXT("5.5"), EShadowCVarBehavior::Assert);
Constructors
| Type | Name | Description | |
|---|---|---|---|
FAutoConsoleVariableDeprecated
(
const TCHAR* Name, |