I have the following code which respawns objects just fine.
Instantiate(block, blockSpawn.position, blockSpawn.rotation);
I want to be able to control where the objects respawn, is there a simple way to modify this code to do that.
Thanks
I have the following code which respawns objects just fine.
Instantiate(block, blockSpawn.position, blockSpawn.rotation);
I want to be able to control where the objects respawn, is there a simple way to modify this code to do that.
Thanks
… the second parameter is “where” the object is instantiated… change that to where you want it to be.
Ok sorted it thanks.
Is there a way to delay the respawning after so many seconds?