trigger_changelevel (Half-Life)
Last edited 16 years ago2008-06-11 08:12:49 UTC
- Wiki
- View Page
-
You are viewing an older revision of this wiki page. The current revision may be more detailed and up-to-date.
Click here to see the current revision of this page.
This article was converted from a previous version of TWHL and may need to be reviewed
- The formatting may be incorrect due to differences in the WikiCode processing engine, it needs to be revised and reformatted
- Some information may be out of date
- After the article is re-formatted and updated, remove this notice and the Review Required category.
- Some older articles are no longer useful, or they duplicate information from other pages. In this case, delete the page after merging any relevant information into other pages. Contact an admin to delete a page.
Brush EntityThis entity causes a level transition, where a new map is loaded and the player is placed in it.
Attributes
- Name (targetname) - Property used to identify entities.
- New map name (map) - The name of the new map to load.
- Landmark name (landmark) - The name of the info_landmark that defines the same point in space in both maps.
- Change Target (changetarget)
- Delay before change target (changedelay)
Flags
- No Intermission (1)
- USE Only (2) - Entity can only be triggered by another event.
Inputs
Outputs
3 Comments
You must log in to post a comment.
You can login or register a new account.
Out of curiosity I looked up trigger_changelevel in the Half-Life SDK and it appears it only defines the "USE Only" flag and this is the only flag it checks against.
It seems it's a leftover from Quake where after a level change was triggered it would switch camera to an info_intermission during the "monsters killed/secrets found" screen, unless the flag was checked. While this functionality was removed in Half-Life, the flag remained.
TLDR: The "No Intermission" flag doesn't do anything and is just a leftover from Quake.