If you CancelInvoke() isn't it going to stop indefinitely so what you want is either to start it back up when count < 3 or a recursive invoke or a test on spawn i.e.
(Please note in the examples below the call to Invoke may not be right I am working from memory and am a C# dev week in Java)
static var count:int;
function Start(){
count = 0;
InvokeRepeating("SpawnEnemy", 2.0f,2.0f);
}
function Update(){
}
function SpawnEnemy(){
if(count < 3){
count++;
print(count);
}
}
or
static var count:int;
function Start(){
count = 0;
Invoke("SpawnEnemy", 2.0f,2.0f);
}
function Update(){
}
function SpawnEnemy(){
count++;
print(count);
if(count < 3){
Invoke("SpawnEnemy", 2.0f,2.0f);
}
}
or
static var count:int;
static var Spawning : bool
function Start(){
count = 0;
InvokeRepeating("SpawnEnemy", 2.0f,2.0f);
}
function Update(){
if(count>= 3)
CancelInvoke();
else if(!Spawning)
InvokeRepeating("SpawnEnemy", 2.0f,2.0f);
}
function SpawnEnemy(){
count++;
print(count);
}
↧