Wayback Machinekoobas.hobune.stream
May JUN Jul
Previous capture 13 Next capture
2021 2022 2023
1 capture
13 Jun 22 - 13 Jun 22
sparklines
Close Help
  • Products
  • Solutions
  • Made with Unity
  • Learning
  • Support & Services
  • Community
  • Asset Store
  • Get Unity

UNITY ACCOUNT

You need a Unity Account to shop in the Online and Asset Stores, participate in the Unity Community and manage your license portfolio. Login Create account
  • Blog
  • Forums
  • Answers
  • Evangelists
  • User Groups
  • Beta Program
  • Advisory Panel

Navigation

  • Home
  • Products
  • Solutions
  • Made with Unity
  • Learning
  • Support & Services
  • Community
    • Blog
    • Forums
    • Answers
    • Evangelists
    • User Groups
    • Beta Program
    • Advisory Panel

Unity account

You need a Unity Account to shop in the Online and Asset Stores, participate in the Unity Community and manage your license portfolio. Login Create account

Language

  • Chinese
  • Spanish
  • Japanese
  • Korean
  • Portuguese
  • Ask a question
  • Spaces
    • Default
    • Help Room
    • META
    • Moderators
    • Topics
    • Questions
    • Users
    • Badges
  • Home /
avatar image
2
Question by Alanj2007 · Oct 09, 2013 at 08:35 AM · triggerplayerskybox

Change skybox at runtime?

For this time, I will use OnTriggerEnter

I wanted to make players when enter trigger, it will change the skybox. Is it possible?

Comment
Add comment
10 |3000 characters needed characters left characters exceeded
▼
  • Viewable by all users
  • Viewable by moderators
  • Viewable by moderators and the original poster
  • Advanced visibility
Viewable by all users

2 Replies

· Add your reply
  • Sort: 
avatar image
18
Best Answer

Answer by vexe · Oct 09, 2013 at 09:15 AM

 var otherSkybox : Material;  // assign via inspector

 function OnTriggerEnter(other : Collider)
 {
     RenderSettings.skybox = otherSkybox;
 }

I'm not really sure you'd want that logic though, this way ANYTHING that enters the trigger, will change the skybox. You might to do that only for a certain object, like your player for example:

 function OnTriggerEnter(other : Collider)
 {
     if (other.tag == "Player")
          RenderSettings.skybox = otherSkybox;
 }

But again, not happy about it, what if your player enters the trigger again? You don't have to change the skybox again cause you already did, so add another check:

 function OnTriggerEnter(other : Collider)
 {
     if (other.tag == "Player" && RenderSettings.skybox != otherSkybox)
          RenderSettings.skybox = otherSkybox;
 }
Comment
Add comment · Share
10 |3000 characters needed characters left characters exceeded
▼
  • Viewable by all users
  • Viewable by moderators
  • Viewable by moderators and the original poster
  • Advanced visibility
Viewable by all users
avatar image
0

Answer by maaz0011 · Feb 17, 2017 at 09:14 AM

this code you can use for adding multiple materials for skybox, and the better way to create your own skybox is download 360 image which must be in bigger in width and also in height after that you can change their Texture Type from texture into Cubemap and same with their mapping into Latitude-Longitude Layout(cylindrical) and then click on Apply to make these changes after doing these steps you are going to create to a material and change their shader type into Skybox/Cubemap and add that image that you recently change their setting , and then use these in array. i hope it will helpful for you .

using UnityEngine; using System.Collections; using UnityEngine.Rendering;

public class skybox : MonoBehaviour {

 public Material[] secondSkybox;
 public static int i = 0;
 public void skyboxOn()
 {

     if (i == 0) {

     RenderSettings.skybox = secondSkybox[0];
         i++;
     }
     else if(i==1)
     {
         RenderSettings.skybox = secondSkybox[1];
         i++;
     }else if(i==2)
     {
         RenderSettings.skybox = secondSkybox[2];
         i=0;
     }



 }

}

Comment
Add comment · Show 1 · Share
10 |3000 characters needed characters left characters exceeded
▼
  • Viewable by all users
  • Viewable by moderators
  • Viewable by moderators and the original poster
  • Advanced visibility
Viewable by all users
avatar image maaz0011 · Feb 15, 2017 at 03:02 PM 0
Share

this code you can use for adding multiple materials for skybox, and the better way to create your own skybox is download 360 image which must be in bigger in width and also in height after that you can change their Texture Type from texture into Cubemap and same with their mapping into Latitude-Longitude Layout(cylindrical) and then click on Apply to make these changes after doing these steps you are going to create to a material and change their shader type into Skybox/Cubemap and add that image that you recently change their setting , and then use these in array. i hope it will helpful for you .

Your answer

Hint: You can notify a user about this post by typing @username

Up to 2 attachments (including images) can be used with a maximum of 524.3 kB each and 1.0 MB total.

Follow this Question

Answers Answers and Comments

19 People are following this question.

avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image

Related Questions

Need help with script and trigger, appearance on screen buttons 1 Answer

Need help with script and trigger, switching cameras 2 Answers

Action activates trigger. 1 Answer

How to make trigger removes script. 1 Answer

How to make a box (or any object) appear on collide? 1 Answer


Enterprise
Social Q&A

Social
Subscribe on YouTube social-youtube Follow on LinkedIn social-linkedin Follow on Twitter social-twitter Follow on Facebook social-facebook Follow on Instagram social-instagram

Footer

  • Purchase
    • Products
    • Subscription
    • Asset Store
    • Unity Gear
    • Resellers
  • Education
    • Students
    • Educators
    • Certification
    • Learn
    • Center of Excellence
  • Download
    • Unity
    • Beta Program
  • Unity Labs
    • Labs
    • Publications
  • Resources
    • Learn platform
    • Community
    • Documentation
    • Unity QA
    • FAQ
    • Services Status
    • Connect
  • About Unity
    • About Us
    • Blog
    • Events
    • Careers
    • Contact
    • Press
    • Partners
    • Affiliates
    • Security
Copyright © 2020 Unity Technologies
  • Legal
  • Privacy Policy
  • Cookies
  • Do Not Sell My Personal Information
  • Cookies Settings
"Unity", Unity logos, and other Unity trademarks are trademarks or registered trademarks of Unity Technologies or its affiliates in the U.S. and elsewhere (more info here). Other names or brands are trademarks of their respective owners.
  • Anonymous
  • Sign in
  • Create
  • Ask a question
  • Spaces
  • Default
  • Help Room
  • META
  • Moderators
  • Explore
  • Topics
  • Questions
  • Users
  • Badges