qzdoom/wadsrc/static/zscript/raven/ravenambient.txt

43 lines
546 B
Plaintext
Raw Normal View History

2016-10-16 22:21:52 +00:00
// Wind ---------------------------------------------------------------------
class SoundWind : Actor
{
Default
{
+NOBLOCKMAP
+NOSECTOR
+DONTSPLASH
}
States
{
Spawn:
TNT1 A 2 A_PlaySound("world/wind", CHAN_6, 1, true);
2016-10-16 22:21:52 +00:00
Loop;
}
}
class SoundWindHexen : SoundWind
{
}
// Waterfall ----------------------------------------------------------------
class SoundWaterfall : Actor
{
Default
{
+NOBLOCKMAP
+NOSECTOR
+DONTSPLASH
}
States
{
Spawn:
TNT1 A 2 A_PlaySound("world/waterfall", CHAN_6, 1, true);
2016-10-16 22:21:52 +00:00
Loop;
}
}