Skip to content

Commit

Permalink
Fix eslint warning
Browse files Browse the repository at this point in the history
  • Loading branch information
osyrisrblx committed Oct 17, 2023
1 parent a7e7f82 commit 152ebb0
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions include/roblox.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2048,15 +2048,15 @@ interface RaycastParams {
* property is omitted, the raycast will assume the **Default** collision group.
*/
CollisionGroup: string;
/**
* This property, if `true`, makes the raycast operation use an intersected part's `CanCollide` value in favor of
* its `CanQuery` value when determining whether that part is included in the `RaycastResult`
*/
/**
* This property, if `true`, makes the raycast operation use an intersected part's `CanCollide` value in favor of
* its `CanQuery` value when determining whether that part is included in the `RaycastResult`
*/
RespectCanCollide: boolean;
/**
* When enabled, the query will ignore all part collision properties and perform a brute-force check on every part.
* This will negatively impact performance and should not be used in live experiences.
*/
* When enabled, the query will ignore all part collision properties and perform a brute-force check on every part.
* This will negatively impact performance and should not be used in live experiences.
*/
BruteForceAllSlow: boolean;
/**
* For efficiency and simplicity, this method is the preferred way to add instances to the filter.
Expand Down

0 comments on commit 152ebb0

Please sign in to comment.