如果我在任何方面都含糊不清,我很抱歉,因为我对 AS3.0 和 stackoverflow 不熟悉。我只是想推动i
变量添加到变量_bullets
中。
var i:int = 0; //initializing the i variable
_bullets.push(i);
//Loops thought all the bullets on stage
for (var i:int = 0; i > _bullets.length; i++)
{
//Some code...
}
我想要达到的结果是 for 循环现在有一些东西要循环。如果需要更多信息,我会尽力提供。