Navigation
API > API/Runtime > API/Runtime/CoreUObject
Metadata usable in UPROPERTY for customizing the behavior of Material Expressions TODO: Move this to be contained in that module?
| Name | UM:: |
| Type | enum |
| Header File | /Engine/Source/Runtime/CoreUObject/Public/UObject/ObjectMacros.h |
| Include Path | #include "UObject/ObjectMacros.h" |
Syntax
namespace UM
{
enum
{
OverridingInputProperty,
RequiredInput,
}
}
Values
| Name | Remarks |
|---|---|
| OverridingInputProperty | [PropertyMetadata] Used for float properties in MaterialExpression classes. If the specified FMaterialExpression pin is not connected, this value is used instead. |
| RequiredInput | [PropertyMetadata] Used for FMaterialExpression properties in MaterialExpression classes. If specified the pin need not be connected and the value of the property marked as OverridingInputProperty will be used instead. |