How do I Make a Skybox?
Manual     Reference     Scripting   
Unity Manual > FAQ > Graphics Questions > How do I Make a Skybox?

How do I Make a Skybox?

A Skybox is a 6-sided cube that is drawn behind all graphics in the game. Here are the steps to create one:

  1. Make 6 textures that correspond to each of the 6 sides of the skybox and put them into your project's Assets folder.
  2. For each texture you need to change the wrap mode from Repeat to Clamp. If you don't do this colors on the edges will not match up:
  3. Create a new Material by choosing Assets->Create->Material from the menu bar.
  4. Select the shader drop-down in the top of the Inspector, choose RenderFX->Skybox.
  5. Assign the 6 textures to each texture slot in the material. You can do this by dragging each texture from the Project View onto the corresponding slots.

To Assign the skybox to the scene you're working on:

  1. Choose Edit->Render Settings from the menu bar.
  2. Drag the new Skybox Material to the Skybox Material slot in the Inspector.

Note that Standard Assets package contains several ready-to-use skyboxes - this is the quickest way to get started!

Page last updated: 2007-11-16