版本:Unity 6 (6000.0)
语言中文
  • C#

ScriptableWizard.OnWizardUpdate()

建议更改

成功!

感谢您帮助我们提高 Unity 文档的质量。尽管我们无法接受所有投稿,但我们会阅读用户提出的每条建议更改,并在适用情况下进行更新。

关闭

提交失败

由于某些原因,无法提交您建议的更改。请在几分钟后<a>重试</a>。感谢您抽出宝贵时间帮助我们提高 Unity 文档的质量。

关闭

取消

描述

它会在向导打开或每次用户在向导中更改内容时调用。

这将允许您通过helpStringerrorStringisValid设置helpStringerrorString并启用/禁用“创建”按钮。它还允许您在显示向导时更改标签(例如,对于计时器)或按钮

其他资源:ScriptableWizard.DisplayWizard


用于克隆游戏对象的 ScriptableWizard 窗口。

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