Answered by
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:
01 | local function drawRay(ray) |
02 | local part = Instance.new( "Part" ) |
06 | part.BrickColor = BrickColor.new( "Bright yellow" ) |
08 | local origin, direction = ray.Origin, ray.Direction |
10 | part.Size = Vector 3. new( 0.2 , 0.2 , direction.Magnitude) |
11 | part.CFrame = CFrame.new(origin, origin + direction) * CFrame.new( 0 , 0 , -direction.Magnitude/ 2 ) |
13 | part.Parent = workspace |
17 | local function drawContactPoint(v 3 ) |
18 | local part = Instance.new( "Part" ) |
22 | part.BrickColor = BrickColor.Red() |
24 | part.Size = Vector 3. new( 0.5 , 0.5 , 0.5 ) |
25 | part.CFrame = CFrame.new(v 3 ) |
27 | part.Parent = workspace |
31 | local function getAllContactPoints(ray) |
36 | local part, point = workspace:FindPartOnRayWithIgnoreList(ray, parts) |
38 | table.insert(parts, part) |
39 | table.insert(points, point) |
48 | local laser = workspace.laser |
50 | local ray = Ray.new(laser.Position, laser.CFrame.LookVector * 200 ) |
53 | local contactPoints = getAllContactPoints(ray) |
54 | for _, point in next , contactPoints do |
55 | drawContactPoint(point) |
EDIT: Made sure the getAllContactPoints
function doesn't return the ray's end point.