Version: 2017.4
LanguageEnglish
  • C#
  • JS

Script language

Select your preferred scripting language. All code snippets will be displayed in this language.

ScriptableWizard.OnWizardUpdate()

Suggest a change

Success!

Thank you for helping us improve the quality of Unity Documentation. Although we cannot accept all submissions, we do read each suggested change from our users and will make updates where applicable.

Close

Submission failed

For some reason your suggested change could not be submitted. Please <a>try again</a> in a few minutes. And thank you for taking the time to help us improve the quality of Unity Documentation.

Close

Cancel

Description

This is called when the wizard is opened or whenever the user changes something in the wizard.

This allows you to set the helpString, errorString and enable/disable the Create button via isValid. Also it lets you change labels (for timers i.e.) or buttons when the wizard is being shown

See Also: ScriptableWizard.DisplayWizard


ScriptableWizard window for cloning a Game Object.

#pragma strict
// Simple Wizard that clones an object several times.
public class CloneObjects extends ScriptableWizard {
	public var objectToCopy: GameObject = null;
	public var numberOfCopies: int = 2;
	@MenuItem("Example/Clone objects")
	static function CreateWindow() {
		// Creates the wizard for display
		ScriptableWizard.DisplayWizard("Clone an object.", CloneObjects, "Clone!");
	}
	function OnWizardUpdate() {
		helpString = "Clones an object a number of times and move the cloned objects to the origin";
		if (!objectToCopy) {
			errorString = "Please assign an object";
			isValid = false;
		}
		else {
			errorString = "";
			isValid = true;
		}
	}
	function OnWizardCreate() {
		for (var i: int = 0; i < numberOfCopies; i++)
			Instantiate(objectToCopy, Vector3.zero, Quaternion.identity);
	}
}
// Simple Wizard that clones an object several times.

using UnityEngine; using UnityEditor; using System.Collections;

public class CloneObjects : ScriptableWizard { public GameObject objectToCopy = null; public int numberOfCopies = 2; [MenuItem("Example/Clone objects")] static void CreateWindow() { // Creates the wizard for display ScriptableWizard.DisplayWizard("Clone an object.", typeof(CloneObjects), "Clone!"); }

void OnWizardUpdate() { helpString = "Clones an object a number of times and move the cloned objects to the origin"; 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); } }