Advertisement
Guest User

Untitled

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