Difference between revisions of "Cube map"

From polycount
Jump to: navigation, search
(CategoryTextureTypes)
(more info)
Line 2: Line 2:
 
= Cube Map =
 
= Cube Map =
  
A cubemap is six images that are mapped onto a cube. Cubemaps are supported natively in graphics hardware so they're really quick to transform and render, there's a unified method for rendering them in games.  
+
A cubemap is six images that are mapped onto a cube. Cubemaps are supported natively in graphics hardware so they're really quick to transform and render, because of this there's a unified method for rendering them in games.  
  
  
Line 16: Line 16:
 
|}
 
|}
  
The cube is always centered on the current viewpoint. This means, when used as a backdrop or skybox it always appears infinitely distant. If you turn on wireframe mode in any 3d engine using a cubemap skybox, you'll see the geometry of the box.  
+
The cube is usually centered on the current viewpoint or camera. This means, when used as a backdrop or skybox it always appears infinitely distant. If you turn on wireframe mode in any 3d engine using a cubemap skybox, you'll see the geometry of the box. In the end it's just a regular mesh object.
  
 
== Reflections & Lighting ==
 
== Reflections & Lighting ==
When used for reflections, the reflection cubemap is centered on the mesh object. The viewing angle bounces off the mesh surface at an angle opposite to the surface normals, so it points to particular parts of the cube map.  
+
When used for reflections, the reflection cubemap is usually centered on the mesh object. The viewing angle bounces off the mesh surface at an angle opposite to the surface normals, so it points to particular parts of the cube map.  
  
 
Cubemaps can also be used for soft ambient-occlusion-like environment lighting, by using a [[Diffusely Convolved Cube Map|diffusely convolved cubemap]].
 
Cubemaps can also be used for soft ambient-occlusion-like environment lighting, by using a [[Diffusely Convolved Cube Map|diffusely convolved cubemap]].
  
 
== Creating Cubemaps ==
 
== Creating Cubemaps ==
The bitmaps for each of the six sides need to be square, each needs to be powers-of-two in size (128, 256, 512, etc.), and all six images need to be the same size.  
+
The bitmaps for each of the six sides need to be square, each needs to be powers-of-two in size (128, 256, 512, etc.), and all six images need to be the same resolution.  
  
Either store the bitmaps as six separate bitmaps, or more commonly store all six in a single DDS cubemap file.  
+
Usually for games you store the bitmaps all in one file using [[DDS]] or another compressed format, though some editors prefer them stored as six separate bitmaps (then compress them internally).  
  
 
=== 3ds Max ===
 
=== 3ds Max ===
There are two main ways to render cubemaps in 3ds Max.
+
There are two main ways to create cubemaps in 3ds Max:
# [[#Metal Bump9|Metal Bump9]] ... saves directly into DDS cubemap format, but limited to 256x256 and you can't set the DDS compression (uses ARGB).
+
# [[#Metal Bump9|Metal Bump9]] ... saves directly into DDS cubemap format, but it's limited to 256x256 and you can't set the [[DDS]] compression format (it always uses ARGB, which is uncompressed).
# [[#Reflect/Refract Map|Reflect/Refract Map]] ... more steps, but not limited to a resolution or format.
+
# [[#Reflect/Refract Map|Reflect/Refract Map]] ... more steps, but you're not limited to a particular resolution or format.
  
3ds Max can display cubemaps in real-time if you use the DDS cubemap format, and you use the DirectX Shader material.
+
3ds Max can display cubemaps in real-time if you use the DDS cubemap format and a DirectX Shader material.
  
 
==== Metal Bump9 ====
 
==== Metal Bump9 ====
# Setup a scene you wish to render into a cubemap.
+
# Setup a 3D scene you wish to render into a cubemap.
 
# Place some type of object at the viewpoint you wish to render the cubemap from, for example a camera or a point helper or a geometric object. The orientation of the object doesn't matter, and the object itself won't be rendered into the cubemap.
 
# Place some type of object at the viewpoint you wish to render the cubemap from, for example a camera or a point helper or a geometric object. The orientation of the object doesn't matter, and the object itself won't be rendered into the cubemap.
 
# Create a Standard material, open the DirectX Manager rollout, and change the None flyout to Metal Bump9.
 
# Create a Standard material, open the DirectX Manager rollout, and change the None flyout to Metal Bump9.
Line 45: Line 45:
  
 
==== Reflect/Refract Map ====
 
==== Reflect/Refract Map ====
# Setup a scene you wish to render into a cubemap.
+
# Setup a 3D scene you wish to render into a cubemap.
 
# Place some type of object at the viewpoint you wish to render the cubemap from, for example a camera or a point helper or a geometric object. The object itself won't be rendered into the cubemap.
 
# Place some type of object at the viewpoint you wish to render the cubemap from, for example a camera or a point helper or a geometric object. The object itself won't be rendered into the cubemap.
# Configure your rendering options.
+
# Setup your rendering options (texture filtering, anti-aliasing, etc.).
 
# Create a Standard material and load a Reflect/Refract map into any slot.
 
# Create a Standard material and load a Reflect/Refract map into any slot.
 
# In the map, set ''Source'' = ''From File''.
 
# In the map, set ''Source'' = ''From File''.
Line 53: Line 53:
 
# Use the ''Render Cubic Map Files / To File:'' button to set the prefix name and bitmap format to render to.
 
# Use the ''Render Cubic Map Files / To File:'' button to set the prefix name and bitmap format to render to.
 
# Press ''Pick Object and Render Maps'' and select the viewpoint object.  
 
# Press ''Pick Object and Render Maps'' and select the viewpoint object.  
# The six bitmaps will automatically be loaded into the Reflect/Refect map, or you can convert them into a DDS cubemap with <code><nowiki>Dxtex</nowiki></code> or another tool.
+
 
 +
The six rendered bitmaps will automatically be loaded into the Reflect/Refect map, or you can convert them into a DDS cubemap with <code><nowiki>Dxtex</nowiki></code> or another tool.
  
  
Line 62: Line 63:
  
 
=== [[DxTex]] ===
 
=== [[DxTex]] ===
Microsoft's DxTex is another way to create a DDS cube map from six images. DxTex is automatically installed when you install the [http://msdn.microsoft.com/en-us/directx/aa937788.aspx DirectX SDK]. Once installed it will be found in the folder (SDK root)\Utilities\Bin\x86 or x64. Use the x86 version unless you're running a 64bit OS. There's also a DDS plugin for Photoshop in the SDK, it expects a 1x6 layout in Photoshop:
+
Microsoft's DxTex offers a way to create a DDS cube map from six images. DxTex is automatically installed when you install the [http://msdn.microsoft.com/en-us/directx/aa937788.aspx DirectX SDK]. Once installed it will be found in the folder (SDK root)\Utilities\Bin\x86 or x64. Use the x86 version unless you're running a 64bit OS. There's also a DDS plugin for Photoshop in the SDK, it expects a 1x6 layout in Photoshop:
 
* +X
 
* +X
 
* -X
 
* -X
Line 87: Line 88:
  
 
== Cubemap Seams ==
 
== Cubemap Seams ==
Cubemaps can show seams along the edges of the cube if they aren't mapped properly. Texture filtering can cause a sliver of the opposite side of the texture to creep into the opposite edge. This is simply because the texture is tiling.
+
Cubemaps can show seams along the edges of the cube if they aren't mapped properly.  
 +
 
 +
When a cubemap is rendered automatically in graphics hardware by a game engine, it will be seamless because it uses the '''Clamp''' uv address mode.
 +
 
 +
However if an artist manually creates a cube mesh and maps the six bitmaps onto it, usually this will cause seams from texture filtering. By default most materials use the '''Wrap''' uv address mode, which allows a texture to tile across a mesh. With a cubemap however this causes a sliver of the opposite side of each texture to be filtered into each edge. If your material has the option to use Clamp instead of Wrap, this will remove the seams.
  
 
There are two solutions for this:  
 
There are two solutions for this:  
 
# Set the texture coordinate address mode to Clamp instead of Wrap. Then the edge pixels will be sampled instead of the opposite side.
 
# Set the texture coordinate address mode to Clamp instead of Wrap. Then the edge pixels will be sampled instead of the opposite side.
# Or, for each face of the cube: copy the edge pixels out a couple times, scale each face back down to a powers-of-two size, and scale the UVs down a little.  
+
# Or, for each face of the cube: copy the edge pixels out a couple times, scale each face back down to a powers-of-two size, and scale the UVs down a little. The [http://www.imgtec.com/powervr/insider/ PowerVR SDK] has a tutorial about this in their docs.
  
 
{| border="1" cellpadding="2" cellspacing="0"
 
{| border="1" cellpadding="2" cellspacing="0"

Revision as of 09:59, 20 March 2011

Cube Map

A cubemap is six images that are mapped onto a cube. Cubemaps are supported natively in graphics hardware so they're really quick to transform and render, because of this there's a unified method for rendering them in games.


[[Image:CubeMap$cubemap_Sorsele_humus.jpg}}
A cubemap in horizontal-cross format.<
>Image by Emil 'Humus' Persson

The cube is usually centered on the current viewpoint or camera. This means, when used as a backdrop or skybox it always appears infinitely distant. If you turn on wireframe mode in any 3d engine using a cubemap skybox, you'll see the geometry of the box. In the end it's just a regular mesh object.

Reflections & Lighting

When used for reflections, the reflection cubemap is usually centered on the mesh object. The viewing angle bounces off the mesh surface at an angle opposite to the surface normals, so it points to particular parts of the cube map.

Cubemaps can also be used for soft ambient-occlusion-like environment lighting, by using a diffusely convolved cubemap.

Creating Cubemaps

The bitmaps for each of the six sides need to be square, each needs to be powers-of-two in size (128, 256, 512, etc.), and all six images need to be the same resolution.

Usually for games you store the bitmaps all in one file using DDS or another compressed format, though some editors prefer them stored as six separate bitmaps (then compress them internally).

3ds Max

There are two main ways to create cubemaps in 3ds Max:

  1. Metal Bump9 ... saves directly into DDS cubemap format, but it's limited to 256x256 and you can't set the DDS compression format (it always uses ARGB, which is uncompressed).
  2. Reflect/Refract Map ... more steps, but you're not limited to a particular resolution or format.

3ds Max can display cubemaps in real-time if you use the DDS cubemap format and a DirectX Shader material.

Metal Bump9

  1. Setup a 3D scene you wish to render into a cubemap.
  2. Place some type of object at the viewpoint you wish to render the cubemap from, for example a camera or a point helper or a geometric object. The orientation of the object doesn't matter, and the object itself won't be rendered into the cubemap.
  3. Create a Standard material, open the DirectX Manager rollout, and change the None flyout to Metal Bump9.
  4. Press Pick object and create and select the object.
  5. Choose a name and a location to render to.

3ds Max will render it directly into DDS cubemap format, but it's limited to 256x256, and you can't set the DDS compression (it uses ARGB).

Reflect/Refract Map

  1. Setup a 3D scene you wish to render into a cubemap.
  2. Place some type of object at the viewpoint you wish to render the cubemap from, for example a camera or a point helper or a geometric object. The object itself won't be rendered into the cubemap.
  3. Setup your rendering options (texture filtering, anti-aliasing, etc.).
  4. Create a Standard material and load a Reflect/Refract map into any slot.
  5. In the map, set Source = From File.
  6. Set the Size spinner to the resolution you want to render. If you're going to use the cubemap for a game it should be a powers-of-two number (128, 256, 512, etc.).
  7. Use the Render Cubic Map Files / To File: button to set the prefix name and bitmap format to render to.
  8. Press Pick Object and Render Maps and select the viewpoint object.

The six rendered bitmaps will automatically be loaded into the Reflect/Refect map, or you can convert them into a DDS cubemap with Dxtex or another tool.


#!wiki caution
Warning: The render cannot be canceled once the object is picked, so save your Max file before rendering, in case Max freezes!


DxTex

Microsoft's DxTex offers a way to create a DDS cube map from six images. DxTex is automatically installed when you install the DirectX SDK. Once installed it will be found in the folder (SDK root)\Utilities\Bin\x86 or x64. Use the x86 version unless you're running a 64bit OS. There's also a DDS plugin for Photoshop in the SDK, it expects a 1x6 layout in Photoshop:

  • +X
  • -X
  • +Y
  • -Y
  • +Z
  • -Z

How to compile a DDS cubemap in DxTex:

  1. Open an existing texture by selecting the File -> Open... menu item.
  2. Select the Format -> Make Into Cube Map... menu item.
  3. The current texture will occupy one face of the cube map. From the dialog that pops up, select which face you want the texture to occupy, and click OK.
  4. For each of the other cube faces, select the View->Cube Map Face menu item and select a face from the list that appears.
  5. Select the File->Open Onto This Cubemap Face... menu item and select a texture to open from the dialog that pops up.

Maya

The easiest way to render a Maya scene into a cubemap is to use six cameras, then stitch the six images together into a cubemap.

Workflow tips can be found in the Polycount thread [[Maya 2009 how to render an environment map?]].

Photoshop

The NVIDIA DDS plugin for Photoshop is one way to create DDS cubemaps. It expects you to lay out the faces of the cubemap horizontally: +X -X +Y -Y +Z -Z. In 3ds Max terms this is: RT, LF, UP, DN, BK, FR.

Cubemap Seams

Cubemaps can show seams along the edges of the cube if they aren't mapped properly.

When a cubemap is rendered automatically in graphics hardware by a game engine, it will be seamless because it uses the Clamp uv address mode.

However if an artist manually creates a cube mesh and maps the six bitmaps onto it, usually this will cause seams from texture filtering. By default most materials use the Wrap uv address mode, which allows a texture to tile across a mesh. With a cubemap however this causes a sliver of the opposite side of each texture to be filtered into each edge. If your material has the option to use Clamp instead of Wrap, this will remove the seams.

There are two solutions for this:

  1. Set the texture coordinate address mode to Clamp instead of Wrap. Then the edge pixels will be sampled instead of the opposite side.
  2. Or, for each face of the cube: copy the edge pixels out a couple times, scale each face back down to a powers-of-two size, and scale the UVs down a little. The PowerVR SDK has a tutorial about this in their docs.
[[attachment:cubemap_powervr_seams.jpg|Media:CubeMap/attachments/cubemap_powervr_seams.jpg width=500}} [[attachment:cubemap_powervr_borders.jpg|{{attachment:cubemap_powervr_borders.jpg
Seams on the edges of a cubemap.<
>Image by PowerVR

Links


Personal tools
Namespaces

Variants
Actions
Navigation
Tools