ScriptableWizard.errorString 错误文本

var errorString : string

Description描述

Allows you to set the error text of the wizard.

允许您设置向导的错误文本。

参见:ScriptableWizard.OnWizardUpdate

ScriptableWizard.errorString 错误文本

Error String on a Scriptable Wizard Window.
在脚本化向导窗口的错误字符串

// C#
// Creates a simple Wizard window and prints an error
// string until you set the number to 5
//创建一个简单的向导窗口并打印错误字符串,直到设置数为5

using UnityEngine;
using UnityEditor;

public class ErrorString : ScriptableWizard {
	public int number = 0;
	[MenuItem ("Example/Show Error String")]
	static void CreateWindow() {
		ScriptableWizard.DisplayWizard("Error String example", typeof(ErrorString), "Close");
	}
	void OnWizardUpdate() {
		helpString = "Set The number to 5";
		if(number != 5)
			errorString = "The number has to be set to 5!";
		else
			errorString = "";
	}
}
最后修改:2011年6月25日 Saturday 11:51

本脚本参考基于Unity 3.4.1f5

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