- Added "SoundSequence" UDMF sector property. This is the name of the sound sequence to play for

the sector. Note that this contrasts with sound sequence things in that it takes a name and
  not a number. Also, placing a sound sequence thing in a sector will override this property.

SVN r2492 (trunk)
This commit is contained in:
Randy Heit 2010-08-07 04:32:18 +00:00
commit 9137ef04f6
11 changed files with 48 additions and 2 deletions

View file

@ -44,6 +44,10 @@ static void StartFloorSound (sector_t *sec)
{
SN_StartSequence (sec, CHAN_FLOOR, sec->seqType, SEQ_PLATFORM, 0);
}
else if (sec->SeqName != NAME_None)
{
SN_StartSequence (sec, CHAN_FLOOR, sec->SeqName, 0);
}
else
{
SN_StartSequence (sec, CHAN_FLOOR, "Floor", 0);