Version: 2017.3

描述

当用户单击 Create 按钮时,将调用此函数。

在此处执行任何最终创建/修改操作。调用 OnCreateWizard 后,向导将自动关闭。

另请参阅:ScriptableWizard.DisplayWizard

\ ScriptableWizard 窗口,用于选择特定“type”的游戏对象。

// Editor Script that lets you "Select" all the GameObjects that have a certain Component.

using UnityEngine; using UnityEditor; using System.Collections;

public class ScriptableWizardOnWizardCreate : ScriptableWizard { [MenuItem("Example/OnWizardCreate example")] public static void SelectAllOfTypeMenuIem() { ScriptableWizard.DisplayWizard( "Select objects of type ...", typeof(ScriptableWizardOnWizardCreate), "Select"); }

void OnWizardCreate() { Object[] objs = FindObjectsOfType(typeof(GameObject)); ArrayList selectionBuilder = new ArrayList(); foreach (GameObject go in objs) { if (go.GetComponent<Camera>()) selectionBuilder.Add(go); } Selection.objects = selectionBuilder.ToArray(typeof(GameObject)) as GameObject[]; } }
Copyright © 2023 Unity Technologies
优美缔软件(上海)有限公司 版权所有
"Unity"、Unity 徽标及其他 Unity 商标是 Unity Technologies 或其附属机构在美国及其他地区的商标或注册商标。其他名称或品牌是其各自所有者的商标。
公安部备案号:
31010902002961