Scripting Helpers is winding down operations and is now read-only. More info→
Ad
Log in to vote
0

How to obtain a list of all items hit by a ray?

Asked by
oggy521 72
6 years ago

Is it possible to use a raycast from one point to another, and then making a table of all objects which the ray has passed through, rather than just returning the first object hit?

3 answers

Log in to vote
2
Answered by
ABK2017 406 Moderation Voter
6 years ago

I dont know if there’s a more effiecient way, but you can repeatedly GetAllParts and then add them to the ignore list until it returns nothing (nil).

01local function GetAllParts(Ray)
02    local Parts = {}
03    local Last
04 
05    repeat
06        Last = workspace:FindPartOnRayWithIgnoreList(Ray, Parts)
07        table.insert(Parts, Last)
08    until Last == nil
09 
10    return Parts
11end
Ad
Log in to vote
2
Answered by
ozzyDrive 670 Moderation Voter
6 years ago
Edited 6 years ago

You can take advantage of theworkspace.FindPartOnRayWithIgnoreList function. Every time a new contact is found, add it to the ignore list, find the next contact point and repeat the process until there are no points found.

https://gyazo.com/b62269248ed0c683cc1aa0aab3b8c33b

Here's the sample code I wrote to generate the above result:

01local function drawRay(ray)
02    local part = Instance.new("Part")
03 
04    part.Name = "ray"
05    part.Anchored = true
06    part.BrickColor = BrickColor.new("Bright yellow")
07 
08    local origin, direction = ray.Origin, ray.Direction
09 
10    part.Size = Vector3.new(0.2, 0.2, direction.Magnitude)
11    part.CFrame = CFrame.new(origin, origin + direction) * CFrame.new(0, 0, -direction.Magnitude/2)
12 
13    part.Parent = workspace
14    return part
15end
View all 56 lines...

EDIT: Made sure the getAllContactPoints function doesn't return the ray's end point.

Log in to vote
0
Answered by
gullet 471 Moderation Voter
6 years ago

There's no native way of getting them all, you'll have to loop FindPartOnRayWithIgnoreList and keep adding each hit part to the ignore list until there are no more hits.

Answer this question