Version: 2019.3
public static T DisplayWizard (string title);

パラメーター

titleウィザードウィンドウの上部に表示されるタイトル

戻り値

T ウィザード

説明

ウィザードを作成します。

When the user hits the Create button OnWizardCreate function will be called. DisplayWizard will only show one wizard for every wizard class.


Simple Wizard window that copies a GameObject several times.

// Simple Wizard that clones an object.

using UnityEngine; using UnityEditor; using System.Collections;

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

void OnWizardUpdate() { helpString = "Clones an object a number of times"; 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); } }

public static T DisplayWizard (string title, string createButtonName);
public static T DisplayWizard (string title, string createButtonName, string otherButtonName);

パラメーター

titleウィザードウィンドウの上部に表示されるタイトル
createButtonNameCreat ボタンに表示されるテキスト
otherButtonName第3選択肢のボタンとして表示されるテキスト ボタンを除外するためにはこのパラメーターを省略します

戻り値

T ウィザード

説明

ウィザードを作成します。

When the user hits the Create button OnWizardCreate function will be called. DisplayWizard will only show one wizard for every wizard class.


public static ScriptableWizard DisplayWizard (string title, Type klass, string createButtonName= "Create", string otherButtonName= "");

パラメーター

titleウィザードウィンドウの上部に表示されるタイトル
klassウィザードを実装しているクラス ScriptableWizard から派生しています
createButtonNameCreat ボタンに表示されるテキスト
otherButtonName第3選択肢のボタンとして表示されるテキスト ボタンを除外するためにはこのパラメーターを省略します

戻り値

ScriptableWizard ウィザード

説明

ウィザードを作成します。

When the user hits the Create button OnWizardCreate function will be called. DisplayWizard will only show one wizard for every wizard class.

Copyright © 2023 Unity Technologies
优美缔软件(上海)有限公司 版权所有
"Unity"、Unity 徽标及其他 Unity 商标是 Unity Technologies 或其附属机构在美国及其他地区的商标或注册商标。其他名称或品牌是其各自所有者的商标。
公安部备案号:
31010902002961