You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
AM2R-TimeTrials/scripts/PlayLandingSound.gml

8 lines
293 B

/// PlayLandingSound(material)
if (argument0 == 0) sfx_play(sndLandNormal);
if (argument0 == 1) sfx_play(sndLandRock);
if (argument0 == 2) sfx_play(sndLandGrass);
if (argument0 == 3) sfx_play(sndLandStone);
if (argument0 == 4) sfx_play(sndLandMetal);
if (argument0 == 5) sfx_play(sndLandWet);