Navigation
API > API/Runtime > API/Runtime/CoreUObject > API/Runtime/CoreUObject/FLinkerLoad
Description
Determines if the specified import belongs to a native "compiled in" package (as opposed to an asset-file package). Recursive if the specified import is not a package itself.
| Name | IsImportNative |
| Type | function |
| Header File | /Engine/Source/Runtime/CoreUObject/Public/UObject/LinkerLoad.h |
| Include Path | #include "UObject/LinkerLoad.h" |
| Source | /Engine/Source/Runtime/CoreUObject/Private/UObject/LinkerLoad.cpp |
bool IsImportNative
(
const int32 ImportIndex
) const
True if the specified import comes from (or is) a "compiled in" package, otherwise false (it is an asset import).
Parameters
| Name | Remarks |
|---|---|
| ImportIndex | An index into the ImportMap, defining the import you wish to check. |