当我想删除 Child 时出现错误 The provided DisplayObject must be a child of the caller. 我尝试了很多我在stackoverflow上找到的不同方法,但都没有奏效。
if(player.hitTestObject(activePowerup as DisplayObject)
{
activePowerup.onPlayerPick(player);
this.parent.removeChild(activePowerup as DisplayObject);
activePowerups.splice(activePowerup, 1);
}
我不知道是什么问题,但我希望你们能帮助我。