Advertisement
Guest User

Untitled

a guest
Aug 23rd, 2012
506
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.78 KB | None | 0 0
  1. _  = function(p) return p; end;
  2. name = _('3 Screen+NO MFDs');
  3. Description = 'Configuration with 3 identical monitors each with its own camera'
  4. Viewports =
  5. {
  6.      Left =
  7.      {
  8.           x = 0;
  9.           y = 0;
  10.           width = 1920;
  11.           height = 1080;
  12.           viewDx = -1;
  13.           viewDy = 0;
  14.           aspect = 1920 / 1080;
  15.      },
  16.  
  17.      Center =
  18.      {
  19.           x = 1920;
  20.           y = 0;
  21.           width = 1920;
  22.           height = 1080;
  23.           viewDx = 0;
  24.           viewDy = 0;
  25.           aspect = 1920 / 1080;
  26.      },
  27.  
  28.      Right =
  29.      {
  30.           x = 3840;
  31.           y = 0;
  32.           width = 1920;
  33.           height = 1080;
  34.           viewDx = 1;
  35.           viewDy = 0;
  36.           aspect = 1920 / 1080;
  37.      }
  38. }
  39.  
  40.  
  41. UIMainView = Viewports.Center
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement