Jump to content

Radar Export second Monitor


Recommended Posts

Howdy,

Can someone help me how to get the MiG21's radar window clean on a second screen? I use the standard export of the A10C and the radar is also displayed, but unfortunately it also overlaps with the mirrored screen. In the A10 and I think the Harrier it works.

Actually just a cosmetic problem, but it bothers me a little now.

My export lua:

_  = function(p) return p; end;
name = _('lalalala');
Description = '3 Screens and L-R MultiMFD'
Viewports =
{
   Center =
     {
          x = 0;
          y = 0;
          width = 3840;
          height = 2160;
          viewDx = 0;
          viewDy = 0;
          aspect = 16/9;
     },
     
		LEFT_MFCD =
		{
          x = 3920;
          y = 1320;
          width = 390;
          height = 390;
		},
					
		RIGHT_MFCD =
		{
          x = 4530;
          y = 1300;
          width = 390;
          height = 390;
		},
}
     
UIMainView = Viewports.Center
LEFT_MFCD  = Viewports.LEFT_MFCD
RIGHT_MFCD = Viewports.RIGHT_MFCD

rada.png

Thanks in advance🙌

 

  • Like 1

Darkstar: Merged

Link to comment
Share on other sites

  • 1 month later...

So hope this helps.

you only need to determine the correct position for your radar the video serves only as an example 🙂  

 

On 7/1/2021 at 5:46 PM, horstweihrauch said:
LEFT_MFCD  = Viewports.LEFT_MFCD
RIGHT_MFCD = Viewports.RIGHT_MFCD

wait a minute, what do you have this line for?

 

why do you need to mirror the main screen again delete these two lines and you have your result

Should the lines be responsible for this.
I have never seen that the main display is also mirrored during an export,

does that make any other sense to them or what's the point? ^^

 

 

otherwise

Spoiler

_  = function(p) return p; end;
name = _('2_monitors_A10C 2 MFDS"');
Description = 'Capt Zeen A10C setup'

--TOTAL GAME VIEWPORT
Viewports =
{
     Center =
     {
          x = 0;
          y = 0;
          width  = 3440;
          height = 1440;
          viewDx = 0;
          viewDy = 0;
          aspect = 2.3888888888889;
     }
}


LEFT_MFCD =
{
     x = -20;
     y = 1435;
     width = 1000;
     height = 1000;
}


RIGHT_MFCD =
{
     x = 950;
     y = 1435;
     width = 1000;
     height = 1000;
   }

ViggenTV =
{
     x = 20;
     y = 500;
     width = 1000;
     height = 1000;
   }

MI24TV =
{
     x = 20;
     y = 0;
     width = 2560;
     height = 1440;
   }

MI24PMAP =
{
     x = -20;
     y = 1425;
     width = 1960;
     height = 1555;
}

MIG21RADAR =
{
     x = -20;
     y = 0;
     width = 1960;
     height = 1555;
}

 

 


UIMainView = Viewports.Center
GU_MAIN_VIEWPORT = Viewports.Center

 

 


Edited by Hobel
Link to comment
Share on other sites

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...