我试图无限制地在玩家面前生成x距离,我几乎不知道从哪里开始。他们也不能“堆叠”在一起。目前,我所拥有的是下面,没有错误,虽然它占用了相当多的内存,我的游戏落到了崩溃的闪存cs3
function enterFrameHandler(e:Event):void{
//gravitate the player
_vy += 1.5;
//move the player
Player.x += _vx;
Player.y += _vy;
//process collisions
processCollisions();
//Process other collisions
processOtherCollisions();
//scroll the stage
scrollStage();
//Process Key Presses
KeyHandler();
//Process Lives once
LifeHandler();
//Generate Objects
generateObjects();
}
//Function for generating objects
var ObjectArray:Array = [];
var ChildrenColliding:Boolean = false;
function generateObjects():void{
if(_vx > 0){
var Square:MovieClip;
Square = new mcSquare();
Square.x = Math.random() * 500 + Math.abs(_boundaries.x);
Square.y = Math.random() * stage.stageHeight/2.5 + (stage.stageHeight/2.5);
ObjectArray.push(Square);
_boundaries.addChild(Square);
}
for(var i in ObjectArray){
for(var a in ObjectArray){
if(ObjectArray[a].hitTestObject(ObjectArray[i]) && a != i){
ChildrenColliding = true;
}
}
while(ChildrenColliding){
ObjectArray[i].x = Math.random() * 500 + Math.abs(_boundaries.x);
ObjectArray[i].y = Math.random() * stage.stageHeight/2.5 + (stage.stageHeight/2.5);
}
}
}
答案 0 :(得分:0)
你在这里展示的代码很好。将ObjectArray
设置为[]
非常安全,不应为空。这个故事必须有更多。
您可以为此课程发布其余代码吗?您是否有其他设置ObjectArray
的代码?必须有一行代码设置ObjectArray
设置为空的其他地方。
答案 1 :(得分:0)
为什么不呢:
ObjectArray.push(Square);