Version: 2022.3

Editor.OnPreviewGUI

切换到手册
public void OnPreviewGUI (Rect r, GUIStyle background);

参数

r The rectangle in which to draw the preview.
background 背景图像。

描述

Creates a custom preview for the preview area of the Inspector, the headers of the primary Editor, and the object selector.

You must implement Editor.HasPreviewGUI for this method to be called.

如果实现 OnInteractivePreviewGUI,将仅针对非交互式自定义预览调用此方法。 重写方法应在指定矩形 (r) 中渲染资源预览。 默认实现为无操作。

Note: Inspector previews are limited to the primary Editor of persistent objects, such as GameObjectInspector, MaterialEditor, and TextureInspector. A component cannot have its own Inspector preview.

using UnityEngine;
using UnityEditor;

[CreateAssetMenu] class MyObject : ScriptableObject { public string text; }

// Show a preview of the text saved in MyObject. [CustomEditor(typeof(MyObject))] public class MyObjectEditor : Editor { public override bool HasPreviewGUI() => true;

public override void OnPreviewGUI(Rect r, GUIStyle background) { GUI.Label(r, (target as MyObject).text); } }

另请参阅:OnInteractivePreviewGUI

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