Brush

From Blood Wiki
(Difference between revisions)
Jump to: navigation, search
(Brush contents)
m (Usage)
Line 66: Line 66:
 
Also if brush have sides which is marked detailed or transparent, it will be forced transparent.
 
Also if brush have sides which is marked detailed or transparent, it will be forced transparent.
  
=== Usage ===
+
=== Brush vs Patch mesh vs Triangle model ===
  
Brushes are essential thing to make geometry that requires a volume to function properly (water, triggers), level hull structure (the geometry that forms [[VIS]] portal tree) and grude procedural geometry which is used to connect rooms together. It can also be used to create semi-complex geometry on detail objects. For quite complex and small objects, [[patch mesh|patch meshes]] and triangle models are better and more easier to make.
+
Brushes are essential things to make:
 +
* Geometry that requires a volume to function properly (water, triggers)
 +
* Level hull structure (the geometry that forms [[VIS]] portal tree)  
 +
* Geometry used to connect rooms together.
  
Examples of usage:
+
Brushes are good things to make:
 +
* Simple detail objects used to cover corners and connect parts of level together
 +
* Semi-complex objects, which are derived version of some generic object (think house or other building) but with altered proportions/moved walls.
 +
* Geometry that is more convenient to make with brushes (using it's features - CSG operators, projection texturing and ability to be edited in level editor)
  
{| cellspacing=0 cellpadding=2 style="width:100%"
+
For all other cases, [[patch mesh|patch meshes]] and triangle models are better and more easier alternative to work with.
| width=5% align=right | Room floors
+
 
 +
Some examples of good and bad usage of brushes:
 +
 
 +
{| cellspacing=0 cellpadding=2 border=1 style="width:100%;border-collapse:collapse"
 +
| width=10% | Room floors
 
| width=10% | <font color=green>Good choice</font>
 
| width=10% | <font color=green>Good choice</font>
| width=85% | Most of room floors are part of world hull. It is useful to edit them inside radiant. For physics floors have priority because gravity always make object to fall, so high mathematical precision of brushes will help with making physics more stable.
+
| width=80% | Most of room floors are part of world hull. It is useful to edit them inside radiant. For physics floors have priority because gravity always make object to fall, so high mathematical precision of brushes will help with making physics more stable.
 
|-
 
|-
| align=right | Walls:
+
| Walls
 
| <font color=green>Good choice</font>
 
| <font color=green>Good choice</font>
| Description is pretty same as for the floor. Walls are part of map hull and when working with map, you are ofter reconfiguring your walls.  
+
| Same as for the floor. Walls are part of map hull and when working with map, you are ofter reconfiguring your walls.  
 
|-
 
|-
| align=right | Statue:
+
| Statue
 
| <font color=red>Not a good choice</font>
 
| <font color=red>Not a good choice</font>
 
| Since complex models are broken into many brushes, it is hard to control texturing on them. Also texture projection is only capable of making simple UV. So you statue withg be either crude or will take insane abount of time to build with brushes.
 
| Since complex models are broken into many brushes, it is hard to control texturing on them. Also texture projection is only capable of making simple UV. So you statue withg be either crude or will take insane abount of time to build with brushes.
 
|-
 
|-
| align=right | Chair:
+
| Chair
 
| <font color=red>Not a good choice</font>
 
| <font color=red>Not a good choice</font>
| Actually its pretty same as for statue. Chair is too complex for brushes, and also it's pretty stock at its form. So its easier to make it with misc_gamemodel.
+
| Same as for statue. Chair is too complex for brushes. It is easier to make it with misc_gamemodel.
 
|-
 
|-
| align=right | Terrain:
+
| Terrain  
 
| <font color=orange>may be good choice</font>
 
| <font color=orange>may be good choice</font>
 
| Small chunks of terrain is good to make with brushes, as they can be reconfigured in editor and dont need a works with exporting/importing as for models. Brushes also part of the .map file, so it dont generates any external files. Vertex alpha should be handled by colormod brushes. The big landscapes is not good to make with brushes, because big terrain takes 5000+ brushes and per-brush works is quite uneffective for it.
 
| Small chunks of terrain is good to make with brushes, as they can be reconfigured in editor and dont need a works with exporting/importing as for models. Brushes also part of the .map file, so it dont generates any external files. Vertex alpha should be handled by colormod brushes. The big landscapes is not good to make with brushes, because big terrain takes 5000+ brushes and per-brush works is quite uneffective for it.
 +
|-
 +
| House
 +
| <font color=orange>may be good choice</font>
 +
| Since brush have projection texturing, its easy to move house walls/alter it's height without texture breakage, which may be easy way to make villages. But house is complex object, and making it with brushes may get hard and uneffective, depending on house design. So it's up to designer whether use brushes or triangle models for buildings.
 
|}
 
|}
  

Revision as of 13:13, 10 October 2012

Brush of the crypt entrance in NetRadiant

A brush is a basic building block in a level. It is used primarily to define the physical structure of the area being designed. The term "brush" originally was used by Radiant to refer to anything that is not an entity, and therefore also encompasses patch meshes (which is different from CSG brush in both construction and texturing).

A brush can be made to represent anything from solid matter (metal, dirt, wood, etc.) to liquids (lava, water, etc.) depending on the textures and materials applied to them.

Brush is constructive solid geometry (CSG). It uses a form made of its sides and a volume which is anyting inside. CSG brushes are presented in Unreal Engine (1/2/3), Torgue engine, Cryengine 3. Hammer (native editor for Source engine games) is using it too. CSG is popular because a modeler can use a set of relatively simple objects to create very complicated geometry. User can revise their complex geometry by changing the position of objects or by changing brush attributes.

Shape

Properly constructed brush follows this rules:

  • Has at least 3 sides
  • Each side is plane forming polyhedron (maximum 16-24 corners)
  • If sliced by the plane of any of its sides, the whole brush will be on one side of the plane
Important: If modifying brush shape, all these rules must be followed. Radiant have tools to move/transform brush vertexes, sides and planes. If you apply transformation that will lead to CSG rules breakage, resulting brush will become invalid. For most cases Radiant does not allow you to do that.

Brush rules.jpg

Texturing

Since brush internal structure doesn't have vertices, it is using special projection technique to get texture mapping:

  1. Texture gets projected from axis planes (XY, XZ, YZ) to the sides of the brush, optimal projection plane is selected by brush side orientation.
  2. Texture is rotated by plane's rotate parameter.
  3. Texture position is scaled by plane's stretch (x and y).
  4. Texture position is shifted by plane's offset (x and y).
  5. When using texture dimensions, positions are converted to texture coordinates.

This leads to a number of limitations applied for brushes:

  • Rotating texture is tricky as no rotation origin is specified, this leads to texture breakage when brush is rotated to small angles (90 degrees rotation works fine).
  • Texturing may brake if texture resolution is changed (there is a material trick to bypass that).

Along with limitations, there is a number of benefits:

  • No texture coordinates = no UVW unwrap work.
  • A little easier to control texture detail.
  • No texture UV breakage when model is sliced/expanded.
  • Can scale model with keeping original texture detail.
  • Can modify brush in various ways with no texture breakage (make a wall longer for example).

Volume

Brush contents

Physics-related contents of the brush. Could be one of the following:

  • Solid
  • Non-solid
  • Water
  • Slime
  • Lava
  • Sky

Brush contents are defined from the materials brush has on its sides. Usually all brush sides must have same contents (mixed contents will give a compiler warning and could lead to bugged behavior).

VIS transparency

This is not real transparency but any brush that does not provide structure/seal to a room, and merely is there to detail the room.

Detail brushes (Radiant feature) and bmodels are always 'transparent'.

Also if brush have sides which is marked detailed or transparent, it will be forced transparent.

Brush vs Patch mesh vs Triangle model

Brushes are essential things to make:

  • Geometry that requires a volume to function properly (water, triggers)
  • Level hull structure (the geometry that forms VIS portal tree)
  • Geometry used to connect rooms together.

Brushes are good things to make:

  • Simple detail objects used to cover corners and connect parts of level together
  • Semi-complex objects, which are derived version of some generic object (think house or other building) but with altered proportions/moved walls.
  • Geometry that is more convenient to make with brushes (using it's features - CSG operators, projection texturing and ability to be edited in level editor)

For all other cases, patch meshes and triangle models are better and more easier alternative to work with.

Some examples of good and bad usage of brushes:

Room floors Good choice Most of room floors are part of world hull. It is useful to edit them inside radiant. For physics floors have priority because gravity always make object to fall, so high mathematical precision of brushes will help with making physics more stable.
Walls Good choice Same as for the floor. Walls are part of map hull and when working with map, you are ofter reconfiguring your walls.
Statue Not a good choice Since complex models are broken into many brushes, it is hard to control texturing on them. Also texture projection is only capable of making simple UV. So you statue withg be either crude or will take insane abount of time to build with brushes.
Chair Not a good choice Same as for statue. Chair is too complex for brushes. It is easier to make it with misc_gamemodel.
Terrain may be good choice Small chunks of terrain is good to make with brushes, as they can be reconfigured in editor and dont need a works with exporting/importing as for models. Brushes also part of the .map file, so it dont generates any external files. Vertex alpha should be handled by colormod brushes. The big landscapes is not good to make with brushes, because big terrain takes 5000+ brushes and per-brush works is quite uneffective for it.
House may be good choice Since brush have projection texturing, its easy to move house walls/alter it's height without texture breakage, which may be easy way to make villages. But house is complex object, and making it with brushes may get hard and uneffective, depending on house design. So it's up to designer whether use brushes or triangle models for buildings.

See also

Personal tools
Namespaces

Variants
Actions
Navigation
Toolbox