Описание
Базовый класс для создания пользовательских превью.
Вы указываете, какой тип является предварительным просмотром, используя атрибут CustomPreview, производный от ObjectPreview. Ниже вы можете увидеть небольшой пример, который будет отображать название проверяемого объекта. Окно предварительного просмотра появится в нижней части окна Инспектора.
using UnityEngine;
using UnityEditor;
[CustomPreview(typeof(GameObject))]
public class MyPreview : ObjectPreview
{
public override bool HasPreviewGUI()
{
return true;
}
public override void OnPreviewGUI(Rect r, GUIStyle background)
{
GUI.Label(r, target.name + " is being previewed");
}
}
Свойства
target | Предварительный просмотр объекта. |
Публичные Методы
DrawPreview | This is the first entry point for Preview Drawing. |
GetInfoString | Implement this method to show object information on top of the object preview. |
GetPreviewTitle | Override this method if you want to change the label of the Preview area. |
HasPreviewGUI | Can this component be Previewed in its current state? |
Initialize | Called when the Preview gets created with the objects being previewed. |
MoveNextTarget | Called to iterate through the targets, this will be used when previewing more than one target. |
OnInteractivePreviewGUI | Implement to create your own interactive custom preview. Interactive custom previews are used in the preview area of the inspector and the object selector. |
OnPreviewGUI | Implement to create your own custom preview for the preview area of the inspector, primary editor headers and the object selector. |
OnPreviewSettings | Override this method if you want to show custom controls in the preview header. |
ResetTarget | Called to Reset the target before iterating through them. |