instantoate gameobject on circle code example
Example 1: how to get object to spawn in a curcle
for (int i = 0; i < numObjects; i++)
{
float theta = i * 2 * Mathf.PI / numObjects;
float x = Mathf.Sin(theta)*radius;
float y = Mathf.Cos(theta)*radius;
GameObject ob = new GameObject();
ob.transform.parent = transform;
ob.transform.position = new Vector3(x, y, 0);
}
Example 2: instantiate object in circle
float radius = 1f;
int amountToSpawn;
for (int i = 0; i < amountToSpawn; i++)
{
float angle = i * Mathf.PI*2f / amountToSpawn;
Vector3 newPos = new Vector3(Mathf.Cos(angle)*radius, y, Mathf.Sin(angle)*radius);
GameObject go = Instantiate(GameObject.CreatePrimitive(PrimitiveType.Cube), newPos, Quaternion.identity);
}