Navigation
API > API/Runtime > API/Runtime/Core > API/Runtime/Core/FAutoConsoleVariableRef
Overloads
| Name | Remarks | Include Path | Unreal Specifiers |
|---|---|---|---|
FAutoConsoleVariableRef
(
const TCHAR* Name, |
Create a reference to a int console variable | HAL/IConsoleManager.h | |
FAutoConsoleVariableRef
(
const TCHAR* Name, |
Create a reference to a float console variable | HAL/IConsoleManager.h | |
FAutoConsoleVariableRef
(
const TCHAR* Name, |
Create a reference to a bool console variable | HAL/IConsoleManager.h | |
FAutoConsoleVariableRef
(
const TCHAR* Name, |
Create a reference to a FString console variable | HAL/IConsoleManager.h | |
FAutoConsoleVariableRef
(
const TCHAR* Name, |
Create a reference to a FName console variable | HAL/IConsoleManager.h | |
FAutoConsoleVariableRef
(
const TCHAR* Name, |
Create a reference to a int console variable | HAL/IConsoleManager.h | |
FAutoConsoleVariableRef
(
const TCHAR* Name, |
Create a reference to a float console variable | HAL/IConsoleManager.h | |
FAutoConsoleVariableRef
(
const TCHAR* Name, |
Create a reference to a bool console variable | HAL/IConsoleManager.h | |
FAutoConsoleVariableRef
(
const TCHAR* Name, |
Create a reference to a FString console variable | HAL/IConsoleManager.h |
FAutoConsoleVariableRef(const TCHAR , int32 &, const TCHAR , uint32)
Description
Create a reference to a int console variable
| Name | FAutoConsoleVariableRef |
| Type | function |
| Header File | /Engine/Source/Runtime/Core/Public/HAL/IConsoleManager.h |
| Include Path | #include "HAL/IConsoleManager.h" |
| Source | /Engine/Source/Runtime/Core/Private/HAL/ConsoleManager.cpp |
FAutoConsoleVariableRef
(
const TCHAR * Name,
int32 & RefValue,
const TCHAR * Help,
uint32 Flags
)
Parameters
| Name | Remarks |
|---|---|
| Name | must not be 0 |
| Help | must not be 0 |
| Flags | bitmask combined from EConsoleVariableFlags |
FAutoConsoleVariableRef(const TCHAR , float &, const TCHAR , uint32)
Description
Create a reference to a float console variable
| Name | FAutoConsoleVariableRef |
| Type | function |
| Header File | /Engine/Source/Runtime/Core/Public/HAL/IConsoleManager.h |
| Include Path | #include "HAL/IConsoleManager.h" |
| Source | /Engine/Source/Runtime/Core/Private/HAL/ConsoleManager.cpp |
FAutoConsoleVariableRef
(
const TCHAR * Name,
float & RefValue,
const TCHAR * Help,
uint32 Flags
)
Parameters
| Name | Remarks |
|---|---|
| Name | must not be 0 |
| Help | must not be 0 |
| Flags | bitmask combined from EConsoleVariableFlags |
FAutoConsoleVariableRef(const TCHAR , bool &, const TCHAR , uint32)
Description
Create a reference to a bool console variable
| Name | FAutoConsoleVariableRef |
| Type | function |
| Header File | /Engine/Source/Runtime/Core/Public/HAL/IConsoleManager.h |
| Include Path | #include "HAL/IConsoleManager.h" |
| Source | /Engine/Source/Runtime/Core/Private/HAL/ConsoleManager.cpp |
FAutoConsoleVariableRef
(
const TCHAR * Name,
bool & RefValue,
const TCHAR * Help,
uint32 Flags
)
Parameters
| Name | Remarks |
|---|---|
| Name | must not be 0 |
| Help | must not be 0 |
| Flags | bitmask combined from EConsoleVariableFlags |
FAutoConsoleVariableRef(const TCHAR , FString &, const TCHAR , uint32)
Description
Create a reference to a FString console variable
| Name | FAutoConsoleVariableRef |
| Type | function |
| Header File | /Engine/Source/Runtime/Core/Public/HAL/IConsoleManager.h |
| Include Path | #include "HAL/IConsoleManager.h" |
| Source | /Engine/Source/Runtime/Core/Private/HAL/ConsoleManager.cpp |
FAutoConsoleVariableRef
(
const TCHAR * Name,
FString & RefValue,
const TCHAR * Help,
uint32 Flags
)
Parameters
| Name | Remarks |
|---|---|
| Name | must not be 0 |
| Help | must not be 0 |
| Flags | bitmask combined from EConsoleVariableFlags |
FAutoConsoleVariableRef(const TCHAR , FName &, const TCHAR , uint32)
Description
Create a reference to a FName console variable
| Name | FAutoConsoleVariableRef |
| Type | function |
| Header File | /Engine/Source/Runtime/Core/Public/HAL/IConsoleManager.h |
| Include Path | #include "HAL/IConsoleManager.h" |
| Source | /Engine/Source/Runtime/Core/Private/HAL/ConsoleManager.cpp |
FAutoConsoleVariableRef
(
const TCHAR * Name,
FName & RefValue,
const TCHAR * Help,
uint32 Flags
)
Parameters
| Name | Remarks |
|---|---|
| Name | must not be 0 |
| Help | must not be 0 |
| Flags | bitmask combined from EConsoleVariableFlags |
FAutoConsoleVariableRef(const TCHAR , int32 &, const TCHAR , const FConsoleVariableDelegate &, uint32)
Description
Create a reference to a int console variable
| Name | FAutoConsoleVariableRef |
| Type | function |
| Header File | /Engine/Source/Runtime/Core/Public/HAL/IConsoleManager.h |
| Include Path | #include "HAL/IConsoleManager.h" |
| Source | /Engine/Source/Runtime/Core/Private/HAL/ConsoleManager.cpp |
FAutoConsoleVariableRef
(
const TCHAR * Name,
int32 & RefValue,
const TCHAR * Help,
const FConsoleVariableDelegate & Callback,
uint32 Flags
)
Parameters
| Name | Remarks |
|---|---|
| Name | must not be 0 |
| Help | must not be 0 |
| Callback | Delegate called when the variable changes. |
| Flags | bitmask combined from EConsoleVariableFlags |
See Also
- IConsoleVariable::SetOnChangedCallback
FAutoConsoleVariableRef(const TCHAR , float &, const TCHAR , const FConsoleVariableDelegate &, uint32)
Description
Create a reference to a float console variable
| Name | FAutoConsoleVariableRef |
| Type | function |
| Header File | /Engine/Source/Runtime/Core/Public/HAL/IConsoleManager.h |
| Include Path | #include "HAL/IConsoleManager.h" |
| Source | /Engine/Source/Runtime/Core/Private/HAL/ConsoleManager.cpp |
FAutoConsoleVariableRef
(
const TCHAR * Name,
float & RefValue,
const TCHAR * Help,
const FConsoleVariableDelegate & Callback,
uint32 Flags
)
Parameters
| Name | Remarks |
|---|---|
| Name | must not be 0 |
| Help | must not be 0 |
| Callback | Delegate called when the variable changes. |
| Flags | bitmask combined from EConsoleVariableFlags |
See Also
- IConsoleVariable::SetOnChangedCallback
FAutoConsoleVariableRef(const TCHAR , bool &, const TCHAR , const FConsoleVariableDelegate &, uint32)
Description
Create a reference to a bool console variable
| Name | FAutoConsoleVariableRef |
| Type | function |
| Header File | /Engine/Source/Runtime/Core/Public/HAL/IConsoleManager.h |
| Include Path | #include "HAL/IConsoleManager.h" |
| Source | /Engine/Source/Runtime/Core/Private/HAL/ConsoleManager.cpp |
FAutoConsoleVariableRef
(
const TCHAR * Name,
bool & RefValue,
const TCHAR * Help,
const FConsoleVariableDelegate & Callback,
uint32 Flags
)
Parameters
| Name | Remarks |
|---|---|
| Name | must not be 0 |
| Help | must not be 0 |
| Callback | Delegate called when the variable changes. |
| Flags | bitmask combined from EConsoleVariableFlags |
See Also
- IConsoleVariable::SetOnChangedCallback
FAutoConsoleVariableRef(const TCHAR , FString &, const TCHAR , const FConsoleVariableDelegate &, uint32)
Description
Create a reference to a FString console variable
| Name | FAutoConsoleVariableRef |
| Type | function |
| Header File | /Engine/Source/Runtime/Core/Public/HAL/IConsoleManager.h |
| Include Path | #include "HAL/IConsoleManager.h" |
| Source | /Engine/Source/Runtime/Core/Private/HAL/ConsoleManager.cpp |
FAutoConsoleVariableRef
(
const TCHAR * Name,
FString & RefValue,
const TCHAR * Help,
const FConsoleVariableDelegate & Callback,
uint32 Flags
)
Parameters
| Name | Remarks |
|---|---|
| Name | must not be 0 |
| Help | must not be 0 |
| Callback | Delegate called when the variable changes. |
| Flags | bitmask combined from EConsoleVariableFlags |
See Also
- IConsoleVariable::SetOnChangedCallback