Navigation
API > API/Runtime > API/Runtime/Core > API/Runtime/Core/IModularFeatures
Description
Queries for a specific modular feature. Returns NULL if the feature is not available. Does not assert. Usually you should just call GetModularFeature instead, after calling IsModularFeatureAvailable().
| Name | GetModularFeatureImplementation |
| Type | function |
| Header File | /Engine/Source/Runtime/Core/Public/Features/IModularFeatures.h |
| Include Path | #include "Features/IModularFeatures.h" |
IModularFeature * GetModularFeatureImplementation
(
const FName Type,
const int32 Index
)
Pointer to the feature interface, or NULL if it's not available right now.
Parameters
| Name | Remarks |
|---|---|
| Type | The type of feature we're looking for |
| Index | The index of the implementation (there may be multiple implementations of the same feature registered.) |