C# Класс FullInspector.LayoutToolkit.fiLayout

A rule in the layout toolkit. A rule defines how some layout operation will occur. The primary rules are the horizontal and vertical rules, which function similar to Unity's GUILayout.BeginHorizontal and BeginVertical. However, rules are much more flexible; there is also a rule for centering items vertically, among other things.
Показать файл Открыть проект Примеры использования класса

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

Метод Описание
GetSectionRect ( string id, Rect initial ) : Rect

Return the rect for the given section identifier.

RespondsTo ( string id ) : bool

Does this layout rule respond to the given section identifier?

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

GetSectionRect() публичный абстрактный Метод

Return the rect for the given section identifier.
public abstract GetSectionRect ( string id, Rect initial ) : Rect
id string
initial UnityEngine.Rect
Результат UnityEngine.Rect

RespondsTo() публичный абстрактный Метод

Does this layout rule respond to the given section identifier?
public abstract RespondsTo ( string id ) : bool
id string
Результат bool