No lo prob? pero estoy seguro que con esto te funciona x)
Ev Create:
[gml]
tocar=false
[/gml]
Ev Step:
[gml]
if place_free(x,y+1)
{
tocar=true
}
[/gml]
Ev Collision with plataforma:
[gml]
if tocar=true
{
tocar=false
sound_play(sound_tocar)
}
[/gml]
Ev Create:
[gml]
tocar=false
[/gml]
Ev Step:
[gml]
if place_free(x,y+1)
{
tocar=true
}
[/gml]
Ev Collision with plataforma:
[gml]
if tocar=true
{
tocar=false
sound_play(sound_tocar)
}
[/gml]