mirror of
https://github.com/ZDoom/qzdoom.git
synced 2024-11-10 14:51:51 +00:00
- updated xlat/eternity.txt
This commit is contained in:
parent
209b495e10
commit
6787dfeafb
1 changed files with 8 additions and 5 deletions
|
@ -112,11 +112,11 @@ enum
|
||||||
342 = 0, Stairs_BuildUpDoomSync(0)
|
342 = 0, Stairs_BuildUpDoomSync(0)
|
||||||
343 = 0, Stairs_BuildDownDoomSync(0)
|
343 = 0, Stairs_BuildDownDoomSync(0)
|
||||||
|
|
||||||
// Two-way portals are not supported yet either
|
// Two-way portals are just the same as the simple types.
|
||||||
344 = 0, Unsupported() // "Portal_TwowayCeiling"
|
344 = 0, Sector_SetPortal(tag, 0, 1, 1, 0) // "Portal_AnchoredCeiling"
|
||||||
345 = 0, Unsupported() // "Portal_TwowayFloor"
|
345 = 0, Sector_SetPortal(tag, 0, 0, 1, 0) // "Portal_AnchoredFloor"
|
||||||
346 = 0, Unsupported() // "Portal_TwowayAnchorLine"
|
346 = 0, Sector_SetPortal(tag, 0, 1, 0, 0) // "Portal_AnchorLine"
|
||||||
347 = 0, Unsupported() // "Portal_TwowayAnchorLineFloor"
|
347 = 0, Sector_SetPortal(tag, 0, 0, 0, 0) // "Portal_AnchorLineFloor"
|
||||||
|
|
||||||
// More parameterized linedefs
|
// More parameterized linedefs
|
||||||
348 = 0, Polyobj_StartLine(0)
|
348 = 0, Polyobj_StartLine(0)
|
||||||
|
@ -215,3 +215,6 @@ enum
|
||||||
428 = 0, Thing_Destroy(0)
|
428 = 0, Thing_Destroy(0)
|
||||||
429 = 0, Door_LockedRaise(0)
|
429 = 0, Door_LockedRaise(0)
|
||||||
430 = 0, ACS_LockedExecute(0)
|
430 = 0, ACS_LockedExecute(0)
|
||||||
|
431 = 0, Floor_Donut(0)
|
||||||
|
432 = 0, Ceiling_CrushAndRaise(0)
|
||||||
|
433 = 0, Ceiling_CrushStop(0)
|
||||||
|
|
Loading…
Reference in a new issue