I want to get the GameObjects in a sphere, as an array, rather than the colliders. I can do this manually (iterate through and use .gameObject), but is there a more concise way of converting the whole array? Something like:
GameObject[] gos = Physics.OverlapSphere(/* ... */) as GameObject[]