[Unity3D] Button

Unity3D 2012. 12. 13. 12:19


크기, 위치 지정

GUI.Button

static function Button (position : Rect, text : String) : boolean

static function Button (position : Rect, image : Texture) : boolean

static function Button (position : Rect, content : GUIContent) : boolean

static function Button (position : Rect, text : String, style : GUIStyle) : boolean

static function Button (position : Rect, image : Texture, style : GUIStyle) : boolean

static function Button (position : Rect, content : GUIContent, style : GUIStyle) : boolean


크기, 위치 자동
GUILayout.Button

static function Button (image : Texture, params options : GUILayoutOption[]) : boolean

static function Button (text : String, params options : GUILayoutOption[]) : boolean

static function Button (content : GUIContent, params options : GUILayoutOption[]) : boolean

static function Button (image : Texture, style : GUIStyle, params options : GUILayoutOption[]) : boolean

static function Button (text : String, style : GUIStyle, params options : GUILayoutOption[]) : boolean

static function Button (content : GUIContent, style : GUIStyle, params options : GUILayoutOption[]) : boolean


'Unity3D' 카테고리의 다른 글

[Unity3D]MonoDevelop 글꼴 바꾸기  (0) 2012.12.20
[Unity3D]참고 사이트 모음  (0) 2012.12.18
[Unity3D]UnityEngine Loop  (0) 2012.12.03
[Unity3D]Material Shader 변경  (0) 2012.11.29
Unity3D meta file  (0) 2012.11.18
Posted by SelfishREd
,