T | The class implementing the wizard. It has to derive from ScriptableWizard. |
title | The title shown at the top of the wizard window. |
Creates a wizard.
// C# // Simple Wizard that clones an object. using UnityEngine; using UnityEditor; using System.Collections; public class ScriptableWizardDisplayWizard : ScriptableWizard { public GameObject ObjectToCopy = null; public int numberOfCopies = 2; [MenuItem ("Example/Show DisplayWizard usage")] static void CreateWindow() { // Creates the wizard for display ScriptableWizard.DisplayWizard("Copy an object.", typeof(ScriptableWizardDisplayWizard), "Copy!"); } void OnWizardUpdate() { helpString = "Clones an object a number of times"; if(!ObjectToCopy) { errorString = "Please assign an object"; isValid = false; } else { errorString = ""; isValid = true; } } void OnWizardCreate () { for(int i = 0; i < numberOfCopies; i++) Instantiate(ObjectToCopy, Vector3.zero, Quaternion.identity); } }
T | The class implementing the wizard. It has to derive from ScriptableWizard. |
title | The title shown at the top of the wizard window. |
class | The class implementing the wizard. It has to derive from ScriptableWizard. |
createButtonName | The text shown on the create button. |
otherButtonName | The text shown on the optional other button. Leave this parameter out to leave the button out. |
Creates a wizard.
TODO.