Advertisement
Guest User

Untitled

a guest
Aug 23rd, 2012
206
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 1.02 KB | None | 0 0
  1. _  = function(p) return p; end;
  2. name = _('3 Screen+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 = screen.width / 3;
  11.           height = screen.height;
  12.           viewDx = -1;
  13.           viewDy = 0;
  14.           aspect = screen.aspect / 3;
  15.      },
  16.  
  17.      Center =
  18.      {
  19.           x = screen.width / 3;
  20.           y = 0;
  21.           width = screen.width / 3;
  22.           height = screen.height;
  23.           viewDx = 0;
  24.           viewDy = 0;
  25.           aspect = screen.aspect / 3;
  26.      },
  27.  
  28.      Right =
  29.      {
  30.           x = screen.width * 2 / 3;
  31.           y = 0;
  32.           width = screen.width / 3;
  33.           height = screen.height;
  34.           viewDx = 1;
  35.           viewDy = 0;
  36.           aspect = screen.aspect / 3;
  37.      }
  38. }
  39.  
  40. LEFT_MFCD =
  41. {
  42. x = 3840;
  43. y = 0;
  44. width = 640;
  45. height = 540;
  46. }
  47.  
  48. RIGHT_MFCD =
  49. {
  50. x = 3840;
  51. y = 540;
  52. width = 640;
  53. height = 540;
  54. }
  55. UIMainView = Viewports.Center
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement