Navigation
API > API/Runtime > API/Runtime/CoreUObject
| Name | EGetSparseClassDataMethod |
| Type | enum |
| Header File | /Engine/Source/Runtime/CoreUObject/Public/UObject/Class.h |
| Include Path | #include "UObject/Class.h" |
Syntax
enum EGetSparseClassDataMethod
{
CreateIfNull,
ArchetypeIfNull,
ReturnIfNull,
}
Values
| Name | Remarks |
|---|---|
| CreateIfNull | Create a new instance when this class doesn't have any sparse data of its own |
| ArchetypeIfNull | Use the archetype instance (if possible) when this class doesn't have any sparse data of its own |
| ReturnIfNull | Return null when this class doesn't have any sparse data of its own |