C# 클래스 UnityContrib.UnityEngine.GUILayoutEx

Provides helper methods for working with the T:UnityEngine.GUILayout class.
파일 보기 프로젝트 열기: UnityContrib/framework

공개 메소드들

메소드 설명
Horizontal ( Action action ) : void

All controls rendered inside this method will be placed horizontically below each other.

Horizontal ( Action action, GUIContent content, GUIStyle style ) : void

All controls rendered inside this method will be placed horizontically below each other.

Horizontal ( Action action, GUIStyle style ) : void

All controls rendered inside this method will be placed horizontically below each other.

Horizontal ( Action action, Texture2D image, GUIStyle style ) : void

All controls rendered inside this method will be placed horizontically below each other.

Horizontal ( Action action, string text, GUIStyle style ) : void

All controls rendered inside this method will be placed horizontically below each other.

Vertical ( System.Action action ) : void

All controls rendered inside this method will be placed vertically below each other.

Vertical ( System.Action action, GUIContent content, GUIStyle style ) : void

All controls rendered inside this method will be placed vertically below each other.

Vertical ( System.Action action, GUIStyle style ) : void

All controls rendered inside this method will be placed vertically below each other.

Vertical ( System.Action action, Texture2D image, GUIStyle style ) : void

All controls rendered inside this method will be placed vertically below each other.

Vertical ( System.Action action, string text, GUIStyle style ) : void

All controls rendered inside this method will be placed vertically below each other.

메소드 상세

Horizontal() 공개 정적인 메소드

All controls rendered inside this method will be placed horizontically below each other.
public static Horizontal ( Action action ) : void
action Action /// The callback that renders the controls. ///
리턴 void

Horizontal() 공개 정적인 메소드

All controls rendered inside this method will be placed horizontically below each other.
public static Horizontal ( Action action, GUIContent content, GUIStyle style ) : void
action Action /// The callback that renders the controls. ///
content GUIContent /// The text, image, and tooltip for this group. ///
style GUIStyle /// The style to use for background image and padding values. If left out, the background is transparent. ///
리턴 void

Horizontal() 공개 정적인 메소드

All controls rendered inside this method will be placed horizontically below each other.
public static Horizontal ( Action action, GUIStyle style ) : void
action Action /// The callback that renders the controls. ///
style GUIStyle /// The style to use for background image and padding values. If left out, the background is transparent. ///
리턴 void

Horizontal() 공개 정적인 메소드

All controls rendered inside this method will be placed horizontically below each other.
public static Horizontal ( Action action, Texture2D image, GUIStyle style ) : void
action Action /// The callback that renders the controls. ///
image Texture2D /// The texture to display on group. ///
style GUIStyle /// The style to use for background image and padding values. If left out, the background is transparent. ///
리턴 void

Horizontal() 공개 정적인 메소드

All controls rendered inside this method will be placed horizontically below each other.
public static Horizontal ( Action action, string text, GUIStyle style ) : void
action Action /// The callback that renders the controls. ///
text string /// The text to display on group. ///
style GUIStyle /// The style to use for background image and padding values. If left out, the background is transparent. ///
리턴 void

Vertical() 공개 정적인 메소드

All controls rendered inside this method will be placed vertically below each other.
public static Vertical ( System.Action action ) : void
action System.Action /// The callback that renders the controls. ///
리턴 void

Vertical() 공개 정적인 메소드

All controls rendered inside this method will be placed vertically below each other.
public static Vertical ( System.Action action, GUIContent content, GUIStyle style ) : void
action System.Action /// The callback that renders the controls. ///
content UnityEngine.GUIContent /// The text, image, and tooltip for this group. ///
style UnityEngine.GUIStyle /// The style to use for background image and padding values. If left out, the background is transparent. ///
리턴 void

Vertical() 공개 정적인 메소드

All controls rendered inside this method will be placed vertically below each other.
public static Vertical ( System.Action action, GUIStyle style ) : void
action System.Action /// The callback that renders the controls. ///
style UnityEngine.GUIStyle /// The style to use for background image and padding values. If left out, the background is transparent. ///
리턴 void

Vertical() 공개 정적인 메소드

All controls rendered inside this method will be placed vertically below each other.
public static Vertical ( System.Action action, Texture2D image, GUIStyle style ) : void
action System.Action /// The callback that renders the controls. ///
image UnityEngine.Texture2D /// The texture to display on group. ///
style UnityEngine.GUIStyle /// The style to use for background image and padding values. If left out, the background is transparent. ///
리턴 void

Vertical() 공개 정적인 메소드

All controls rendered inside this method will be placed vertically below each other.
public static Vertical ( System.Action action, string text, GUIStyle style ) : void
action System.Action /// The callback that renders the controls. ///
text string /// The text to display on group. ///
style UnityEngine.GUIStyle /// The style to use for background image and padding values. If left out, the background is transparent. ///
리턴 void