C# 클래스 UnityContrib.UnityEditor.EditorGUIEx

Provides helper methods for working with the T:UnityEngine.GUI and T:UnityEditor.EditorGUI classes.
파일 보기 프로젝트 열기: UnityContrib/framework 1 사용 예제들

공개 메소드들

메소드 설명
ChangeCheck ( System.Action content ) : bool

Check if any control was changed inside a block of code.

DrawRectangle ( Rect rect, Color color ) : void

Draws a rectangle at the spcified rect with the specified color.

메소드 상세

ChangeCheck() 공개 정적인 메소드

Check if any control was changed inside a block of code.
public static ChangeCheck ( System.Action content ) : bool
content System.Action /// The callback to invoke between start and end change check. ///
리턴 bool

DrawRectangle() 공개 정적인 메소드

Draws a rectangle at the spcified rect with the specified color.
public static DrawRectangle ( Rect rect, Color color ) : void
rect UnityEngine.Rect /// The position and size of the rectangle. ///
color Color /// The color of the rectangle. ///
리턴 void