Elevators: Difference between revisions

From Valve Developer Community
Jump to navigation Jump to search
(Replaced Broken Links with Archive)
(Replaced Broken Links with Archive)
Line 25: Line 25:
*Creating a Working Elevator Tutorial: [http://web.archive.org/web/20080424074034/http://www.halflifestorm.com/?page=tutorials&tutorial=6 The Basics] Archived from [http://www.halflifestorm.com/?page=tutorials&tutorial=6 the original] on 2008-04-24.
*Creating a Working Elevator Tutorial: [http://web.archive.org/web/20080424074034/http://www.halflifestorm.com/?page=tutorials&tutorial=6 The Basics] Archived from [http://www.halflifestorm.com/?page=tutorials&tutorial=6 the original] on 2008-04-24.
<!-- sdknuts isn't down, or if it was, it isn't anymore -->
<!-- sdknuts isn't down, or if it was, it isn't anymore -->
*[http://sdknuts.net/tutorials/wiseElevators.asp HL2 4-floor Elevator Tutorial (sdknuts)]
*[http://web.archive.org/web/20080801032216/http://sdknuts.net/tutorials/wiseElevators.asp HL2 4-floor Elevator Tutorial (sdknuts)] Archived from [http://sdknuts.net/tutorials/wiseElevators.asp the original] on 2008-04-24.
*[http://forums.tf2maps.net/showthread.php?t=719 TUTORIAL: The Elevator Trifecta (TF2Maps.net)]
*[http://forums.tf2maps.net/showthread.php?t=719 TUTORIAL: The Elevator Trifecta (TF2Maps.net)]
*Valve Editing Resource Community: +2 stop elevator (Down) [http://web.archive.org/web/*/http://collective.valve-erc.com/index.php?doc=1047964377-43297800 Archived version]
*Valve Editing Resource Community: +2 stop elevator (Down) [http://web.archive.org/web/*/http://collective.valve-erc.com/index.php?doc=1047964377-43297800 Archived version]

Revision as of 15:09, 30 January 2011

There is no single specific elevator entity. 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