Brush: Difference between revisions

From Valve Developer Community
Jump to navigation Jump to search
m (otherlang2 de)
m (→‎Limits: More info on face limits.)
Line 31: Line 31:
* 8192 brushes
* 8192 brushes
* 128 faces on a single brush
* 128 faces on a single brush
* 65536 faces overall
* 32768 faces overall (half of the BSP plane limit, each face uses two planes)


Invisible brushes like [[trigger_multiple|triggers]] and even [[hint brush]]es count toward the limit. Faces like NODRAW do not count toward the limit. Faces textured with nodraw are removed during compile so ONLY it's collisions, boundings, and place in the world exist.
Invisible brushes like [[trigger_multiple|triggers]] and even [[hint brush]]es count toward the limit. Faces like NODRAW do not count toward the limit. Faces textured with nodraw are removed during compile so ONLY it's collisions, boundings, and place in the world remain. Note that faces may be split up by the compiler, counting them further toward the limit.


{{tip|It is possible to compile a custom build of VBSP with these limits changed or removed, but who knows how the engine would respond?}}
{{tip|It is possible to compile a custom build of VBSP with these limits changed or removed, but who knows how the engine would respond?}}

Revision as of 08:34, 26 September 2016

Template:Otherlang2

A brush is a convex 3D shape created with Hammer's Block Tool. Brushes are used by level designers to define the shape of the world (which defines visibility) and to create brush entities.

When a map is compiled VBSP converts brush faces that touch a visleaf to groups of polygons. The resulting 'brush models' are stored within the BSP file and can be claimed by entities (e.g. the world, or your brush entity). The original brushes are retained in the BSP, though the benefits of this are not clear.

In comparison to models, brushes are:

Compilation

  1. For each individual brush model, only faces that touch a visleaf are compiled. Some of the results of this process can be seen below:

    Brushes and their compiled equivalents

  2. If some parts of a brush face touch visleaves and others do not, the face will be chopped up to remove the hidden area.

There are two exceptions to these rules:

  • Although they are discrete entities in Hammer, func_details are all merged into one during compile. You do not need to nodraw hidden 'detail-to-detail' faces (but you do need to nodraw world-to-detail and detail-to-world).
  • Faces with translucent materials applied are never chopped. Don't apply them to internal or hidden surfaces unless you really mean to.

Limits

VBSP enforces these limits:

  • 8192 brushes
  • 128 faces on a single brush
  • 32768 faces overall (half of the BSP plane limit, each face uses two planes)

Invisible brushes like triggers and even hint brushes count toward the limit. Faces like NODRAW do not count toward the limit. Faces textured with nodraw are removed during compile so ONLY it's collisions, boundings, and place in the world remain. Note that faces may be split up by the compiler, counting them further toward the limit.

Tip.pngTip:It is possible to compile a custom build of VBSP with these limits changed or removed, but who knows how the engine would respond?

See also