Interface ISceneTemplatePipeline
Interface a user should derive from when a user wants to package a custom code sequence when a template is instantiated. ISceneTemplatePipeline are instantiated once when a template is instantiated and are notified multiple times through the instantiation sequence.
Namespace: Global Namespace
Assembly: solution.dll
Syntax
public interface ISceneTemplatePipeline
Methods
Name | Description |
---|---|
AfterTemplateInstantiation(SceneTemplateAsset, Scene, bool, string) | Event called after the template is instantiated and the new scene is still loaded. |
BeforeTemplateInstantiation(SceneTemplateAsset, bool, string) | Event called before the template is instantiated. |
IsValidTemplateForInstantiation(SceneTemplateAsset) | Event called before we display the New Template Dialog to determine if this template should be available to user. |