我正在开发一个类似于水果忍者的游戏项目,现在我卡住的地方是当水果反弹到屏幕并向下移动时我想在到达相机屏幕向下移动时从屏幕上删除水果
if (mHardware1[active].collidesWith(CamerScene)) {
this.mHardware1[active].detachchild();
}
它不工作我的相机高度是 444 我想删除 mHardware1[active] 如果达到>相机高度
if (mHardware1[active].getY>=444) {
this.mHardware1[active].detachchild();
}
也不工作...