mirror of
https://github.com/ZDoom/gzdoom.git
synced 2024-11-06 13:01:03 +00:00
43 lines
528 B
Text
43 lines
528 B
Text
|
|
||
|
|
||
|
// Wind ---------------------------------------------------------------------
|
||
|
|
||
|
class SoundWind : Actor
|
||
|
{
|
||
|
Default
|
||
|
{
|
||
|
+NOBLOCKMAP
|
||
|
+NOSECTOR
|
||
|
+DONTSPLASH
|
||
|
}
|
||
|
States
|
||
|
{
|
||
|
Spawn:
|
||
|
TNT1 A 2 A_PlaySound("world/wind", CHAN_6);
|
||
|
Loop;
|
||
|
}
|
||
|
}
|
||
|
|
||
|
class SoundWindHexen : SoundWind
|
||
|
{
|
||
|
}
|
||
|
|
||
|
|
||
|
// Waterfall ----------------------------------------------------------------
|
||
|
|
||
|
class SoundWaterfall : Actor
|
||
|
{
|
||
|
Default
|
||
|
{
|
||
|
+NOBLOCKMAP
|
||
|
+NOSECTOR
|
||
|
+DONTSPLASH
|
||
|
}
|
||
|
States
|
||
|
{
|
||
|
Spawn:
|
||
|
TNT1 A 2 A_PlaySound("world/waterfall", CHAN_6);
|
||
|
Loop;
|
||
|
}
|
||
|
}
|