Elevators: Difference between revisions

From Valve Developer Community
Jump to navigation Jump to search
m (Reverted edit of CelalMonmo, changed back to last version by Brandished)
m (removing abstract mapping header)
Line 1: Line 1:
{{Abstract Mapping}} __NOTOC__
There is no specific elevator entity in [[HL1]] or [[HL2]]. Elevators must be constructed from several entities.
There is no specific elevator entity in [[HL1]] or [[HL2]]. Elevators must be constructed from several entities.


Line 17: Line 16:
*Doors can be attached to an elevator by parenting them to the elevator.
*Doors can be attached to an elevator by parenting them to the elevator.
*Some logic entities may be required, especially for multi-stop elevators.
*Some logic entities may be required, especially for multi-stop elevators.
== See Also ==
* [[:Category: Level Design]]


==External links==
==External links==

Revision as of 17:30, 22 March 2009

There is no specific elevator entity in HL1 or HL2. Elevators must be constructed from several entities.

Note.pngNote:In multiplayer Source games, any vertically-moving platform will seem jerky to anyone riding it. (This is due to the network player physics designed to save on resources.) This can make elevators look very bad, so test the effect before building a complete elevator in a Deathmatch level. Always test your Elevators/Lifts with Developer 1 enabled.

Articles

Entities

  • func_movelinear — moves along an axis between two points; mainly useful for two-stop elevators
  • func_tracktrain — moves between several points (See Trains); the easiest entity for multi-stop elevators
  • func_door — moves between two positions and can't stop mid-way; only useful for two-stop elevators

Notes

  • Doors can be attached to an elevator by parenting them to the elevator.
  • Some logic entities may be required, especially for multi-stop elevators.

See Also

External links