Navigation
API > API/Runtime > API/Runtime/Core > API/Runtime/Core/FAutoConsoleCommand
Overloads
| Name | Remarks | Include Path | Unreal Specifiers |
|---|---|---|---|
FAutoConsoleCommand
(
const TCHAR* Name, |
Register a console command that takes no arguments | HAL/IConsoleManager.h | |
FAutoConsoleCommand
(
const TCHAR* Name, |
Register a console command that takes arguments | HAL/IConsoleManager.h | |
FAutoConsoleCommand
(
const TCHAR* Name, |
Register a console command that takes an output device | HAL/IConsoleManager.h | |
FAutoConsoleCommand
(
const TCHAR* Name, |
Register a console command that takes an output device | HAL/IConsoleManager.h | |
FAutoConsoleCommand
(
const TCHAR* Name, |
Register a console command that takes a world argument | HAL/IConsoleManager.h | |
FAutoConsoleCommand
(
const TCHAR* Name, |
Register a console command that takes arguments, a world argument and an output device | HAL/IConsoleManager.h |
FAutoConsoleCommand(const TCHAR , const TCHAR , const FConsoleCommandDelegate &, uint32)
Description
Register a console command that takes no arguments
| Name | FAutoConsoleCommand |
| 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 |
FAutoConsoleCommand
(
const TCHAR * Name,
const TCHAR * Help,
const FConsoleCommandDelegate & Command,
uint32 Flags
)
Parameters
| Name | Remarks |
|---|---|
| Name | The name of this command (must not be nullptr) |
| Help | Help text for this command |
| Command | The user function to call when this command is executed |
| Flags | Optional flags bitmask |
FAutoConsoleCommand(const TCHAR , const TCHAR , const FConsoleCommandWithArgsDelegate &, uint32)
Description
Register a console command that takes arguments
| Name | FAutoConsoleCommand |
| 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 |
FAutoConsoleCommand
(
const TCHAR * Name,
const TCHAR * Help,
const FConsoleCommandWithArgsDelegate & Command,
uint32 Flags
)
Parameters
| Name | Remarks |
|---|---|
| Name | The name of this command (must not be nullptr) |
| Help | Help text for this command |
| Command | The user function to call when this command is executed |
| Flags | Optional flags bitmask |
FAutoConsoleCommand(const TCHAR , const TCHAR , const FConsoleCommandWithOutputDeviceDelegate &, uint32)
Description
Register a console command that takes an output device
| Name | FAutoConsoleCommand |
| 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 |
FAutoConsoleCommand
(
const TCHAR * Name,
const TCHAR * Help,
const FConsoleCommandWithOutputDeviceDelegate & Command,
uint32 Flags
)
Parameters
| Name | Remarks |
|---|---|
| Name | The name of this command (must not be nullptr) |
| Help | Help text for this command |
| Command | The user function to call when this command is executed |
| Flags | Optional flags bitmask |
FAutoConsoleCommand(const TCHAR , const TCHAR , const FConsoleCommandWithArgsAndOutputDeviceDelegate &, uint32)
Description
Register a console command that takes an output device
| Name | FAutoConsoleCommand |
| 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 |
FAutoConsoleCommand
(
const TCHAR * Name,
const TCHAR * Help,
const FConsoleCommandWithArgsAndOutputDeviceDelegate & Command,
uint32 Flags
)
Parameters
| Name | Remarks |
|---|---|
| Name | The name of this command (must not be nullptr) |
| Help | Help text for this command |
| Command | The user function to call when this command is executed |
| Flags | Optional flags bitmask |
FAutoConsoleCommand(const TCHAR , const TCHAR , const FConsoleCommandWithWorldDelegate &, uint32)
Description
Register a console command that takes a world argument
| Name | FAutoConsoleCommand |
| 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 |
FAutoConsoleCommand
(
const TCHAR * Name,
const TCHAR * Help,
const FConsoleCommandWithWorldDelegate & Command,
uint32 Flags
)
Parameters
| Name | Remarks |
|---|---|
| Name | The name of this command (must not be nullptr) |
| Help | Help text for this command |
| Command | The user function to call when this command is executed |
| Flags | Optional flags bitmask |
FAutoConsoleCommand(const TCHAR , const TCHAR , const FConsoleCommandWithWorldArgsAndOutputDeviceDelegate &, uint32)
Description
Register a console command that takes arguments, a world argument and an output device
| Name | FAutoConsoleCommand |
| 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 |
FAutoConsoleCommand
(
const TCHAR * Name,
const TCHAR * Help,
const FConsoleCommandWithWorldArgsAndOutputDeviceDelegate & Command,
uint32 Flags
)
Parameters
| Name | Remarks |
|---|---|
| Name | The name of this command (must not be nullptr) |
| Help | Help text for this command |
| Command | The user function to call when this command is executed |
| Flags | Optional flags bitmask |