Func nav connection blocker: Difference between revisions

From Valve Developer Community
Jump to navigation Jump to search
(-toolstrigger)
(-see also)
Line 10: Line 10:
[[Image:Func nav connection blocker effect 1.png|thumb|left|600px|caption|Navmesh generated with func_nav_connection_blocker]]
[[Image:Func nav connection blocker effect 1.png|thumb|left|600px|caption|Navmesh generated with func_nav_connection_blocker]]
[[Image:Func nav connection blocker effects 2.png|thumb|left|600px|caption|Example showing func_nav_connection_blocker working correctly even with rotated brush models]]
[[Image:Func nav connection blocker effects 2.png|thumb|left|600px|caption|Example showing func_nav_connection_blocker working correctly even with rotated brush models]]
{{clr}}
== See Also ==
* [[func_nav_attribute_region]]
* [[func_nav_blocker]]
* [[func_nav_avoidance_obstacle]]

Revision as of 16:34, 27 August 2023

English (en)Translate (Translate)
C++ Class hierarchy
CFuncNavConnectionBlocker
CBaseEntity
Toolstrigger.gif

Template:Entity It prevents vertical connections to be made through its volume during navmesh generation.

Example

It's used only in c5m5_bridge. You can see its brush like in the pictures below when convar nav_show_connectionblockers is 1 while round starts and the brush uses tools/toolstrigger texture. Blue lines in the pictures are connections going from upper areas to the lower ones.

Navmesh generated without func_nav_connection_blocker
Navmesh generated with func_nav_connection_blocker
Example showing func_nav_connection_blocker working correctly even with rotated brush models

See Also