Interface ISerenityRecipeSectionExporter
A handler that scans the project for one section's ScriptableObjects and appends their recipe DTOs to
the recipe being built. The inverse of ISerenityRecipeSectionImporter. New sections are added by
implementing this interface and registering the exporter with the export engine.
Namespace: Serenity.ProjectRecipe.Infrastructure.Editor.Exporters
Assembly: Serenity.UnityProjectRecipe.Infrastructure.Editor.dll
Syntax
public interface ISerenityRecipeSectionExporter
Properties
SectionName
Declaration
string SectionName { get; }
Property Value
| Type | Description |
|---|---|
| string | The recipe section this exporter produces, e.g. |
Methods
Export(SerenityRecipeExportContext)
Scans for this section's assets under the context's scan root and fills the recipe.
Declaration
void Export(SerenityRecipeExportContext context)
Parameters
| Type | Name | Description |
|---|---|---|
| SerenityRecipeExportContext | context | The shared export context. |