- Home /
Ray Cast not working for camera.
Hello,
I am trying to make a 3rd person camera script. But it does not work and I don't know what I am doing wrong.
First the explanation: There is a far-cam-point, this is the max distance between player and camera. The close cam point is the same with z=0. If the camera hits a wall, I just need to apply the (negative) distance between the closecampoint and the hit of the raycast to z of farcampoint and can then set the cam position to this new farcampoint.
I draw Debug-Lines all over here: Cyan is farcampoint to closecampoint. Yellow is closecampoint to hit and red is the raycast itself. All lines are aligned over each other, so that is fine. But it doesnt seem to hit anything when I approach a wall. Any help with this would be great.
(Ah, yes...lerp and slerp will come later... ;) )
Here is the code: //[new] Vector3 farCamPoint = player.position + camYRotation pivotOffset+ aimRotation camOffset; Vector3 closeCamOffset=new Vector3(camOffset.x, camOffset.y, 0.0f); Vector3 closeCamPoint= player.position+camYRotation*pivotOffset+aimRotation*closeCamOffset;
Debug.DrawLine(farCamPoint, closeCamPoint, Color.cyan);
RaycastHit hit;
Vector3 raycastDir = farCamPoint - closeCamPoint;
float distance=Vector3.Distance (farCamPoint, closeCamPoint);
//raycastDir.Normalize();
float padding = 0.3f;
if (Physics.Raycast(closeCamPoint, raycastDir, out hit, distance, mask)) {
farCamPoint=new Vector3(camOffset.x, camOffset.y, - Vector3.Distance (closeCamPoint, hit.point));
Debug.Log ("Hit the wall");
}
cam.position=farCamPoint;
Debug.DrawLine(farCamPoint, closeCamPoint, Color.yellow);
Debug.DrawRay (closeCamPoint, raycastDir,Color.red);
Do the walls have colliders on them? And are they in layers which are not excluded from raycasting?
Also, how are you declaring your layer$$anonymous$$ask? Is it a public variable? Did you construct a bitwise statement yourself?
There is a Transform called "player" where the camera turns around.
This is how the mask is created, I think it should only exclude the player and nothing else - not?
And yes, the walls have colliders. I tried it with box-collided walls and with a mesh collider for a whole house, nothing works.
Here is the mask code:
mask = 1 << player.gameObject.layer;
// Add Ignore Raycast layer to mask
mask |= 1 << Layer$$anonymous$$ask.NameToLayer("Ignore Raycast");
// Invert mask
mask = ~mask;
cam = transform;
Answer by ben0bi · May 23, 2012 at 10:31 AM
[Solved]
It was the mask as you mentioned. I just copied it from the camera script in the 3rdPersonShooter example where it is also used for aiming at stuff. (Thats done in another script by me..)
so, set the mask to everything and it works.
mask=1<<LayerToMask.NameToLayer("Everything");
mask=~mask;
and it works... (not really tested yet but it already moves the camera...anywhere...hope its the right spot..i got another ray just now, hope it works with the ray above. ;) )
The other vars are: camOffset: the maximum camera offset from pivotoffset...and pivotOffset: the offset from the player-Transform.
For future use case, you may want to consider making the mask variable declaration public. If you do so, you can view the mask in the inspector, and it will have a drop down check list like it does on any Camera where you can set the layers there. I find this method a lot easier than having to deal with bitwise statements.
Your answer
Follow this Question
Related Questions
RTS camera help 1 Answer
Jarring "snap" on 2d Camera raycast collider 0 Answers
orbiting mouse controlled camera goes thru terrain 3 Answers
Prevent camera from going through walls and meshes 1 Answer
Camera raycast? 2 Answers