0

基本上发生的情况是对象在随机位置从屏幕生成,然后流入和流出屏幕视图。随着屏幕的流动,它们再次在屏幕外的随机位置重置,但是如果玩家与它发生碰撞,我无法做到这一点。

总而言之,我如何让对象位置在与玩家碰撞时再次从屏幕上重生?

这是目标代码。

UFO = display.newImage("ufo.png")
  UFO.name = "UFO"
  UFO.x = 640
  UFO.y = 100
  UFO.speed = math.random(2,6)
  UFO.initY = UFO.y
  UFO.amp = math.random(20,100)
  UFO.angle = math.random(1,360)
  physics.addBody(UFO, "static")

function moveUFO(self,event)
  if self.x < -50 then
     self.x = math.random(500,1500)
     self.y = math.random(90,220)
     self.speed = math.random(2,6)
     self.amp = math.random(20,100)
     self.angle = math.random(1,360)
else 
    self.x = self.x - self.speed
    self.angle = self.angle + .1
    self.y = self.amp*math.sin(self.angle)+self.initY
end

这是碰撞检测的代码

    function ship:collision(event)
            if (event.other.name == 'UFO') then
                    event.other:removeSelf(self)
                    scoreAnim = display.newText('+10', ship.x, ship.y-10, native.systemFontBold, 16)
                    transition.to(scoreAnim, {time = 1000, y = scoreAnim.y - 30, alpha = 0, onComplete = function() display.remove(scoreAnim) scoreAnim = nil end})
                    scoreAnim:setTextColor(0,255,12)
                   --increases score
                    collectedN.text = tostring(tonumber(collectedN.text) + 1)

ship:addEventListener("collision", onCollision, ship, addTime)

4

1 回答 1

0

如果我没有误解你不知道碰撞检测。你应该研究这个页面:http: //developer.coronalabs.com/content/game-edition-collision-detection

编辑部分:

function ship:collision(event)
    if (event.other.name == 'UFO') then
          timer.performWithDelay( 50, function() event.other.x = math.random( 0, 320 ); event.other.y = math.random( 0.480 ); end, 1 )
          scoreAnim = display.newText('+10', ship.x, ship.y-10, native.systemFontBold, 16)
          transition.to(scoreAnim, {time = 1000, y = scoreAnim.y - 30, alpha = 0, onComplete = function() display.remove(scoreAnim) scoreAnim = nil end})
          scoreAnim:setTextColor(0,255,12)
          --increases score
          collectedN.text = tostring(tonumber(collectedN.text) + 1)

这样就可以了..您可以在那里修改随机值。而且你不能在碰撞时间内移动你的物体,因为电晕物理会在碰撞时间内锁定所有物理对象。所以你应该在碰撞后立即移动你的物体。

于 2013-04-11T21:35:26.637 回答