C# 클래스 UnityEditor.DecoratorDrawer

Base class to derive custom decorator drawers from.

상속: GUIDrawer
파일 보기 프로젝트 열기: CarlosHBC/UnityDecompiled 1 사용 예제들

공개 메소드들

메소드 설명
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