Navigation
Unreal Engine C++ API Reference > Plugins > Niagara
References
Module | Niagara |
Header | /Engine/Plugins/FX/Niagara/Source/Niagara/Classes/NiagaraPlatformSet.h |
Include | #include "NiagaraPlatformSet.h" |
Syntax
USTRUCT&40;&41;
struct FNiagaraPlatformSetCVarCondition
Remarks
Imposes a condition that a CVar must contain a set value or range of values for a platform set to be enabled.
Variables
Type | Name | Description | |
---|---|---|---|
![]() ![]() ![]() |
uint32: 1 | bUseMaxFloat | True if we should apply the maximum restriction for float CVars. |
![]() ![]() ![]() |
uint32: 1 | bUseMaxInt | True if we should apply the maximum restriction for int CVars. |
![]() ![]() ![]() |
uint32: 1 | bUseMinFloat | True if we should apply the minimum restriction for float CVars. |
![]() ![]() ![]() |
uint32: 1 | bUseMinInt | True if we should apply the minimum restriction for int CVars. |
![]() ![]() ![]() |
FName | CVarName | The name of the CVar we're testing the value of. |
![]() ![]() ![]() |
ENiagaraCVarConditionResponse | FailResponse | If this CVar condition fails, how should this affect the state of the Platform Set? |
![]() ![]() ![]() |
float | MaxFloat | If the value of the CVar is greater than this maximum then the PlatformSet will not be enabled. |
![]() ![]() ![]() |
int32 | MaxInt | If the value of the CVar is greater than this maximum then the PlatformSet will not be enabled. |
![]() ![]() ![]() |
float | MinFloat | If the value of the CVar is less than this minimum then the PlatformSet will not be enabled. |
![]() ![]() ![]() |
int32 | MinInt | If the value of the CVar is less than this minimum then the PlatformSet will not be enabled. |
![]() ![]() ![]() |
ENiagaraCVarConditionResponse | PassResponse | If this CVar condition passes, how should this affect the state of the Platform Set? |
![]() ![]() ![]() |
bool | Value | The value this CVar must contain for this platform set to be enabled. |
Constructors
Type | Name | Description | |
---|---|---|---|
![]() |
Functions
Type | Name | Description | |
---|---|---|---|
![]() ![]() |
bool | CheckValue
(
bool CVarValue |
|
![]() ![]() |
bool | CheckValue
(
int32 CVarValue |
|
![]() ![]() |
bool | CheckValue
(
float CVarValue |
|
![]() ![]() |
bool | Evaluate
(
const UDeviceProfile* DeviceProfile, |
Return true if this condition is met for the given device profile. |
![]() ![]() |
bool | Evaluate_Internal
(
const UDeviceProfile* DeviceProfile, |
|
![]() ![]() |
IConsoleVariable * | GetCVar () |
Returns the CVar for this condition. |
![]() ![]() |
T | GetCVarValue
(
IConsoleVariable* CVar |
|
![]() ![]() |
bool | GetCVarValue
(
IConsoleVariable* CVar |
|
![]() ![]() |
int32 | GetCVarValue
(
IConsoleVariable* CVar |
|
![]() ![]() |
float | GetCVarValue
(
IConsoleVariable* CVar |
|
![]() |
void |