UnityEngine.GUIStyle.INTERNAL_CALL_SetMouseTooltip C# (CSharp) Method

INTERNAL_CALL_SetMouseTooltip() private method

private INTERNAL_CALL_SetMouseTooltip ( GUIStyle self, string tooltip, Rect &screenRect ) : void
self GUIStyle
tooltip string
screenRect Rect
return 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
ファイル: GUIStyle.cs プロジェクト: zuohu/UnityDecompiled
 internal void SetMouseTooltip(string tooltip, Rect screenRect)
 {
     GUIStyle.INTERNAL_CALL_SetMouseTooltip(this, tooltip, ref screenRect);
 }