Tool uses a material naming convention to assign shaders and give special properties to parts of your model. Halo 1's convention is simpler than later games. This convention applies to both 3ds Max and Blender use.

Material naming and shaders

In your 3D software you can assign named materials to parts of your model. The name of the material is included in your exported JMS file. When importing your JMS to tag form, Tool will then parse this material name and search for a shader tag with a matching name to assign to those parts of your model. The material name can also include special symbols.

For example, a level BSP which has the material name vines^ will cause Tool to search for a shader named vines and treat the surface as a ladder due to the ^ symbol. You might have a corresponding shader at tags\levels\my_level\shaders\vines.shader_environment but it could also unintentionally match with a vines.shader_transparent_chicago from some other level. For this reason it's important to name your materials and shaders uniquely. Always use lower-case names and do not exceed 32 characters.

When no matching shader tag can be found, Tool will ask you to generate an empty one by choosing a shader type. HEK Tool will create these in the root of the tags directory, whereas H1A Tool will create them in a shaders directory next to the model tag. In the case of HEK Tool, you will probably want to move these files into your level's shaders directory later just to keep things tidy. Once Tool has generated the empty shader tags, you must compile the model from JMS again for those shaders to be referenced.

Sapien and/or Halo may crash if you do not set up any bitmap references in these new shaders so do that before proceeding; empty shaders are invalid.

HEK Tool is hard-coded to not find any shader matches for the cut level levels\b20. This is no longer the case in H1A Tool.

Special materials

These material names are hard-coded into Tool and have special meaning when creating levels. They do not need shader tags.

NameUsage
+sky, +sky0, +sky1, ...Applied to surfaces to render the skybox. You can add the index of the sky in the scenario skies block if your scenario has multiple skies. Since each cluster can only reference one sky, you must ensure that all sky faces within a cluster use the same index. Sky faces are necessary to form a sealed world and are collideable. Projectiles are removed when they hit sky faces.
+seamsealerUsed to seal holes at BSP transition areas or in unfinished parts of a level. These faces behave almost the same as +sky; they show the skybox through them, are collideable, remove projectiles, and need to follow the sealed world rules. Where they differ is that seamsealer will not cause a cluster containing them to be considered an outdoor cluster or permit any sky light to pass through them, unless there are +sky faces in that cluster too or it's forced to become an outdoor cluster due to the PVS.
+portalApplied to faces that are used to define general portals used in the visibility solution or rendering occlusion for the level. Because they split the level into clusters, they are also used to define areas of different sound environments or weather. Portal planes are also candidate dividing planes for Tool's construction of the collision BSP, so changing your portals may affect where and if collision artifacts occur.
+exactportalApplied to faces that are used to define an exact volume or portal. Such faces typically cover exactly the opening of a doorway, passage, or hallway to define a very distinct volume that can be used to occlude the rendering of other areas of the level. The portal need not be planar, but all of its vertices must be perfectly aligned (but not welded) with the level's vertices. Both +portal and +exactportal are represented the same way within a BSP tag once compiled.
+weatherpolyUsed on the faces of simply convex shapes to generate weather polyhedra, which are used to mask weather particles from areas under overhangs and around doorways. The faces do not need to be sealed but do need to be connected to each other in each polyhedron.
+soundApplied to faces that are used to define volumes for sound.
+unusedIndicates that the surface is unused for rendering or collision purposes, and is only used in conjunction with the material symbol $ like +unused$ to define fog planes when there's no other suitable material to put the symbol on (like a water surface). An example of +unused$ in use would be like Gephyrophobia's fog. Using this special material with other symbols has no effect.

Material symbols

Material symbols are added to the start or end of the material name and give the surface certain attributes or behaviours in-engine.

SymbolUsage
%Two-sided property. This has the effect of both disabling back-face culling so that the surface will render from both sides instead of just its normal direction, and this will cause the surface to have two-sided collision (unless marked render-only with !). A surface with this symbol does not need to follow sealed world rules (it can have open edges), however you cannot use it to seal the level. This symbol is typically used on glass windows and floor grates if the player will see them from both sides.
#Transparent property. Used for one-sided non-manifold (unsealed) collidable geometry like grates.
!Render-only property. This causes the surface to have no collision and therefore does not need to follow sealed world rules. Use this for things which the player will not interact with like small cables or 2D "billboard" trees outside the playable space.
*Large collidable property, also called sphere collision only. This creates non-rendering collision-only geometry that ray tests (such as projectiles) pass through but not sphere-based collisions (like bipeds physics pills and vehicle physics). This symbol is ideal for surfaces which prevent the player from getting stuck on small obstacles, covering stairs with invisible ramps, and stopping players from going out of bounds, all while still allowing grenades and bullets to pass through. Source engine modders may know this as player clip.
@Collision only property. Used for non-rendered collision geometry. These surfaces will stop all types of collision rather than sphere only like *.
$Fog plane property. This symbol caused faces to be used as a fog plane, to which fog can be assigned in Sapien. The fog region is the space anti-normal to (behind) the surface. When the fog plane exists alone, it is paired with the special material +unused to make +unused$. When the fog plane is used with water, you would name the material like my_water_shader!$.
^Ladder property. This indicates if the collision surface is climbable. Use it for ladders. It's common to pair this with two-sided property like my_ladder_shader%^ for 2D floating ladder planes.
-Breakable property. Use this for breakable glass surfaces. When destroyed they will shatter into small particles and become collisionless.
&AI deafening property. This is a special kind of portal which does not propagate sound. AI will not be able to hear sounds through it.
.Exact portal property. This symbol can be used for materials which are always used on surfaces that perfectly separate one space from another. In other words, they will work just like +exactportal. This is an easy way to automatically create some exact portals where you have enclosed spaces behind glass and grates.

There is no symbol for surfaces which only projectiles will collide with; just * for blocking vehicles/players and @ for blocking everything. However, you can create a custom device_light_fixture since this object type blocks projectiles but not players and vehicles. This makes them ideal for energy-shielded doorways.

Acknowledgements

Thanks to the following individuals for their research or contributions to this topic:

  • Conscars (Seamsealer effects on cluster type)
  • Halo PC End User Editing Kit Development Team (Writing the original HEK tutorial which documents many of these conventions)