Navigation
API > API/Runtime > API/Runtime/EngineSettings
Implements the settings for the UConsole class.
| Name | UConsoleSettings |
| Type | class |
| Header File | /Engine/Source/Runtime/EngineSettings/Classes/ConsoleSettings.h |
| Include Path | #include "ConsoleSettings.h" |
Syntax
UCLASS (Config=Input, defaultconfig, MinimalAPI)
class UConsoleSettings : public UObject
Inheritance Hierarchy
- UObjectBase → UObjectBaseUtility → UObject → UConsoleSettings
Constructors
| Name | Remarks | Include Path | Unreal Specifiers |
|---|---|---|---|
UConsoleSettings
(
const FObjectInitializer& ObjectInitializer |
ConsoleSettings.h |
Variables
Public
| Name | Type | Remarks | Include Path | Unreal Specifiers |
|---|---|---|---|---|
| AutoCompleteCommandColor | FColor | The autocomplete color used for executable commands. | ConsoleSettings.h |
|
| AutoCompleteCVarColor | FColor | The autocomplete color used for mutable CVars. | ConsoleSettings.h |
|
| AutoCompleteFadedColor | FColor | The autocomplete color used for command descriptions and read-only CVars. | ConsoleSettings.h |
|
| AutoCompleteMapPaths | TArray< FString > | List of relative paths (e.g. Content/Maps) to search for map names for auto-complete usage. | ConsoleSettings.h |
|
| BackgroundOpacityPercentage | float | Amount of transparency of the console background. | ConsoleSettings.h |
|
| bDisplayHelpInAutoComplete | bool | Display the first line of any available help text in the auto-complete window, if a description isn't available | ConsoleSettings.h |
|
| bOrderTopToBottom | bool | Whether we legacy bottom-to-top ordering or regular top-to-bottom ordering | ConsoleSettings.h |
|
| HistoryColor | FColor | The color used for the previously typed commands history. | ConsoleSettings.h |
|
| InputColor | FColor | The color used for text input. | ConsoleSettings.h |
|
| ManualAutoCompleteList | TArray< struct FAutoCompleteCommand > | Manual list of auto-complete commands and info specified in BaseInput.ini | ConsoleSettings.h |
|
| MaxScrollbackSize | int32 | The maximum number of lines the console keeps in its output history. | ConsoleSettings.h |
|
Functions
Public
| Name | Remarks | Include Path | Unreal Specifiers |
|---|---|---|---|
TArray< FString > GetFilteredManualAutoCompleteCommands
(
FStringView Substring |
Returns an array with the auto-complete command names that match all the words in the substring. | ConsoleSettings.h |