mirror of
https://github.com/ZDoom/gzdoom.git
synced 2024-11-06 04:50:26 +00:00
42 lines
528 B
Text
42 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;
|
|
}
|
|
}
|