mirror of
https://github.com/ZDoom/gzdoom.git
synced 2024-11-06 13:01:03 +00:00
36 lines
530 B
Text
36 lines
530 B
Text
|
|
|
|
// Wind ---------------------------------------------------------------------
|
|
|
|
ACTOR SoundWind
|
|
{
|
|
+NOBLOCKMAP
|
|
+NOSECTOR
|
|
+DONTSPLASH
|
|
States
|
|
{
|
|
Spawn:
|
|
TNT1 A 2 A_PlaySoundEx("world/wind", "SoundSlot6", 1)
|
|
Loop
|
|
}
|
|
}
|
|
|
|
ACTOR SoundWindHexen : SoundWind
|
|
{
|
|
}
|
|
|
|
|
|
// Waterfall ----------------------------------------------------------------
|
|
|
|
ACTOR SoundWaterfall
|
|
{
|
|
+NOBLOCKMAP
|
|
+NOSECTOR
|
|
+DONTSPLASH
|
|
States
|
|
{
|
|
Spawn:
|
|
TNT1 A 2 A_PlaySoundEx("world/waterfall", "SoundSlot6", 1)
|
|
Loop
|
|
}
|
|
}
|