UnityEngine.GUIStyle.INTERNAL_CALL_SetMouseTooltip C# (CSharp) 메소드

INTERNAL_CALL_SetMouseTooltip() 개인적인 메소드

private INTERNAL_CALL_SetMouseTooltip ( GUIStyle self, string tooltip, Rect &screenRect ) : void
self GUIStyle
tooltip string
screenRect Rect
리턴 void
        private static extern void INTERNAL_CALL_SetMouseTooltip(GUIStyle self, string tooltip, ref Rect screenRect);
        private static void Internal_DrawPrefixLabel(IntPtr style, Rect position, GUIContent content, int controlID, bool on)

Usage Example

예제 #1
0
 internal void SetMouseTooltip(string tooltip, Rect screenRect)
 {
     GUIStyle.INTERNAL_CALL_SetMouseTooltip(this, tooltip, ref screenRect);
 }