mirror of
https://github.com/ZDoom/gzdoom-gles.git
synced 2024-11-06 13:00:30 +00:00
62ffe7e4e2
- Fixed: Heretic and Hexen completely skip all normal Z processing on mobjs with FLOATBOB set. To emulate that, we need to add NOGRAVITY to everything with that flag set.
27 lines
486 B
Text
27 lines
486 B
Text
|
|
// Teleport (self) ----------------------------------------------------------
|
|
|
|
ACTOR ArtiTeleport : Inventory 36 native
|
|
{
|
|
Game Raven
|
|
SpawnID 18
|
|
+COUNTITEM
|
|
+FLOATBOB
|
|
+NOGRAVITY
|
|
+INVENTORY.INVBAR
|
|
+INVENTORY.PICKUPFLASH
|
|
+INVENTORY.FANCYPICKUPSOUND
|
|
Inventory.DefMaxAmount
|
|
Inventory.Icon "ARTIATLP"
|
|
Inventory.PickupSound "misc/p_pkup"
|
|
Inventory.PickupMessage "$TXT_ARTITELEPORT"
|
|
Tag "$TAG_ARTITELEPORT"
|
|
States
|
|
{
|
|
Spawn:
|
|
ATLP ABCB 4
|
|
Loop
|
|
}
|
|
}
|
|
|
|
|