Difference between revisions of "Cube map"

From polycount
Jump to: navigation, search
(categories)
(Zeller Samuel link)
Line 97: Line 97:
 
=== Links ===
 
=== Links ===
  
 +
* [http://zellersamuel.wordpress.com/2010/03/06/cubemaps/ Cubemaps how-to and why] by Zeller Samuel<<BR>>A great introduction to cubemaps.
 
* [http://www.cgtextures.com/content.php?action=tutorial&name=cubemaps Cubemaps Tutorial] by CGTextures.com<<BR>>Tutorial using Nvidia's Photoshop plugin, AMD's [http://developer.amd.com/gpu/cubemapgen/pages/default.aspx CubeMapGen], and Photoshop to convert cubemaps to various layouts.
 
* [http://www.cgtextures.com/content.php?action=tutorial&name=cubemaps Cubemaps Tutorial] by CGTextures.com<<BR>>Tutorial using Nvidia's Photoshop plugin, AMD's [http://developer.amd.com/gpu/cubemapgen/pages/default.aspx CubeMapGen], and Photoshop to convert cubemaps to various layouts.
 
* [[Diffusely Convolved Cube Map]]<<BR>>Wiki page describing how to downsample cubemaps to use for lighting.
 
* [[Diffusely Convolved Cube Map]]<<BR>>Wiki page describing how to downsample cubemaps to use for lighting.

Revision as of 09:46, 26 July 2010

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.

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

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.

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.

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.
[[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

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.

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 size.

Either store the bitmaps as six separate bitmaps, or more commonly store all six in a single DDS cubemap file.

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.

DxTex

Microsoft's DxTex is another 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.

3ds Max

There are two main ways to render cubemaps in 3ds Max.

  1. Metal Bump9 ... saves directly into DDS cubemap format, but limited to 256x256 and you can't set the DDS compression (uses ARGB).
  2. Reflect/Refract Map ... more steps, but not limited to a 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.

Metal Bump9

  1. Setup a 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 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. Configure your rendering options.
  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.
  9. The six 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!


Links


Personal tools
Namespaces

Variants
Actions
Navigation
Tools