Navigation
API > API/Plugins > API/Plugins/CineAssemblyToolsEditor > API/Plugins/CineAssemblyToolsEditor/ICineAssemblyToolsEditorModule
Description
Register a customization for the Production Wizard for the given extended data struct type.
A callback can be provided to construct a custom widget, or leave unbound if the default details view is desired. You can then override the label, icon and if the Production Selection combo box is shown in the wizard for the data tab.
If bHideInWizard is given as true, then the tab is hidden from the Production Wizard completely for the given struct type.
The extended data struct type should already have been registered as a Production extension using RegisterProductionExtension.
| Name | RegisterProductionWizardCustomization |
| Type | function |
| Header File | /Engine/Plugins/VirtualProduction/CinematicAssemblyTools/Source/CineAssemblyToolsEditor/Public/ICineAssemblyToolsEditorModule.h |
| Include Path | #include "ICineAssemblyToolsEditorModule.h" |
void RegisterProductionWizardCustomization
(
const UScriptStruct & ForDataScriptStruct,
FGetWidget MakeCustomWidget,
TAttribute< FText > Label,
TAttribute< FSlateIcon > Icon,
bool bShowProductionSelection,
bool bHideInWizard
)