x


SphereCast casts from the circumference, not the center of the sphere

Is this behaviour of Physics.SphereCast correct? I mean, it seems that SphereCast casts starting from the circumference, not the center of the sphere.

For example if you add a sphere to a game object and try this code

using UnityEngine;

public class test : MonoBehaviour {

public bool onGroundDown=false;
public bool onGroundLat=false;
public bool onGroundFront=false;
public bool onGroundRear=false;
public float width =0.8f;
Vector3 sphereCenter;   
RaycastHit hit;

void FixedUpdate(){ 
sphereCenter=transform.position;
onGroundDown = Physics.SphereCast(sphereCenter, radius, -transform.up , out hit, radius);
onGroundLat    = Physics.SphereCast(sphereCenter, radius, transform.right , out hit, radius);
onGroundFront = Physics.SphereCast(sphereCenter, radius, transform.forward , out hit, radius);
onGroundRear =  Physics.SphereCast(sphereCenter, radius, -transform.forward , out hit, radius);
}

}

you obtain this result:

alt text

Since i want to find all the contact points of a sphere (without using a collider) is there a way to do this using spherecast? To be clear, i want to do something like this:

http://newtondynamics.com/forum/viewtopic.php?f=14&t=5999

UPDATE 11/10/2010 corrected the esposition

more ▼

asked Oct 31 '10 at 03:08 AM

michele gravatar image

michele
61 5 5 14

(comments are locked)
10|3000 characters needed characters left

1 answer: sort voted first

There are several things wrong with this question:

  1. Spherecast's center is the center that you specify. Of course it's center is different from the transform's center. It has nothing to do with the transform center unless you pass the transform's center as the center of the spherecast when you call it.

  2. You assume that the transform position is at the center of the object when it may not be. The transform's position is wherever the pivot is located. It could be below, on top of or even 1000000 units on the x axis away from the center of the object.

  3. Physics.Spherecast works exactly as it should. You provide a center point, a radius, a direction to move, (optionally a RaycastHit,) and a distance to sweep. The Physics will move the sphere of the radius provided in the direction provided by the distance provided and if there is a collision, it will return true. Otherwise it will return false.

Whatever it is that you consider "expected behaviour" seems to be mistaken. Perhaps you should explain what it is that you expect to happen. A sphere of radius 0.5 cast a distance of 0.5 in a direction should hit any colliders whose exteriors are positioned between position 0.5 and 1.0 on that axis and whose exteriors are facing the object.

This is what your spherecast is doing:

  ____ _ _ _
 /    \      \ 
|   0.5|-0.5->|
 \____/_ _ _ /
    |---1.0---|

//contact points are the first points at which colliders within the
//sweep area touched the sphere being swept
more ▼

answered Nov 09 '10 at 08:34 PM

skovacs1 gravatar image

skovacs1
10k 11 25 91

I explain better what i want to do. I want to use spherecast to check if a sphere collide with anything. So this is what i do:

1)add an empty game object 2)add a sphere collider with isTrigger checked (radius 0.5 center (0,0,0) so pivot coincide with the center of the tranform). the collider is not used,its just to have a visual repr. of the sphere 3)add the code above 4)I expect that i can check if the sphere collides with anything via the various onGroundDown, onGroundLat, onGroundFront.

But it doenst work.its like the spherecast is always "shifted" respect the sphere collider.

Nov 10 '10 at 01:58 PM michele

A spherecast will sweep a sphere through 3D space. That's what the distance parameter is for. You are providing a distance of radius so it will sweep radius units in the direction that you provided. If you didn't want it to sweep, you could provide a distance of 0, but why use Spherecast in this case? If you don't want it to sweep, why not just use OverlapSphere or CheckSphere?

Nov 10 '10 at 04:44 PM skovacs1

I do want to do a sweep test. Im using the spherecast to find all the contact points of a wheel, for this reason im using a spherecast (raycast doesnt find all the contact point). So i put the wheel at the center of the transform and i do a spherecast from the center of the transform with radius the radius of the wheel (and lenght of the sweep radius). So I EXPECT that with onGroundDown, onGroundLat, onGroundFront i can find all the contact point of the wheel, but it always casts starting from the circumference, not the center of the sphere.

Nov 10 '10 at 08:49 PM michele

Spherecast does a sweep because that's what it's supposed to do. As I said before, if you do not want a sweep, then you shouldn't provide it a sweep distance when you call it. It does not cast starting from the circumference! It starts from the center you passed in and then sweeps a sphere of the radius you passed in by the distance you passed in along the direction you passed in because that's what a spherecast is.

Nov 12 '10 at 03:33 PM skovacs1

If your problem is that your tire is already in contact with the ground when you cast and the cast is not picking up the contact, you should consider passing spherecast a radius that is slighly smaller than your tire so that the ground is not already inside of the sphere that is being cast.

Nov 12 '10 at 03:34 PM skovacs1
(comments are locked)
10|3000 characters needed characters left
Your answer
toggle preview:

Up to 2 attachments (including images) can be used with a maximum of 524.3 kB each and 1.0 MB total.

Follow this question

By Email:

Once you sign in you will be able to subscribe for any updates here

By RSS:

Answers

Answers and Comments

Topics:

x1281
x88
x27

asked: Oct 31 '10 at 03:08 AM

Seen: 2581 times

Last Updated: Nov 11 '10 at 01:46 AM