mirror of
https://github.com/ZDoom/gzdoom.git
synced 2024-11-05 20:40:30 +00:00
f84ededfba
- added more spawn filters. SVN r1192 (trunk)
75 lines
1.1 KiB
Text
75 lines
1.1 KiB
Text
|
|
// Fog Spawner --------------------------------------------------------------
|
|
|
|
ACTOR FogSpawner 10000
|
|
{
|
|
Game Hexen
|
|
+NOSECTOR +NOBLOCKMAP
|
|
+FLOATBOB
|
|
+INVISIBLE
|
|
|
|
action native A_FogSpawn();
|
|
|
|
States
|
|
{
|
|
Spawn:
|
|
TNT1 A 20 A_FogSpawn
|
|
Loop
|
|
}
|
|
}
|
|
|
|
// Small Fog Patch ----------------------------------------------------------
|
|
|
|
ACTOR FogPatchSmall 10001
|
|
{
|
|
Game Hexen
|
|
Speed 1
|
|
+NOBLOCKMAP +NOGRAVITY +NOCLIP +FLOAT
|
|
+NOTELEPORT
|
|
RenderStyle Translucent
|
|
Alpha 0.6
|
|
|
|
action native A_FogMove();
|
|
|
|
States
|
|
{
|
|
Spawn:
|
|
FOGS ABCDE 7 A_FogMove
|
|
Loop
|
|
Death:
|
|
FOGS E 5
|
|
Stop
|
|
}
|
|
}
|
|
|
|
// Medium Fog Patch ---------------------------------------------------------
|
|
|
|
ACTOR FogPatchMedium : FogPatchSmall 10002
|
|
{
|
|
Game Hexen
|
|
States
|
|
{
|
|
Spawn:
|
|
FOGM ABCDE 7 A_FogMove
|
|
Loop
|
|
Death:
|
|
FOGS ABCDE 5
|
|
Goto Super::Death
|
|
}
|
|
}
|
|
|
|
// Large Fog Patch ----------------------------------------------------------
|
|
|
|
ACTOR FogPatchLarge : FogPatchMedium 10003
|
|
{
|
|
Game Hexen
|
|
States
|
|
{
|
|
Spawn:
|
|
FOGL ABCDE 7 A_FogMove
|
|
Loop
|
|
Death:
|
|
FOGM ABCDEF 4
|
|
Goto Super::Death
|
|
}
|
|
}
|