Navigation
API > API/Runtime > API/Runtime/Core > API/Runtime/Core/HAL > API/Runtime/Core/HAL/IConsoleManager
References
| Module | Core |
| Header | /Engine/Source/Runtime/Core/Public/HAL/IConsoleManager.h |
| Include | #include "HAL/IConsoleManager.h" |
IConsoleVariable * RegisterConsoleVariableBitRef
(
const TCHAR * CVarName,
const TCHAR * FlagName,
uint32 BitNumber,
uint8 * Force0MaskPtr,
uint8 * Force1MaskPtr,
const TCHAR * Help,
uint32 Flags
)
Remarks
Create a reference to a show flag variable
Parameters
| Name | Description |
|---|---|
| CVarName | must not be 0, e.g. "Show.PostProcessing" |
| FlagName | must not be 0, e.g. "PostProcessing" |
| BitNumber | in the memory defined by Force0MaskPtr and Force1MaskPtr |
| Force0MaskPtr | memory that contains the bits that should be forced to 0 |
| Force1MaskPtr | memory that contains the bits that should be forced to 1 |
| Help | must not be 0 |
| Flags | bitmask combined from EConsoleVariableFlags |