Difference between revisions of "HPL2/AMFP/NewAreas"

From Frictional Wiki
< HPL2‎ | AMFP
Jump to navigation Jump to search
m (Changed 4 variables to say 5 variables)
Line 3: Line 3:
 
MFP features two new area types which weren't present in TDD.
 
MFP features two new area types which weren't present in TDD.
  
== Color grading area ==
+
== ColorGrading ==
  
 
This is an area which applies color correction when entered. It will show up as yellow in the Level Editor.
 
This is an area which applies color correction when entered. It will show up as yellow in the Level Editor.
  
The area has 2 variables:
+
{|class=wikitable
 
+
|+Variables
* LookUpTable - determines the color grading texture. Ready ones are located in <code>/textures/gradingmaps</code>.
+
! Name !! Type !! Default !! Description
* FadeTime - how fast the color changes (or goes back to normal) when the area is entered or left.
+
|-
 +
| LookUpTable || String || || Determines the color grading texture. Ready ones are located in <code>/textures/gradingmaps</code>.
 +
|-
 +
| 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 [[HPL2/AMFP/ColorGr|this guide]].
 
For information about creating custom grading textures, take a look at [[HPL2/AMFP/ColorGr|this guide]].
  
== Infection area ==
+
== 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.
 
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.
  
This area has 5 variables:
+
{|class=wikitable
 
+
|+Variables
* IncrementSpeed - 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.
+
! Name !! Type !! Default !! Description
* InfectionLevelLowerBound - If the area is used for healing, the lower bound specifies the minimum infection level the area can heal to.
+
|-
* InfectionLevelUpperBound - 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.
+
| 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 - 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.
+
|-
* DisableOnLevelBoundHit - Disables the area if the upper or lower bound is hit.
+
| 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 [[HPL2/AMFP/Infection| the Infection article]].
 
For more information about the infection mechanic, see [[HPL2/AMFP/Infection| the Infection article]].

Revision as of 00:56, 14 January 2025

New Area Types

MFP 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.