Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have three child game objects(as you can see in below picture with Red, Pink & Blue). They are child of parent game object Green.

I don't know, how to calculate size of Parent(Green) GameObject?

I am creating all these game objects at runtime using this code:

GameObject CreatePattern(int difficultyLevel)    
    {    
        GameObject gameObjectTemp = new GameObject();    
        SinglePattern singlePattern;    
        gameObjectTemp = (GameObject) Instantiate(gameObjectTemp);   


        singlePattern = freeRunDataHandler.GetSinglePatternRandom(1);    
        GameObject gameObjectSingleObject = null;    
        foreach (SingleObject singleObject in singlePattern.singleObjectList)    
        {
                gameObjectSingleObject = GetGameObjectByCategory(singleObject.catergory, singleObject.type);

            if (gameObjectSingleObject != null)    
            {    
                gameObjectSingleObject = (GameObject) Instantiate(gameObjectSingleObject, new Vector3(singleObject.positionX, singleObject.positionY, singleObject.positionZ), Quaternion.identity);    
                gameObjectSingleObject.transform.localScale = new Vector3(singleObject.length, 1, singleObject.width);    
                gameObjectSingleObject.transform.parent = gameObjectTemp.transform;    
            }    
        }        

        return gameObjectTemp;    
    }

This function returns parent(Green) gameObject after adding all childs. My Parent(Green) have nothing attached to it not even any component(BoxCollider, MeshFilter, MeshRenderer, etc..).

I had attached BoxCollider, MeshRenderer & MeshFilter(Just for testing) & i tried on parent:

parent.collider.bounds.size.x  ----- > box collider
parent.renderer.bounds.size.x  ----- > mesh renderer

But nothing works. There return 1 or zero in cases. Please help me in how to get size of Parent(Green) GameObject?

enter image description here

share|improve this question

1 Answer

up vote 5 down vote accepted

By size do you mean the bounds? If so, it should be a lot simpler than you've made it. My code is untested, I don't have Unity handy but this should work. It assumes 'parent' is a game object in your hierarchy and that it has 'children' under it in the hierarchy.

Bounds bounds = parent.renderer.bounds;
foreach (Transform child in parent.transform)
{
    bounds.encapsulate(child.gameObject.renderer.bounds);
}

Update:

Alternatively, if you don't want a parent with a renderer:

// First find a center for your bounds.
Vector3 center = Vector3.zero;

foreach (Transform child in parent.transform)
{
    center += child.gameObject.renderer.bounds.center;   
}
center /= parent.transform.childCount; //center is average center of children

//Now you have a center, calculate the bounds by creating a zero sized 'Bounds', 
Bounds bounds = new Bounds(center,Vector3.zero); 

foreach (Transform child in parent.transform)
{
    bounds.encapsulate(child.gameObject.renderer.bounds);   
}

You mentioned not wanting to use a parent/child hierarchy. If you don't go that route you need to either add the "children" to some sort of array or you'll have to use the GameObject.Find() method to find each child by name. If you name something like "child_1", "child_2" you could look them up fairly easily but it's a hack of a lot simpler to simply create a parent object.

share|improve this answer
Thanks for your answer. Its working but i have to attach MeshRenderer with each parent & that is not of use, I dont want to attach any component with parent(If possible). Is there any alternative of first line: Bounds bounds = parent.renderer.bounds;? – MicroEyes Aug 16 '12 at 9:26
See my update above. – Jerdak Aug 16 '12 at 14:42
Thankx @Jerdak.. You saved my time. I own you one. Thankx again. – MicroEyes Aug 17 '12 at 8:30

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.