Hey. How would i find an objects child? like this:
function OnTriggerStay (hit : Collider)
{
if(hit.gameObject.tag == "Test" Input.GetKeyDown("e"))
{
// Find the hit.gameObjects child.
// Do something to the hit.gameObjects child?
}
}