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

Is there a way to detect all the bricks that are obscuring the camera's view of an object? [FIXED]

Asked by 9 years ago

Basically what I'm trying to achieve is a custom version of "Invisicam" mode as the CameraOcclusionMode property of the player. What it does is that instead of not allowing the camera to go past a part if that part is blocking the camera, the camera will go past the part and make whatever parts that are obstructing the camera's view of the player transparent. Essentially I'm trying to make a similar version of this, but I can't think of any way to do this efficiently and accuratly.

Any help would be appreciated, I'm not looking for a script, just suggestions or a walkthrough.

Thanks.

EDIT

I figured it out by using the Player CameraScript and using the Invisicam module that was a child of the script, I'll post the code below in the answers

1 answer

Log in to vote
0
Answered by 9 years ago

Here's the solution for anyone else who had my same question:

001-- Invisicam Version 2.5 (Occlusion Series)
002-- For the latest standalone version see id=183837794
003-- OnlyTwentyCharacters
004 
005local Invisicam = {}
006 
007---------------
008-- Constants --
009---------------
010 
011local FADE_TARGET = 0.75
012local FADE_RATE = 0.1
013 
014local MODE = {
015    CUSTOM = 1, -- Whatever you want!
View all 253 lines...

That's from the Invisicam module in the CameraScript that's a Player script. Hope this helped anybody.

0
I've been looking for something that would directly cast a ray from one point to another and return all the parts that the ray passed through, and this will probably help me with that. Thanks! xolbStudios 127 — 9y
Ad

Answer this question