Version: 5.4

説明

ウィザードを開いたときやユーザーがウィザードで何かを変更するたびに呼び出されます

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

参照: ScriptableWizard.DisplayWizard


ScriptableWizard window for cloning a Game Object.

// 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); } }