Advertisement
kasru

Spawn Prefab

Jan 12th, 2013
5,635
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. //****** Donations are greatly appreciated.  ******
  2. //****** You can donate directly to Jesse through paypal at  https://www.paypal.me/JEtzler   ******
  3.  
  4. var node1 : Transform;
  5. var block : GameObject;
  6. var spawning : boolean = true;
  7.  
  8. function Start () {
  9.     spawnBlock();
  10. }
  11.  
  12. function Update () {
  13.  
  14. }
  15.  
  16. function spawnBlock () {
  17.  
  18.     while(spawning) {
  19.         yield WaitForSeconds(1);
  20.         Instantiate(block,node1.transform.position,node1.transform.rotation);
  21.     }
  22. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement