point_nav_attribute_region

From Valve Developer Community
Jump to: navigation, search
class hierarchy
CFuncNavAttributeRegion
CBaseEntity

point_nav_attribute_region is a point entity available in Left 4 Dead 2 Left 4 Dead 2. The point entity version of func_nav_attribute_region. Like its brush entity version, it applies nav attributes to overlapping nav areas when it spawns in or the nav is being generated.

In VScripting, this entity may be seen in Entity Group scripts by Valve (especially Holdout), but is now less relevant since script_nav_attribute_region now exists after The Last Stand update.

Note.pngNote:Attributes set will persists when a round ends!

Keyvalues

Mins (mins) <vector>
Maxs (maxs) <vector>

An outlined box is displayed in Hammer when Mins/Maxs are specified.


NavAttributeRegion:
Precise (precise) <choices> (only in Left 4 Dead 2)
Crouch (crouch) <choices> (only in Left 4 Dead 2)
Stairs (stairs) <choices> (only in Left 4 Dead 2)
Tank Only (tank_only) <choices> (only in Left 4 Dead 2)
Mob Only (mob_only) <choices> (only in Left 4 Dead 2)
If either of the above 5 are enabled, their respective nav attributes will also be applied.
  • 0 : Off
  • 1 : On
Remove Attributes (remove_attributes) <integer> (only in Left 4 Dead 2)
Remove attributes from nav areas instead of applying them.

Flags

Effects of these attributes are found at the List of L4D Series Nav Mesh Attributes page.

NavAttributeRegion:

  •  [2] : EMPTY
  •  [4] : STOP_SCAN !FGD
  •  [32] : BATTLESTATION
  •  [64] : FINALE
  •  [128] : PLAYER_START (Mission start)
  •  [256] : BATTLEFIELD
  •  [1024] : NOT_CLEARABLE
  •  [2048] : CHECKPOINT
  •  [4096] : OBSCURED !FGD (Left 4 Dead)
  •  [8192] : NO_MOBS
  •  [16384] : THREAT !FGD
  •  [32768] : RESCUE_VEHICLE !FGD (Left 4 Dead)
  •  [65536] : RESCUE_CLOSET !FGD (Left 4 Dead)
  •  [524288] : NOTHREAT (only in Left 4 Dead 2)
  •  [1048576] : LYINGDOWN (only in Left 4 Dead 2)
Note.pngNote:In Left 4 Dead 2, these values are also usable with the spawn attribute methods found in theTerrorNavAreaVScript class.


Inputs


NavAttributeRegion:
ApplyNavAttributes
Reapply, or remove if the keyvalue was set, the nav attributes for nav meshes covered by its volume.
Icon-Bug.pngBug:Doesn't work in Left 4 Dead Left 4 Dead

See also