SKY texture Last edited 4 months ago2023-12-21 16:13:52 UTC

You are viewing an older revision of this wiki page. The current revision may be more detailed and up-to-date. Click here to see the current revision of this page.
halflife.wad's SKY texture. Seen in level editors but not in the gamehalflife.wad's SKY texture. Seen in level editors but not in the game
SKY is a tool texture used to place skyboxes. Wherever it's applied to a brush face in a level will instead have the skybox rendered instead. A skybox is a set of 6 textures that wraps around an inverted box, and is statically rendered relative to the player i.e. moving around the map doesn't shift the perspective of the skybox textures in any way.

The actual texture shown during play is controlled by the map properties setting "Enviroment Map (cl_skyname)". The default is desert. Custom skies are normally added to the gfx/env/ folder and then selected in the map properties before compiling. You can find all the sky names that come with HL by looking in the gfx/env/ folder (for legacy WON installations, you will find them inside the pak0.pak file which you can open with any software that is capable of reading Quake PAKs files like PAKScape).

SKY textures must be applied to visible faces while the rest can be textured with NULL. SKY textures must be applied to ALL faces of the sky brushes, otherwise it will cause problems with sky lighting in newer versions of VHLT's HLRAD.exe.

VHLT also automatically generates clipnodes on SKY brushes, the same effect as a User posted image CLIP brush. This can be turned off by passing argument -noskyclip to HLCSG.exe. The original Half-Life SDK's compilers don't do this, allowing players to swim inside SKY brushes as if they were water brushes.

Weather and Counter-Strike: Condition Zero - Deleted Scenes

If you are mapping for Counter-Strike: Condition Zero - Deleted Scenes and you use any entity related to weather, the SKY texture MUST be applied to all faces of the brush, so select "treat as one", when applying SKY textures.

If weather entities aren't working, that might be the reason.

This notice might also applies to other games/mods that control weather.
Sky texture applied to brushes is treated differently during rendering. It does not generate extra wpoly's as normal texture does. Some tutorials tell you that it is good idea to use sky texture as a filler for large unseen areas, I have no evidence that this is a good method of reducing r_speeds, when the hint and skip textures are available. Howevre, current best practice to reduce wpolys is to apply User posted image NULL on faces that shouldn't be visible e.g. backsides of walls that players can't get around to see.

In GL mode [not tested in software mode] the skybox doesn't hide level geometry behind it. The solution is to either further optimize VIS splitting using User posted image HINT brushes to try force occlusion of the offending areas, or to cover up problem areas with geometry or foliage.
Despite the name, you are not supposed to create a literal hollowed sky box then place your level inside of it. This so-called "skyboxing" bloats a BSP and degrades performance in terms of VISibility and wpoly counts.
Dummied down illustrationDummied down illustration

3 Comments

Commented 4 years ago2019-05-16 21:06:41 UTC Comment #101990
Correction: the "treat as one" in Hammer Editor's texture application tool is not intended to apply a texture on all the faces of a brush at one time. Instead, use SHIFT+click to select all faces and CTRL' to select multiple objects.
Commented 2 years ago2021-12-28 19:42:34 UTC Comment #103911
Me: When you have a custom GoldSrc skybox, is there any reason to include BMP files? Are they used anymore? Or just the TGAs?
Admer: Yeah, software mode I think
func_cambreaKable: software mode uses tga's too though
func_cambreaKable: i have only tga skyboxes in WAR and they work on software mode
Mikko: software mode falls back to tgas if bmps can't be found
Mikko: bmps can be used by gl too if you have an old graphics card that supports those paletted texture extensions
Commented 4 months ago2023-12-16 12:02:30 UTC Comment #105742
I found that compiling with VHLT will make sky lighting not work on sky brushes that aren't all textured with sky texture, making that particular brush not emit skylight.

It's also particular about having different sky "ceiling" brushes at different levels. Hard to explain why; I think it can only emit light from one side, and so having one sky brush act as both wall and ceiling of a skybox makes it only emit light on the wall side. So it might mean one sky brush emits light on only one face.
My solution was to have rooms with sky be at only one ceiling level each.

You must log in to post a comment. You can login or register a new account.