Advertisement
Guest User

Untitled

a guest
Feb 20th, 2018
134
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.91 KB | None | 0 0
  1. class VehicleSystemsDisplayManagerComponentLeft: VehicleSystemsTemplateLeftPilot
  2. {
  3. class Components
  4. {
  5. class Components : Components
  6. {
  7. CI_FEED=Driver;
  8. };
  9. class EmptyDisplay
  10. {
  11. componentType = "EmptyDisplayComponent";
  12. };
  13. class MinimapDisplay
  14. {
  15. componentType = "MinimapDisplayComponent";
  16. resource = "RscCustomInfoMiniMap";
  17. };
  18. class VehicleMissileDisplay
  19. {
  20. componentType = "TransportFeedDisplayComponent";
  21. source = "Missile";
  22. };
  23. class SensorDisplayL1
  24. {
  25. componentType = "SensorsDisplayComponent";
  26. range[] = {16000,8000,4000,2000};
  27. resource = "RscCustomInfoSensors";
  28. };
  29. };
  30. };
  31. class VehicleSystemsDisplayManagerComponentRight: VehicleSystemsTemplateRightPilot
  32. {
  33. defaultDisplay = "SensorDisplay";
  34. class Components
  35. {
  36. class Components : Components
  37. {
  38. CI_FEED=Driver;
  39. };
  40. class EmptyDisplay
  41. {
  42. componentType = "EmptyDisplayComponent";
  43. };
  44. class MinimapDisplay
  45. {
  46. componentType = "MinimapDisplayComponent";
  47. resource = "RscCustomInfoMiniMap";
  48. };
  49. class VehicleMissileDisplay
  50. {
  51. componentType = "TransportFeedDisplayComponent";
  52. source = "Missile";
  53. };
  54. class SensorDisplayR1
  55. {
  56. componentType = "SensorsDisplayComponent";
  57. range[] = {16000,8000,4000,2000};
  58. resource = "RscCustomInfoSensors";
  59. };
  60. };
  61. };
  62. class ForcedCam
  63. {
  64. componentType = "VehicleSystemsDisplayManager";
  65. defaultDisplay = "VehicleDriverDisplay";
  66. x = 11;
  67. y = 11;
  68. class Components
  69. {
  70. class VehicleDriverDisplay
  71. {
  72. componentType = "TransportFeedDisplayComponent";
  73. source = "Driver";
  74. };
  75. };
  76. };
  77. };
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement