Lazy brush entities: Difference between revisions
Jump to navigation
Jump to search
(not internal) |
SirYodaJedi (talk | contribs) (→Semi lazy entities: func_simpleladder) |
||
Line 13: | Line 13: | ||
== Semi lazy entities == | == Semi lazy entities == | ||
* {{ent|prop_physics}} - marks nav areas as OBSTRUCTED based on AABB | * {{ent|prop_physics}} - marks [[nav]] areas as OBSTRUCTED based on AABB | ||
* {{ent|trigger_hurt}} - marks nav areas as DAMAGING based on AABB | * {{ent|trigger_hurt}} - marks [[nav]] areas as DAMAGING based on AABB | ||
* {{ent|script_trigger_hurt}} - marks nav areas as DAMAGING based on AABB | * {{ent|script_trigger_hurt}} - marks [[nav]] areas as DAMAGING based on AABB | ||
* {{ent|trigger_hurt_ghost}} - marks nav areas as DAMAGING based on AABB | * {{ent|trigger_hurt_ghost}} - marks [[nav]] areas as DAMAGING based on AABB | ||
* {{ent|func_simpleladder}} - marks [[nav]] areas as climbable based upon VBSP-set bounding box KVs | |||
== Example == | == Example == | ||
Example on fog_volume. Green box is AABB and that's the effective area of fog_volume instead of the brush model | Example on fog_volume. Green box is AABB and that's the effective area of fog_volume instead of the brush model | ||
[[File:Fogvolume aabbissue.jpg|center|frame]] | [[File:Fogvolume aabbissue.jpg|center|frame]] |
Revision as of 11:57, 26 August 2024

This article or section needs to be cleaned up to conform to a higher standard of quality.
For help, see the VDC Editing Help and Wikipedia cleanup process. Also, remember to check for any notes left by the tagger at this article's talk page.
For help, see the VDC Editing Help and Wikipedia cleanup process. Also, remember to check for any notes left by the tagger at this article's talk page.
Certain brush entities apply its effects based on absolute bounding box (AABB) of its brush model instead of brush model itself.
List of lazy brush entities
- fog_volume
- func_block_charge
- func_nav_blocker
- func_nav_avoidance_obstacle
- script_nav_blocker
- func_detail_blocker
- Internal entities
Semi lazy entities
- prop_physics - marks nav areas as OBSTRUCTED based on AABB
- trigger_hurt - marks nav areas as DAMAGING based on AABB
- script_trigger_hurt - marks nav areas as DAMAGING based on AABB
- trigger_hurt_ghost - marks nav areas as DAMAGING based on AABB
- func_simpleladder - marks nav areas as climbable based upon VBSP-set bounding box KVs
Example
Example on fog_volume. Green box is AABB and that's the effective area of fog_volume instead of the brush model