Navigation
API > API/Plugins > API/Plugins/TextureGraph
Expression.
| Name | UTG_Expression_IfThenElse |
| Type | class |
| Header File | /Engine/Plugins/TextureGraph/Source/TextureGraph/Public/Expressions/Maths/TG_Expression_IfThenElse.h |
| Include Path | #include "Expressions/Maths/TG_Expression_IfThenElse.h" |
Syntax
UCLASS (MinimalAPI)
class UTG_Expression_IfThenElse : public UTG_Expression_Variant
Inheritance Hierarchy
- UObjectBase → UObjectBaseUtility → UObject → UTG_Expression → UTG_Expression_Variant → UTG_Expression_IfThenElse
Variables
Public
| Name | Type | Remarks | Include Path | Unreal Specifiers |
|---|---|---|---|---|
| ComparisonType | TEnumAsByte< EIfThenElseType > | The type of comparison to use. Individual = IndividualComponent of the components are individually passed through the comparison. AllComponents = All components must succeed check to trigger the Then part of the statement. Magnitude = Grayscale value of the color is used in comparison. | Expressions/Maths/TG_Expression_IfThenElse.h |
|
| Else | FTG_Variant | The value to return if the comparison is unsuccessful if ( |
Expressions/Maths/TG_Expression_IfThenElse.h |
|
| LHS | FTG_Variant | The LHS value for the comparison (LHS |
Expressions/Maths/TG_Expression_IfThenElse.h |
|
| Operator | TEnumAsByte< EIfThenElseOperator > | The type of operator in LHS |
Expressions/Maths/TG_Expression_IfThenElse.h |
|
| RHS | FTG_Variant | The RHS value for the comparison (LHS |
Expressions/Maths/TG_Expression_IfThenElse.h |
|
| Then | FTG_Variant | The value to return if the comparison is successful if ( |
Expressions/Maths/TG_Expression_IfThenElse.h |
|