INTERNAL_CALL_HitTest() private method

private INTERNAL_CALL_HitTest ( GUIElement self, Vector3 &screenPosition, Camera camera ) : bool
self GUIElement
screenPosition Vector3
camera Camera
return bool
Example #1
0
 public bool HitTest(Vector3 screenPosition, [DefaultValue("null")] Camera camera)
 {
     return(GUIElement.INTERNAL_CALL_HitTest(this, ref screenPosition, camera));
 }
Example #2
0
        public bool HitTest(Vector3 screenPosition)
        {
            Camera camera = null;

            return(GUIElement.INTERNAL_CALL_HitTest(this, ref screenPosition, camera));
        }