ScriptableWizard.helpString 帮助文本

var helpString : string

Description描述

Allows you to set the help text of the wizard.

允许您设置向导的帮助文本。

参见:ScriptableWizard.OnWizardUpdate

ScriptableWizard.helpString 帮助文本

Help string on a Scriptable Wizard Window.
在脚本化向导窗口的帮助字符串

// C#
// Creates a simple Wizard window and prints the HelpString
// in the Wizard window.
//创建一个简单的向导窗口并打印帮助字符串

using UnityEngine;
using UnityEditor;

public class HelpString : ScriptableWizard {

	[MenuItem ("Example/Show Help String")]
	static void CreateWindow() {
		ScriptableWizard.DisplayWizard("", typeof(HelpString), "Finish");
	}
	void OnWizardUpdate() {
		helpString = "This string describes what the Scriptable Wizard does.";
	}
}
最后修改:2011年6月25日 Saturday 11:45

本脚本参考基于Unity 3.4.1f5

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