HPL2/AMFP/NewAreas

From Frictional Wiki
< HPL2‎ | AMFP
Revision as of 00:58, 14 January 2025 by BoxFigs (talk | contribs)
Jump to navigation Jump to search

AMFP features two new area types which weren't present in TDD.

ColorGrading

This is an area which applies color correction when entered. It will show up as yellow in the Level Editor.

Variables
Name Type Default Description
LookUpTable String Determines the color grading texture. Ready ones are located in /textures/gradingmaps.
FadeTime Float 1.0 How fast the color changes (or goes back to normal) when the area is entered or left.

For information about creating custom grading textures, take a look at this guide.

Infection

This is a remnant of the unused infection system. It fills up the infection meter or lowers it when the player is inside the area. The area will show up as lime green in the Level Editor.

Variables
Name Type Default Description
IncrementSpeed Float 0 How fast the meter fills up or lowers. Seems to be in units per second. The area will heal the player if negative value is used.
TotalIncrementBound Float 0 If a value other then 0 is used, it will limit the amount the area can increment the infection. If the areas increment total reaches this bound than the area is disabled.
InfectionLevelLowerBound Float -1 If the area is used for healing, the lower bound specifies the minimum infection level the area can heal to.
InfectionLevelUpperBound Float 5 Binds the maximum infection level; the player won't be able to get a higher infection level while standing in the area. Values 1-4. 4 and above lets the player die from infection. Infection drain is disabled when the bound has been hit and the player is still in the area.
DisableOnLevelBoundHit Bool false Disables the area if the upper or lower bound is hit.

For more information about the infection mechanic, see the Infection article.