UnityEngine.GUILayer.INTERNAL_CALL_HitTest C# (CSharp) Method

INTERNAL_CALL_HitTest() private method

private INTERNAL_CALL_HitTest ( GUILayer self, Vector3 &screenPosition ) : GUIElement
self GUILayer
screenPosition Vector3
return GUIElement
        private static extern GUIElement INTERNAL_CALL_HitTest(GUILayer self, ref Vector3 screenPosition);
    }

Usage Example

コード例 #1
0
 public GUIElement HitTest(Vector3 screenPosition)
 {
     return(GUILayer.INTERNAL_CALL_HitTest(this, ref screenPosition));
 }