Navigation
Unreal Engine C++ API Reference > Runtime > CoreUObject > UObject
References
Module | CoreUObject |
Header | /Engine/Source/Runtime/CoreUObject/Public/UObject/CoreRedirects.h |
Include | #include "UObject/CoreRedirects.h" |
Syntax
enum ECoreRedirectMatchFlags
{
None = 0,
AllowPartialMatch = (1 << 0),
DisallowPartialLHSMatch = (1<<1),
}
Values
Name | Description |
---|---|
None | |
AllowPartialMatch | The passed-in CoreRedirectObjectName has null fields in Package, Outer, or Name, and should still be allowed to match against redirectors that were created with a full Package.[Outer:]Name. |
DisallowPartialLHSMatch | Used for Type_Asset redirects to ensure package redirects only match package queries and full path redirects only match full path queries |