0

我正在开发一个类似于水果忍者的游戏项目,现在我卡住的地方是当水果反弹到屏幕并向下移动时我想在到达相机屏幕向下移动时从屏幕上删除水果

       if (mHardware1[active].collidesWith(CamerScene)) {
        this.mHardware1[active].detachchild();

    }

它不工作我的相机高度是 444 我想删除 mHardware1[active] 如果达到>相机高度

      if (mHardware1[active].getY>=444) {
        this.mHardware1[active].detachchild();

    }

也不工作...

4

1 回答 1

1
this.mHardware1[active].detachSelf();

或者

scene.detachchild(this.mHardware1[active]);
于 2013-05-27T07:52:20.180 回答