碰撞后重新设置生成

时间:2013-04-11 18:52:13

标签: lua corona collision

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

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

继承目标代码。

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)

发货:addEventListener(“collision”,onCollision,ship,addTime)

1 个答案:

答案 0 :(得分: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)

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