Internal_DrawPrefixLabel() 개인적인 정적인 메소드

private static Internal_DrawPrefixLabel ( IntPtr style, Rect position, GUIContent content, int controlID, bool on ) : void
style System.IntPtr
position Rect
content GUIContent
controlID int
on bool
리턴 void
예제 #1
0
 internal void DrawPrefixLabel(Rect position, GUIContent content, int controlID)
 {
     if (content != null)
     {
         GUIStyle.Internal_DrawPrefixLabel(this.m_Ptr, position, content, controlID, false);
     }
     else
     {
         Debug.LogError("Style.DrawPrefixLabel may not be called with GUIContent that is null.");
     }
 }