Advertisement
osdever

VehicleFX

May 11th, 2020
942
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 2.95 KB | None | 0 0
  1.     /// <summary>
  2.     /// An enumeration of VehicleFX flags for car light signals.
  3.     /// </summary>
  4.     [Flags]
  5.     public enum VehicleFX
  6.     {
  7.         /// <summary>
  8.         /// No lights.
  9.         /// </summary>
  10.         None = 0x0,
  11.  
  12.         /// <summary>
  13.         /// The left headlight.
  14.         /// </summary>
  15.         LeftHeadlight = 0x1,
  16.        
  17.         /// <summary>
  18.         /// The right headlight.
  19.         /// </summary>
  20.         RightHeadlight = 0x2,
  21.  
  22.         /// <summary>
  23.         /// The center headlight. (?)
  24.         /// </summary>
  25.         CenterHeadlight = 0x4,
  26.  
  27.         /// <summary>
  28.         /// The left brakelight.
  29.         /// </summary>
  30.         LeftBrakelight = 0x8,
  31.  
  32.         /// <summary>
  33.         /// The right brakelight.
  34.         /// </summary>
  35.         RightBrakelight = 0x10,
  36.  
  37.         /// <summary>
  38.         /// The center brakelight.
  39.         /// </summary>
  40.         CenterBrakelight = 0x20,
  41.  
  42.         /// <summary>
  43.         /// The left reverse light.
  44.         /// </summary>
  45.         LeftReverse = 0x40,
  46.  
  47.         /// <summary>
  48.         /// The right reverse light.
  49.         /// </summary>
  50.         RightReverse = 0x80,
  51.  
  52.         /// <summary>
  53.         /// The left rear signal light (unused).
  54.         /// </summary>
  55.         SignalRearLeft = 0x100,
  56.  
  57.         /// <summary>
  58.         /// The right rear signal light (unused).
  59.         /// </summary>
  60.         SignalRearRight = 0x200,
  61.  
  62.         /// <summary>
  63.         /// The left front signal light (unused).
  64.         /// </summary>
  65.         SignalFrontLeft = 0x400,
  66.  
  67.         /// <summary>
  68.         /// The right front signal light (unused).
  69.         /// </summary>
  70.         SignalFrontRight = 0x800,
  71.  
  72.         /// <summary>
  73.         /// The red police emergency lights.
  74.         /// </summary>
  75.         CopRed = 0x1000,
  76.        
  77.         /// <summary>
  78.         /// The blue police emergency lights.
  79.         /// </summary>
  80.         CopBlue = 0x2000,
  81.  
  82.         /// <summary>
  83.         /// The while police emergency lights (disabled in PlakMP).
  84.         /// </summary>
  85.         CopWhite = 0x4000,
  86.  
  87.         /// <summary>
  88.         /// The combination of all police light flags.
  89.         /// </summary>
  90.         CopLights = 0x7000,
  91.  
  92.         /// <summary>
  93.         /// The combination of left front and left rear signal light flags.
  94.         /// </summary>
  95.         LeftSignal = 0x500,
  96.  
  97.         /// <summary>
  98.         /// The combination of right front and right rear signal light flags.
  99.         /// </summary>
  100.         RightSignal = 0xA00,
  101.        
  102.         /// <summary>
  103.         /// The combination of left, right and center headlight flags.
  104.         /// </summary>
  105.         Headlights = 0x7,
  106.  
  107.         /// <summary>
  108.         /// The combination of left and right reverse light flags.
  109.         /// </summary>
  110.         ReverseLights = 0xC0,
  111.  
  112.         /// <summary>
  113.         /// The combination of left, right and center brakelight flags.
  114.         /// </summary>
  115.         Brakelights = 0x38
  116.     }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement