Floor LowerToLowestCeiling

From Eternity Wiki
Jump to navigationJump to search

Description

This is a parameterized linedef special.

Lowers floor to lowest neighbour ceiling.

Usage

Floor_LowerToLowestCeiling(tag, speed, change)

Parameters

  • tag: tag of sectors to trigger. If 0, it will trigger the sector behind the line.
  • speed: speed to move tagged sectors by, in eighths of units (e.g. 16 is equivalent to standard Doom door speed).
  • change: whether to change the texture (e.g. remove liquid to show solid floor) and/or sector type (e.g. damaging floor). Trigger model means to use the floor in front of the trigger linedef as reference to change to. Numeric model means to scan the surrounding sectors of tagged ones (as if sinking something into a liquid). Possible values are:
  • 0: no change, basic behaviour;
  • 1: trigger model, zero out the type;
  • 2: numeric model, zero out the type;
  • 3: trigger model, change texture;
  • 4: numeric model, change texture;
  • 5: trigger model, change both texture and type;
  • 6: numeric model, change both texture and type.

Examples

No examples given.

Notes

No particular notes.

The linedef special identification is 258 (UDMF) or 313 (ExtraData).

See also