Navigation
API > API/Runtime > API/Runtime/Core > API/Runtime/Core/IConsoleVariable
Overloads
| Name | Remarks | Include Path | Unreal Specifiers |
|---|---|---|---|
void Set
(
const TCHAR* InValue, |
Set the internal value from the specified string. | HAL/IConsoleManager.h | |
void Set
(
bool InValue, |
Set the internal value from the specified bool. | HAL/IConsoleManager.h | |
void Set
(
int32 InValue, |
Set the internal value from the specified int. | HAL/IConsoleManager.h | |
void Set
(
float InValue, |
Set the internal value from the specified float. | HAL/IConsoleManager.h |
Set(const TCHAR *, EConsoleVariableFlags, FName)
Description
Set the internal value from the specified string.
| Name | Set |
| Type | function |
| Header File | /Engine/Source/Runtime/Core/Public/HAL/IConsoleManager.h |
| Include Path | #include "HAL/IConsoleManager.h" |
void Set
(
const TCHAR * InValue,
EConsoleVariableFlags SetBy,
FName Tag
)
Parameters
| Name | Remarks |
|---|---|
| SetBy | anything in ECVF_LastSetMask e.g. ECVF_SetByScalability |
| Tag | optional Tag to set with the value - only useful when UE_ALLOW_CVAR_HISTORY is set, and when setting in an ARRAY type SetBy |
Set(bool, EConsoleVariableFlags, FName)
Description
Set the internal value from the specified bool.
| Name | Set |
| Type | function |
| Header File | /Engine/Source/Runtime/Core/Public/HAL/IConsoleManager.h |
| Include Path | #include "HAL/IConsoleManager.h" |
void Set
(
bool InValue,
EConsoleVariableFlags SetBy,
FName Tag
)
Set(int32, EConsoleVariableFlags, FName)
Description
Set the internal value from the specified int.
| Name | Set |
| Type | function |
| Header File | /Engine/Source/Runtime/Core/Public/HAL/IConsoleManager.h |
| Include Path | #include "HAL/IConsoleManager.h" |
void Set
(
int32 InValue,
EConsoleVariableFlags SetBy,
FName Tag
)
Set(float, EConsoleVariableFlags, FName)
Description
Set the internal value from the specified float.
| Name | Set |
| Type | function |
| Header File | /Engine/Source/Runtime/Core/Public/HAL/IConsoleManager.h |
| Include Path | #include "HAL/IConsoleManager.h" |
void Set
(
float InValue,
EConsoleVariableFlags SetBy,
FName Tag
)