C# Класс UnityEditor.DecoratorDrawer

Base class to derive custom decorator drawers from.

Наследование: GUIDrawer
Показать файл Открыть проект Примеры использования класса

Открытые методы

Метод Описание
GetHeight ( ) : float

Override this method to specify how tall the GUI for this decorator is in pixels.

OnGUI ( Rect position ) : void

Override this method to make your own GUI for the decorator. See DecoratorDrawer for an example of how to use this.

Защищенные методы

Метод Описание
DecoratorDrawer ( ) : System

Описание методов

DecoratorDrawer() защищенный Метод

protected DecoratorDrawer ( ) : System
Результат System

GetHeight() публичный Метод

Override this method to specify how tall the GUI for this decorator is in pixels.

public GetHeight ( ) : float
Результат float

OnGUI() публичный Метод

Override this method to make your own GUI for the decorator. See DecoratorDrawer for an example of how to use this.

public OnGUI ( Rect position ) : void
position UnityEngine.Rect Rectangle on the screen to use for the decorator GUI.
Результат void