unity3D入门系列十三,如何制作天空盒(SkyBox)(英文)

时间:2022-10-26 21:04:29

unity3D入门系列十三,如何制作天空盒(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'sAssets 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:
    unity3D入门系列十三,如何制作天空盒(SkyBox)(英文)
  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, chooseRenderFX->Skybox.
  5. Assign the 6 textures to each texture slot in the material. You can do this by dragging each texture from theProject View onto the corresponding slots.
    unity3D入门系列十三,如何制作天空盒(SkyBox)(英文)

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.
    unity3D入门系列十三,如何制作天空盒(SkyBox)(英文)

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

www.J2meGame.com精心收集。