Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- //****** Donations are greatly appreciated. ******
- //****** You can donate directly to Jesse through paypal at https://www.paypal.me/JEtzler ******
- var node1 : Transform;
- var minionPrefab : GameObject;
- var spawning : boolean = true;
- function Start () {
- spawnMinion();
- }
- function Update () {
- }
- function spawnMinion () {
- while(spawning) {
- yield WaitForSeconds(0.2);
- Instantiate(minionPrefab,node1.transform.position,node1.transform.rotation);
- yield WaitForSeconds(5);
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement