thorpedosg

d5SWRFTV

Aug 7th, 2018
157
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.79 KB | None | 0 0
  1. _ = function(p) return p; end;
  2. name = _('MFCD');
  3. Description = 'Left MFCD on the left monitor,Right MFCD on the right and camera on the center'
  4. Viewports =
  5. {
  6. Center =
  7. {
  8. x = 0;
  9. y = 0;
  10. width = screen.width-512;
  11. height = screen.height;
  12. viewDx = 0;
  13. viewDy = 0;
  14. aspect = screen.aspect;
  15. }
  16. }
  17.  
  18. LEFT_MFCD =
  19. {
  20. x = screen.width-512;
  21. y = -12;
  22. width = 512;
  23. height = 512;
  24. }
  25.  
  26. RIGHT_MFCD =
  27. {
  28. x = screen.width-512;
  29. y = screen.height-524;
  30. width = 512;
  31. height = 512;
  32. }
  33.  
  34. M2000C_VTB =
  35. {
  36. x = screen.width-512;
  37. y = 0;
  38. width = 512;
  39. height = 512;
  40. }
  41.  
  42. M2000C_RWR =
  43. {
  44. x = screen.width-512;
  45. y = screen.height-512;
  46. width = 500;
  47. height = 500;
  48. }
  49.  
  50. UIMainView = Viewports.Center
Add Comment
Please, Sign In to add comment