x


OverlapSphere returned collider arrays

Back again with new problems :D

I have some code attached to an object in my gameworld. I've litterally just started building my own AI for the first time and I'm finding a gap that needs filling in my knowledge. First off, the scene is simple. One cube, on layer 12 positioned close to a second object. Second object has the following code attached as a JS.

var heardist : float = 50f; var zmask : int = 1 << 12; var stuff : Vector3;

function Update () {

var colliders : Collider[] = Physics.OverlapSphere (transform.Position, heardist, zmask);

for (var hit in colliders) {
    if (!hit)
       continue;

    if (hit.collider) {
       Debug.Log(hit.collider);
       stuff = hit.collider.transform.position;
       Debug.DrawLine(transform.position, stuff, Color.red);


       //hit.collider.SendMessage("ApplyDamage", damage, SendMessageOptions.DontRequireReceiver);
    }
}

}

I get the following errorcode:

Object refrence not set to and instance of an object

It highlights this line var colliders : Collider[] = Physics.OverlapSphere (transform.Position, heardist, zmask); in my script.

So my intention was to simply draw a line from my object to layer 12 object. But my questions are:

Where did I go wrong in this programming?

More importantly when creating a Collider[] array I assume. Is there a array tutorial somewhere? Because I'm at a loss as to how i'm suppose to view the information inside other than in a for-loop. Even if I use a for-loop I don't know what information is returned, so its out of context.

Finally, In a similar application, using a var to capture the raycastall command to return a bunch of collided objects, how do I pick apart that variable, as if to say. Which object collided first? What position was it at? what rotation? which was the second object collided? The third? The last? These is all information that would be handy!

Thanks again. If you can only tackle one aspect that's fine. Awaiting enlightenment...

sgmongo

more ▼

asked Oct 15 '11 at 10:28 PM

sgmongo gravatar image

sgmongo
155 12 18 22

Bumpin for interest I could still use some expert helps :)

Oct 19 '11 at 12:16 AM sgmongo

You can get an array tutorial all over google, they are quite generic :)

Oct 19 '11 at 12:57 AM chemicalvamp

Found array tutorials, but printing the data in the collider array is causing unity to have a hissycow. Apparently I need to specify which bit of data is to be printed. Sadly the refrence guide doesn't say what data exactly is returned by a overlapshere. (I used some code from the googles to get a working overlapshere to test the array stuff... I still have no idea what i did wrong above)

Just a girl, still confused, in New Hampshire.

Oct 19 '11 at 12:52 PM sgmongo
(comments are locked)
10|3000 characters needed characters left

1 answer: sort voted first

Sorry this is in C#, but I'm sure you can make it work: using UnityEngine; using System.Collections;

public class Test : MonoBehaviour
{
    public float heardist = 50f;
    public int zmask = 1 << 12;
    public Vector3 stuff;
    public float damage = 10;

    void Update()
    {

        Collider[] colliders = Physics.OverlapSphere(transform.position, heardist, zmask);
        foreach (Collider col in colliders)
        {
            Debug.Log("I hit: " + col.name);
            stuff = col.transform.position;
            Debug.DrawLine(transform.position, stuff, Color.red);

            col.SendMessage("ApplyDamage", damage, SendMessageOptions.DontRequireReceiver);
        }
    }
}
more ▼

answered Apr 23 '12 at 02:49 AM

chemicalvamp gravatar image

chemicalvamp
145 3 3 7

(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:

x1765
x1396
x37

asked: Oct 15 '11 at 10:28 PM

Seen: 1344 times

Last Updated: Apr 23 '12 at 02:49 AM