NLAPhysicalLinkAlignment
/*
* Enumerates link alignment options
*/
UENUM(BlueprintType)
enum ENLAPhysicalLinkAlignment : int
{
/** Fill the entire spline length. */
NLA_Fill UMETA(DisplayName="Fill"),
/** Left-align. */
NLA_Left UMETA(DisplayName="Left"),
/** Center-align. */
NLA_Center UMETA(DisplayName="Center"),
/** Right-align. */
NLA_Right UMETA(DisplayName="Right"),
};Last updated