8

I'm fairly new to Unity and I'm following a tutorial on adding skybox to my scene. In the tutorial they are using Unity4 and they do Assets>Import Package>Skybox but I do not see this option in Unity 5. Anyone know where it's located?

aresz
  • 2,589
  • 6
  • 34
  • 51

2 Answers2

6

Window->Lighting menu to apply a skybox material to your scene.

To override for a specific Camera add a Component->Rendering->Skybox to the Camera GameObject.

See: http://docs.unity3d.com/Manual/class-Skybox.html

For skybox materials you can go to the Asset Store and download the free Standard Assets for 4.6 from Unity. There should be some other free skyboxes on the Asset store are well, or you can download from the web then create a new material in Unity 5 and select the Skybox shader (supports 6 sides, cube map, procedural) and set the textures.

Huacanacha
  • 1,151
  • 7
  • 9
  • 2
    Very helpful information about Unity's new Skybox system, however this doesn't answer the OP's question, which I think is asking how to import the default skyboxes in Unity 5. – Samie Bencherif Apr 04 '15 at 22:25
1

If you had downloaded any version of Unity prior to Unity 5-

Go to C:\Program Files (x86)\Unity\Editor\Standard Packages and double-click on the Skyboxes file.

But you need fix the alpha in the textures, go to the project panel "/Standard Assets/Skyboxes/" in the hierarchy and then select one skybox. Click the "fix now" buttons in the inspector. Do this for all skyboxes.

frogatto
  • 28,539
  • 11
  • 83
  • 129
adoomedknight
  • 39
  • 1
  • 7