在两个物体碰撞时显示图像

时间:2012-07-27 20:00:13

标签: corona

我正在使用CI,并希望在两个对象相互碰撞时显示图像,此时显示特定图像,并且该图像应仅显示在发生共谋的非常短的持续时间内。

这似乎是一种噗功能或类似的东西。但我无法理解如何解决这个问题。

1 个答案:

答案 0 :(得分:0)

我将为您的问题提供一些示例代码。动画男孩与其他对象(coll1)的碰撞。

animatedboy.collision=function(self,event)
if event.other.name == "coll1" then
    picture.isVisible=true

function updateTime()
       display.remove(picture) or picture.isVisible=false
end
timeTaken = timer.performWithDelay( 1000, updateTime, timerTicks )          

end


animatedboy:addEventListener( "collision", animatedboy )