Navigation
API > API/Runtime > API/Runtime/Engine > API/Runtime/Engine/UDeviceProfile
Overloads
| Name | Remarks | Include Path | Unreal Specifiers |
|---|---|---|---|
bool GetConsolidatedCVarValue
(
const TCHAR* CVarName, |
Get the string value of a CVar that is held in this device profile, or in any parent device profile. | DeviceProfiles/DeviceProfile.h | |
bool GetConsolidatedCVarValue
(
const TCHAR* CVarName, |
Get the int32 value of a CVar that is held in this device profile, or in any parent device profile. | DeviceProfiles/DeviceProfile.h | |
bool GetConsolidatedCVarValue
(
const TCHAR* CVarName, |
Get the float value of a CVar that is held in this device profile, or in any parent device profile. | DeviceProfiles/DeviceProfile.h |
GetConsolidatedCVarValue(const TCHAR *, FString &, bool)
Description
Get the string value of a CVar that is held in this device profile, or in any parent device profile.
| Name | GetConsolidatedCVarValue |
| Type | function |
| Header File | /Engine/Source/Runtime/Engine/Classes/DeviceProfiles/DeviceProfile.h |
| Include Path | #include "DeviceProfiles/DeviceProfile.h" |
| Source | /Engine/Source/Runtime/Engine/Private/DeviceProfiles/DeviceProfile.cpp |
bool GetConsolidatedCVarValue
(
const TCHAR * CVarName,
FString & OutString,
bool bCheckDefaults
) const
true if the CVar was found in this device profile
Parameters
| Name | Remarks |
|---|---|
| CVarName | The name of the CVar to find |
| OutString | The string value of the CVar, if found |
| bCheckDefaults | Whether to also check the IConsoleManager for the global default value for the CVar |
GetConsolidatedCVarValue(const TCHAR *, int32 &, bool)
Description
Get the int32 value of a CVar that is held in this device profile, or in any parent device profile.
| Name | GetConsolidatedCVarValue |
| Type | function |
| Header File | /Engine/Source/Runtime/Engine/Classes/DeviceProfiles/DeviceProfile.h |
| Include Path | #include "DeviceProfiles/DeviceProfile.h" |
| Source | /Engine/Source/Runtime/Engine/Private/DeviceProfiles/DeviceProfile.cpp |
bool GetConsolidatedCVarValue
(
const TCHAR * CVarName,
int32 & OutValue,
bool bCheckDefaults
) const
true if the CVar was found in this device profile
Parameters
| Name | Remarks |
|---|---|
| CVarName | The name of the CVar to find |
| OutString | The int32 value of the CVar, if found |
| bCheckDefaults | Whether to also check the IConsoleManager for the global default value for the CVar |
GetConsolidatedCVarValue(const TCHAR *, float &, bool)
Description
Get the float value of a CVar that is held in this device profile, or in any parent device profile.
| Name | GetConsolidatedCVarValue |
| Type | function |
| Header File | /Engine/Source/Runtime/Engine/Classes/DeviceProfiles/DeviceProfile.h |
| Include Path | #include "DeviceProfiles/DeviceProfile.h" |
| Source | /Engine/Source/Runtime/Engine/Private/DeviceProfiles/DeviceProfile.cpp |
bool GetConsolidatedCVarValue
(
const TCHAR * CVarName,
float & OutValue,
bool bCheckDefaults
) const
true if the CVar was found in this device profile
Parameters
| Name | Remarks |
|---|---|
| CVarName | The name of the CVar to find |
| OutString | The float value of the CVar, if found |
| bCheckDefaults | Whether to also check the IConsoleManager for the global default value for the CVar |