Navigation Meshes (L4D): Difference between revisions

From Valve Developer Community
Jump to navigation Jump to search
(Replaced Attributes with 'Navigation Mesh Attributes (L4D)' reference...this should be the new master L4D reference list)
m (Resolved double redirect.)
Tag: Redirect target changed
 
(49 intermediate revisions by 15 users not shown)
Line 1: Line 1:
Left 4 Dead uses the navigation mesh to spawn infected. The director uses the Navigation Mesh when deciding where to spawn infected as well as other factors such as light intensity and line of site. By altering the mesh, it is possible to change the type of infected spawning (such as hospital patients and so on) and the density of their spawn.
#REDIRECT [[List of L4D Series Nav Mesh Attributes]]
 
NOTE: This article was written with experimental information and may not be 100% accurate. This article also assumes that you have read and understood the [[Navigation Meshes]] article.
 
==Marking==
Marking is as important in Left 4 Dead than it is in Counterstrike. While in counterstrike it affects how bots behave, in Left 4 Dead it both controls how they behave and how they spawn. By marking an area with certain attributes certain spawning behaviours can be created. Marking is the same as in Counterstrike, except with extra attributes, such as:
 
{{:Navigation Mesh Attributes (L4D)}}
 
As you can see, some of these are obvious, and will require experimentation to create the right amount of spawn density or to discover their function.
 
==Place Names==
The type of infected spawned depends on place naming. Simple as that. Simply by looking at the place names that appear on the console input of nav_use_place should give you the right idea of which one you want to use for that particular area. For extra detail, go into scripts/population and read it yourselves. Or, if you're too lazy for that, here it is (numbers indicate percentage of group that will spawn that model out of 100 percent, place names are in '''bold'''):
 
'''default'''
 
common_male01 30
<br>
common_female01 25
<br>
common_police_male01 15
<br>
common_military_male01 10
<br>
common_worker_male01 10
<br>
common_male_suit 10
 
'''test_common_male_suit'''
 
common_male_suit 100
 
'''defaulturban'''
 
common_male01 30
<br>
common_female01 25
<br>
common_police_male01 10
<br>
common_military_male01 10
<br>
common_worker_male01 10
<br>
common_male_suit 15
 
'''police'''
 
common_male01 20
<br>
common_female01 20
<br>
common_military_male01 10
<br>
common_police_male01 50
 
'''maintenance'''
 
common_male01 25
<br>
common_female01 20
<br>
common_military_male01 20
<br>
common_worker_male01 35
 
'''hospitalgrounds'''
 
common_male01 20
<br>
common_female01 20
<br>
common_police_male01 15
<br>
common_military_male01 15
<br>
common_worker_male01 15
<br>
common_male_suit 15
 
'''hospital'''
 
common_male01 15
<br>
common_patient_male01 40
<br>
common_worker_male01 15
<br>
common_female_nurse01 15
<br>
common_surgeon_male01 10
 
'''hospitalconstruction'''
 
common_patient_male01 20
<br>
common_worker_male01 30
<br>
common_female_nurse01 20
<br>
common_surgeon_male01 10
<br>
common_male01 20
 
'''airport'''
 
common_female01 20
<br>
common_male_suit 20
<br>
common_worker_male01 15
<br>
common_male_baggagehandler_01 15
<br>
common_tsaagent_male01 15
<br>
common_male_pilot 15
 
'''airportfinale'''
 
common_female01 10
<br>
common_male_suit 10
<br>
common_worker_male01 10
<br>
common_male_baggagehandler_01 30
<br>
common_tsaagent_male01 20
<br>
common_male_pilot 20
'''defaultrural'''
 
common_male_rural01 50
<br>
common_female_rural01 20
<br>
common_police_male01 10
<br>
common_military_male01 10
<br>
common_worker_male01 10
 
// random zombie type spawned at the church after the mini-finale
<br>
'''church'''
 
hunter 25
<br>
smoker 25
<br>
boomer 50
 
'''zoo'''
 
common_female_rural01                5
<br>
common_female01                      10
<br>
common_female_nurse01                5
<br>
common_male01                        20
<br>                   
common_male_baggagehandler_01        5
<br>
common_male_pilot                    5
<br>
common_male_rural01                  10
<br>
common_male_suit                    10
<br>
common_military_male01                5
<br>
common_patient_male01                5
<br>
common_police_male01                  5
<br>
common_surgeon_male01                5
<br>
common_TSAAgent_male01                5
<br>
common_worker_male01                  5
 
== See also ==
* [[L4D Mapping Notes]]
* [[Left 4 Dead Level Creation]]
* [[Navigation Meshes]]
* [[Your First Left 4 Dead Map]]
 
[[Category:Left 4 Dead]]

Latest revision as of 17:12, 18 September 2021