Template:Archived Page History/Skybox (2D)/en: Difference between revisions

From Valve Developer Community
Jump to navigation Jump to search
m (→‎Adding sky to a map: Included link to skybox optimisation page)
(Changed first sentences, avoiding "A 2D Skybox is a skybox". Creation: 6 VMTs are required, not necessarily 6 VTFs.)
Line 1: Line 1:
{{Language subpage}}A ''2D skybox'' is a [[skybox]] that lacks geometrical depth, consisting only of a skybox texture (without using the [[sky_camera]] entity to display a 3D miniature model).
[[Image:Skybox_Template.jpg|256 px|right]]
[[Image:Skybox_Template.jpg|256 px|right]]
{{note|This page focuses on Skyboxes as they are used in {{Src|4}}. For information about Skyboxes in {{gldsrc|4}}, see [[Skybox (GoldSrc)]]}}
{{Language subpage}}
{{subpage|[[Skybox Basics]]}}
{{for|information about Skyboxes in {{gldsrc|4}}, see [[Skybox (GoldSrc)]]}}
The '''2D Skybox''' of a {{source|4}} map is a static 360° background image that is rendered only through skybox tool textures. This image is composed of six [[VMT|materials]] that are drawn like the insides of an infinitely large cube that surrounds the map.


As opposed to a [[3D Skybox]], it lacks geometrical depth, consisting only of textures without using the {{ent|sky_camera}} entity to display any 3D geometry.
__TOC__
== Adding sky to a map ==
== Adding sky to a map ==
Simply texture a [[world brush]] (not a [[brush entity]]) with the '''<code>[[tool textures|tools/toolsskybox]]</code>''' or (if you are mapping for the [[Orange box]]) the '''<code>[[tool textures|tools/toolsskybox2d]]</code>''' material.  
{| style=float:right
| [[File:Toolsskybox.gif|thumb|<tt>toolsskybox</tt> for 2D and 3D skyboxes]]
| [[File:Toolsskybox2d.gif|thumb|<tt>toolsskybox2d</tt> for 2D skyboxes]]
|}
Simply texture a [[world brush]] (not a [[brush entity]]) with the '''<code>[[tool textures#skybox|tools/toolsskybox]]</code>''' or (if you are mapping for the [[Orange box]]) the '''<code>[[tool textures#skybox2d|tools/toolsskybox2d]]</code>''' material.  


In-game, the skybox will be seen ''through'' each surface that <code>toolsskybox</code> is applied to.  
In-game, the skybox will be seen ''through'' each surface that <code>toolsskybox</code> is applied to.  
Line 16: Line 23:


== Changing the displayed skybox ==
== Changing the displayed skybox ==
: ''See also [[Sky List]]''
[[Image:Sky_change.png|right|200px]]
[[Image:Sky_change.png|right|200px]]
 
The skybox for a map can be set in Hammer's [[worldspawn|Map Properties]] dialog. With the correct map opened, follow these steps:
If you don't like the standard "sky_day01_01" sky, you can change it by setting the skybox name in Hammer's Map Properties dialog. With the correct map opened, follow these steps:
# Go to the [[Hammer Map Menu|Map menu]]  
# Go to the [[Hammer Map Menu|Map menu]]  
# Choose '''Map Properties...''' from the drop down list
# Choose '''Map Properties...''' from the drop down list
# In the Object Properties window, select the '''Skybox Texture Name''' field.
# In the Object Properties window, select the '''Skybox Texture Name''' field.
# Replace the sky listed there with the name of the skybox you wish to display.  
# Replace the value with the name of the skybox you wish to display. See [[Sky List]] for a list of available skies per game. To use a custom sky, see below.
 
 
In-game, the current skybox can be changed with the cheat console variable <span id=sv_skyname></span> {{code|sv_skyname <skyname>}}.
{{clr}}
{{clr}}


Line 33: Line 39:
== Creating a Custom 2D Skybox Texture ==
== Creating a Custom 2D Skybox Texture ==


# Prepare your image files. You need six images of the same resolution:
# Prepare your image files. You don't necessarily need six images, as you can use an image for multiple sides, for example one for the top, one for the bottom and one for all four sides.
#* <skyname>BK
#* <skyname>DN
#* <skyname>FT
#* <skyname>LF
#* <skyname>RT
#* <skyname>UP
# [[Creating a Material|Convert them to VTF.]] Make sure that you enable "Clamp S" and "Clamp T" flags or you'll see seams when running with lower texture detail.
# [[Creating a Material|Convert them to VTF.]] Make sure that you enable "Clamp S" and "Clamp T" flags or you'll see seams when running with lower texture detail.
# Create materials for each texture in <code>\materials\skybox\</code>, using the following template:
# Create the following six [[VMT]] text files in the directory {{path|\materials\skybox\}}. Note that character case does not matter except for the skyname.
sky
#* {{mono|<skyname>BK.vmt}}
{
#* {{mono|<skyname>DN.vmt}}
[[$basetexture]] <VTF>
#* {{mono|<skyname>FT.vmt}}
[[$hdrcompressedtexture]] <VTF>
#* {{mono|<skyname>LF.vmt}}
[[$nofog]] 1
#* {{mono|<skyname>RT.vmt}}
        [[$nomip]] 1
#* {{mono|<skyname>UP.vmt}}
[[$ignorez]] 1
Use the following template for each:
}
{{CodeBlock|
 
sky
Now, in [[Hammer]], go to Map > Map Properties > Skybox Texture Name and type in your skybox name without any side tags.
{
[[$basetexture]] <VTF>
[[$hdrcompressedtexture]] <VTF>
[[$nofog]] 1
[[$nomip]] 1
[[$ignorez]] 1
}
}}
Now, in [[Hammer]], go to ''Map'' > ''Map Properties'' > ''Skybox Texture Name'' and type in {{mono|<skyname>}}, without any side tags.


== Creating a Skybox with XBlah's Modding Tool ==
== Creating a Skybox with XBlah's Modding Tool ==

Revision as of 09:11, 14 August 2023

Skybox Template.jpg
Flag-white.pngEnglish (en)
For information about Skyboxes in GoldSrc GoldSrc, see Skybox (GoldSrc)

The 2D Skybox of a Source Source map is a static 360° background image that is rendered only through skybox tool textures. This image is composed of six materials that are drawn like the insides of an infinitely large cube that surrounds the map.

As opposed to a 3D Skybox, it lacks geometrical depth, consisting only of textures without using the sky_camera entity to display any 3D geometry.

Adding sky to a map

toolsskybox for 2D and 3D skyboxes
toolsskybox2d for 2D skyboxes

Simply texture a world brush (not a brush entity) with the tools/toolsskybox or (if you are mapping for the Orange box) the tools/toolsskybox2d material.

In-game, the skybox will be seen through each surface that toolsskybox is applied to.

toolsskybox Brushes do not need to be box-shaped.

Note.pngNote:In HL2 the default skybox has visible seams. This is not your fault. See the next section for how to change the default.
Note.pngNote:Ideally, your skybox should somewhat "wrap" around your map such that there is only a very small/zero amount of space between the play-space and the skybox itself, though it's usually not necessary to have the skybox "hugging" the bounds of the map to achieve reasonable compile times. See Skybox Optimization for more details.
Warning.pngWarning:You should avoid making a skybox by drawing a big hollowed out cube with the Skybox texture around your map. This can drastically increase VVIS compile times.

Changing the displayed skybox

Sky change.png

The skybox for a map can be set in Hammer's Map Properties dialog. With the correct map opened, follow these steps:

  1. Go to the Map menu
  2. Choose Map Properties... from the drop down list
  3. In the Object Properties window, select the Skybox Texture Name field.
  4. Replace the value with the name of the skybox you wish to display. See Sky List for a list of available skies per game. To use a custom sky, see below.


In-game, the current skybox can be changed with the cheat console variable sv_skyname <skyname>.

Skybox Lighting

Main article:  Skybox lighting

Creating a Custom 2D Skybox Texture

  1. Prepare your image files. You don't necessarily need six images, as you can use an image for multiple sides, for example one for the top, one for the bottom and one for all four sides.
  2. Convert them to VTF. Make sure that you enable "Clamp S" and "Clamp T" flags or you'll see seams when running with lower texture detail.
  3. Create the following six VMT text files in the directory 🖿\materials\skybox\. Note that character case does not matter except for the skyname.
    • <skyname>BK.vmt
    • <skyname>DN.vmt
    • <skyname>FT.vmt
    • <skyname>LF.vmt
    • <skyname>RT.vmt
    • <skyname>UP.vmt

Use the following template for each:

Now, in Hammer, go to Map > Map Properties > Skybox Texture Name and type in <skyname>, without any side tags.

Creating a Skybox with XBlah's Modding Tool

LDR Skyboxes can be created straight from image files with the XBLAH's Modding Tool XBLAH's Modding Tool using an intuitive interface, that creates all the required vtfs and vmts. All you have to do is select each cubemap face, preview it, and save. It has a built in 3D previewer to check if the skybox is seamless, and supports the regular square skyboxes and the clamped ones.

This can be accessed within the tool through Materials > Skybox Editor.

Clean Mod

See also

Environment articles:
Skies and environment maps Source Source: Skybox (2D)Skybox (3D)HDR SkiesSkybox with TerragenSkybox with Terragen - AdvancedList of skies


Source 2 Source 2: Skybox (3D)

Terrain and displacement mapping DisplacementsCreating Holes in DisplacementsDigital Elevation ModelsCreating custom terrain with Worldmachine

External links