You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
28 lines
444 B
Lua
28 lines
444 B
Lua
function endContact(a, b, coll)
|
|
if a:getUserData() == "cielo" then
|
|
puntuacion = 0
|
|
sonido:play()
|
|
end
|
|
|
|
if a:getUserData() == "suelo" then
|
|
puntuacion = 0
|
|
sonido:play()
|
|
end
|
|
|
|
if a:getUserData() == "pizquierda" then
|
|
puntuacion = puntuacion + 1
|
|
sonido:play()
|
|
end
|
|
|
|
if a:getUserData() == "pderecha" then
|
|
puntuacion = puntuacion + 1
|
|
sonido:play()
|
|
end
|
|
|
|
if puntuacion > puntuacion_max then
|
|
puntuacion_max = puntuacion
|
|
end
|
|
|
|
end
|
|
|