ScriptableWizard.OnWizardUpdate 当向导更新

function OnWizardUpdate () : void

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

这允许你设置helpStringerrorString和通过isValid创建按钮以enable/disable。当向导显示,也可以改变标签或按钮。

参见: ScriptableWizard.DisplayWizard

ScriptableWizard.OnWizardUpdate 当向导更新

Scriptable Wizard window for clonning a Game Object.
脚本化向导窗口用于克隆游戏物体。

// C#
// 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);
	}
}
最后修改:2011年6月25日 Saturday 13:01

本脚本参考基于Unity 3.4.1f5

英文部分版权属©Unity公司所有,中文部分© Unity圣典 版权所有,未经许可,严禁转载 。