DependencyIndexStart

The dependencies are stored in the [FCookMetadataPluginHierarchy::PluginDependencies](API\Developer\CookMetadata\FCookMetadataPluginHierarchy\PluginDependencies) array, and this is an index into it.

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]]; }


Ask questions and help your peers Developer Forums

Write your own tutorials or read those from others Learning Library