Navigation
API > API/Plugins > API/Plugins/DaySequence
Enum specifying how the modifier resolves the user specified blend weight against the internal blend weight.
| Name | EDaySequenceModifierUserBlendPolicy |
| Type | enum |
| Header File | /Engine/Plugins/Experimental/DaySequence/Source/DaySequence/Public/DaySequenceModifierComponent.h |
| Include Path | #include "DaySequenceModifierComponent.h" |
Syntax
enum EDaySequenceModifierUserBlendPolicy
{
Ignored,
Minimum,
Maximum,
Override,
}
Values
| Name | Remarks |
|---|---|
| Ignored | User specified weights are ignored (i.e. the effective weight is InternallyComputedWeight. |
| Minimum | (default) The effective weight is FMath::Min(InternallyComputedWeight, UserSpecifiedWeight |
| Maximum | The effective weight is FMath::Max(InternallyComputedWeight, UserSpecifiedWeight. |
| Override | The effective weight is UserSpecifiedWeight. |