Navigation
API > API/Runtime > API/Runtime/Core > API/Runtime/Core/IConsoleManager
Overloads
| Name | Remarks | Include Path | Unreal Specifiers |
|---|---|---|---|
void UnregisterConsoleObject
(
IConsoleObject* ConsoleObject, |
Unregisters a console object, if that object was registered. O(n), n is the console object count | HAL/IConsoleManager.h | |
void UnregisterConsoleObject
(
const TCHAR* Name, |
Unregisters a console variable or command by name, if an object of that name was registered. | HAL/IConsoleManager.h |
UnregisterConsoleObject(IConsoleObject *, bool)
Description
Unregisters a console object, if that object was registered. O(n), n is the console object count
| Name | UnregisterConsoleObject |
| Type | function |
| Header File | /Engine/Source/Runtime/Core/Public/HAL/IConsoleManager.h |
| Include Path | #include "HAL/IConsoleManager.h" |
void UnregisterConsoleObject
(
IConsoleObject * ConsoleObject,
bool bKeepState
)
Parameters
| Name | Remarks |
|---|---|
| ConsoleObject | object to remove |
| bKeepState | if the current state is kept in memory until a cvar with the same name is registered |
UnregisterConsoleObject(const TCHAR *, bool)
Description
Unregisters a console variable or command by name, if an object of that name was registered.
| Name | UnregisterConsoleObject |
| Type | function |
| Header File | /Engine/Source/Runtime/Core/Public/HAL/IConsoleManager.h |
| Include Path | #include "HAL/IConsoleManager.h" |
void UnregisterConsoleObject
(
const TCHAR * Name,
bool bKeepState
)
Parameters
| Name | Remarks |
|---|---|
| Name | name of object to remove |
| bKeepState | if the current state is kept in memory until a cvar with the same name is registered |