0

私は CI を使用しており、2 つのオブジェクトが互いに衝突したときに画像を表示したいと考えています。

プーフ関数か、このようなもののようです。しかし、この問題を解決する方法がわかりません。

4

1 に答える 1

0

私はあなたの質問にいくつかのサンプル コードを与えます。

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 )
于 2012-07-31T07:39:30.273 に答える