everyone。AS3 Bullet Removal
我試圖讓他們一旦離開屏幕,我的子彈情況下遭到刪除,但我得到這個:
Error 1061: Call to a possibly undefined method removeChild through a reference with static type __AS3__.vec:Vector.<Bullet>.
這是錯誤引導到:
private function manageBullets(event:Event):void {
for each(var i in bManager.bulletVector){
if (i.y < -20) {
bManager.removeChild(i); //This line
bManager.bulletVector = bManager.bulletVector.splice(bManager.bulletVector.indexOf(i), 1);
}
}
}
我對AS3/OOP相當陌生,所以不要對我太難:P
什麼是'bManager'?你在哪裏添加子彈?我們需要看到更多的代碼。 –