INTERNAL_CALL_GetScreenRect() 개인적인 메소드

private INTERNAL_CALL_GetScreenRect ( GUIElement self, Camera camera, Rect &value ) : void
self GUIElement
camera Camera
value Rect
리턴 void
예제 #1
0
        public Rect GetScreenRect([DefaultValue("null")] Camera camera)
        {
            Rect result;

            GUIElement.INTERNAL_CALL_GetScreenRect(this, camera, out result);
            return(result);
        }
예제 #2
0
        public Rect GetScreenRect()
        {
            Rect rect;

            GUIElement.INTERNAL_CALL_GetScreenRect(this, (Camera)null, out rect);
            return(rect);
        }
예제 #3
0
        public Rect GetScreenRect()
        {
            Camera camera = null;
            Rect   result;

            GUIElement.INTERNAL_CALL_GetScreenRect(this, camera, out result);
            return(result);
        }