UnityEngine.RectTransformUtility.INTERNAL_CALL_RectangleContainsScreenPoint C# (CSharp) Method

INTERNAL_CALL_RectangleContainsScreenPoint() private method

private INTERNAL_CALL_RectangleContainsScreenPoint ( RectTransform rect, Vector2 &screenPoint, Camera cam ) : bool
rect RectTransform
screenPoint Vector2
cam Camera
return bool
        private static extern bool INTERNAL_CALL_RectangleContainsScreenPoint(RectTransform rect, ref Vector2 screenPoint, Camera cam);
        /// <summary>

Usage Example

コード例 #1
0
 public static bool RectangleContainsScreenPoint(RectTransform rect, Vector2 screenPoint, Camera cam)
 {
     return(RectTransformUtility.INTERNAL_CALL_RectangleContainsScreenPoint(rect, ref screenPoint, cam));
 }