before i start sry for bad english ^^
so following problem
i have a spawn point that should spawn different objects by coincidence in different periods
i have the following by now
var object1 : GameObject;
var spawn : boolean = true;
function Update ()
{
if(spawn)
{
SpawnObject();
}
}
function SpawnObject()
{
spawn=false;
Instantiate(object1, transform.position, transform.rotation);
yield WaitForSeconds(5);
spawn=true;
}
so but now there should be different objects which spawn by coincidence(obect1;object2;object3 etc)
and the wait time should not be 5 seconds it should also be different after every spawn
would be amazing if somebody could help