Special Textures

Back to the Index

These are new textures, found in the zhlt.wad file. They do not act like normal textures as they are not rendered, but instead tell the compile tools to perform certain functions. An example of an existing special texture is the CLIP texture from the Half-life wads, which is used to create a solid but invisible barrier.

The BEVEL texture The BEVEL texture

This texture acts like a NULL texture but also doesn't expand when generating clip hulls. It can be used to eliminate exterior corner clipping bugs without using "-cliptype precise" (although "-cliptype precise" is still the recommended method for removing clipping errors, as this feature is experimental).

The HINT texture The HINT texture

This texture is used to force BSP to create a break in the VIS block. It is used in certain situations to reduce r_speeds, although misuse can increase r_speeds. The HINT texture is applied to only one face of a brush, the other faces must be SKIP, and the whole brush is known as a hint brush.

There is a great tutorial on hint brushes on CounterMap here and another article on the VERC Collective here.

The NULL texture The NULL texture

The NULL texture is one that is removed from the map during compilation, so that it won't exist when you play the compiled .bsp file in Half-Life. You should be able to apply it to any entity or world brush within your map.

The main point of this texture is to use it on faces that the player would under normal circumstances never see, so that those faces will not add to the w_poly count and lower the fps (frames per second) rate (that doesn't mean you can't use it for whatever you want, however). You can also use the SKY texture for this exact same purpose, although it is debatable whether this is actually beneficial. While it does lower the w_poly count, it apparently also lowers the fps rate, thereby defeating its original purpose.

Note that:

The CLIP texture now works in the same fashion as the NULL texture for backwards compadibility.

The SKIP texture The SKIP texture

The SKIP texture is used to cover all the other faces of a brush which have a face with a HINT texture. The SKIP texture is non-solid and has no special effects.

Back to the Index