Navigation
API > API/Runtime > API/Runtime/Engine
A collection of graph properties used by a value.
If a graph property is true, it means that either the value itself makes has of that property, or one of its dependencies (direct or indirect) has it. This entails these flags are automatically propagated to all dependant values (values that depend on a given one). As an example, if "ReadsPixelNormal" is true on a specific value it means that either that value itself or some other upstream value that value is dependent on reads the pixel normal.
| Name | MIR::EGraphProperties |
| Type | enum |
| Header File | /Engine/Source/Runtime/Engine/Public/Materials/MaterialIR.h |
| Include Path | #include "Materials/MaterialIR.h" |
Syntax
namespace MIR
{
enum EGraphProperties
{
None = 0,
ReadsPixelNormal = 1 << 0,
}
}
Values
| Name | Remarks |
|---|---|
| None | |
| ReadsPixelNormal | Some value reads the pixel normal. |