@citizenfx/client 2.0.12208-1 → 2.0.12255-1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -19592,6 +19592,12 @@ declare function GetVehicleXenonLightsColour(vehicle: number): number;
19592
19592
  */
19593
19593
  declare function GetVehicleXenonLightsCustomColor(vehicle: number): [boolean, number, number, number];
19594
19594
 
19595
+ /**
19596
+ * A getter for [SET_VEHICLE_XMAS_SNOW_FACTOR](#\_80cc4c9e).
19597
+ * @return Returns the grip factor for the vehicles wheels during xmas weather. default value is 0.2.
19598
+ */
19599
+ declare function GetVehicleXmasSnowFactor(): number;
19600
+
19595
19601
  /**
19596
19602
  * NativeDB Introduced: v2372
19597
19603
  */
@@ -56617,6 +56623,12 @@ declare function SetVehicleXenonLightsColour(vehicle: number, color: number): vo
56617
56623
  */
56618
56624
  declare function SetVehicleXenonLightsCustomColor(vehicle: number, red: number, green: number, blue: number): void;
56619
56625
 
56626
+ /**
56627
+ * SET_VEHICLE_XMAS_SNOW_FACTOR
56628
+ * @param gripFactor amount of grip strength vehicle wheels have when xmas weather is active, 1.0 being normal weather grip. 0.2 is the default.
56629
+ */
56630
+ declare function SetVehicleXmasSnowFactor(gripFactor: number): void;
56631
+
56620
56632
  /**
56621
56633
  * Overrides a floating point value from `visualsettings.dat` temporarily.
56622
56634
  * @param name The name of the value to set, such as `pedLight.color.red`.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@citizenfx/client",
3
- "version": "2.0.12208-1",
3
+ "version": "2.0.12255-1",
4
4
  "description": "Typings for the CitizenFX client JS API.",
5
5
  "main": "index.js",
6
6
  "scripts": {