@nativewrappers/fivem 0.0.38 → 0.0.40

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.
package/client/World.d.ts CHANGED
@@ -363,8 +363,8 @@ export declare abstract class World {
363
363
  * @returns {@see AsynchronousRaycastResult} object that must be awaited to get its results.
364
364
  */
365
365
  static raycast(start: Vector3, end: Vector3, losFlags?: IntersectFlags, shapeTestOptions?: number, ignoreEntity?: BaseEntity): AsynchronousRaycastResult;
366
- static raycastDirection(useExpensiveRaycast: true, source: Vector3, direction: Vector3, maxDistance: number): SynchronousRaycastResult;
367
- static raycastDirection(useExpensiveRaycast: false, source: Vector3, direction: Vector3, maxDistance: number): AsynchronousRaycastResult;
366
+ static raycastDirection(useExpensiveRaycast: true, source: Vector3, direction: Vector3, maxDistance: number, losFlags?: IntersectFlags, shapeTestOptions?: number, ignoreEntity?: BaseEntity): SynchronousRaycastResult;
367
+ static raycastDirection(useExpensiveRaycast: false, source: Vector3, direction: Vector3, maxDistance: number, losFlags?: IntersectFlags, shapeTestOptions?: number, ignoreEntity?: BaseEntity): AsynchronousRaycastResult;
368
368
  /**
369
369
  * Cast a ray from the local players camera until it hits an entity
370
370
  *
package/package.json CHANGED
@@ -4,7 +4,7 @@
4
4
  "author": "Remco Troost <d0p3t>",
5
5
  "license": "MIT",
6
6
  "type": "module",
7
- "version": "0.0.38",
7
+ "version": "0.0.40",
8
8
  "publishConfig": {
9
9
  "directory": "lib"
10
10
  },