Navigation
Unreal Engine C++ API Reference > Developer > CookMetadata > FCookMetadataPluginEntry
Syntax
uint16 DependencyIndexStart
Remarks
The dependencies are stored in the FCookMetadataPluginHierarchy::PluginDependencies array, and this is an index into it. From there you can get a further index into PluginsEnabledAtCook to get the plugin information. Example: for (uint16 DependencyIndex = Plugin->DependencyIndexStart; DependencyIndex < Plugin->DependencyIndexEnd; DependencyIndex++) { const UE::Cook::FCookMetadataPluginEntry& DependentPlugin = PluginHierarchy.PluginsEnabledAtCook[PluginHierarchy.PluginDependencies[DependencyIndex]]; }