INTERNAL_CALL_HitTest() 개인적인 메소드

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

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