mirror of
https://github.com/ZDoom/qzdoom.git
synced 2024-11-15 00:41:57 +00:00
42 lines
560 B
Text
42 lines
560 B
Text
|
|
|
|
// Wind ---------------------------------------------------------------------
|
|
|
|
class SoundWind : Actor
|
|
{
|
|
Default
|
|
{
|
|
+NOBLOCKMAP
|
|
+NOSECTOR
|
|
+DONTSPLASH
|
|
}
|
|
States
|
|
{
|
|
Spawn:
|
|
TNT1 A 2 A_StartSound("world/wind", CHAN_6, CHANF_LOOPING);
|
|
Loop;
|
|
}
|
|
}
|
|
|
|
class SoundWindHexen : SoundWind
|
|
{
|
|
}
|
|
|
|
|
|
// Waterfall ----------------------------------------------------------------
|
|
|
|
class SoundWaterfall : Actor
|
|
{
|
|
Default
|
|
{
|
|
+NOBLOCKMAP
|
|
+NOSECTOR
|
|
+DONTSPLASH
|
|
}
|
|
States
|
|
{
|
|
Spawn:
|
|
TNT1 A 2 A_StartSound("world/waterfall", CHAN_6, CHANF_LOOPING);
|
|
Loop;
|
|
}
|
|
}
|