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
0
Question by John_Burman_5966 · Mar 23, 2015 at 08:02 PM · cameraerror messageswitch

Switching cameras when at a node.

I wrote this to be attached to the "terminal" that switches any two cameras assigned, (Camera 1 being the player camera and Camera2 being an overhead). it worked well until Unity 5 told me that ".active" is retired, and to use ".SetActive" instead.

 var Camera1 : Camera; 
 var Camera2 : Camera;
 var player: Transform;
 var range: float=4f;
 var myposition: Transform;
 
 
 
 function Start () { 
 
 player = GameObject.FindWithTag("Player").transform; //target the player
 Camera1.SetActive = (true); 
 Camera2.SetActive = (false); 
 }
 
 function Update () { 
 
     var distance = Vector3.Distance(myposition.position, player.position);
     
     if (distance<=range){
     
         if (Input.GetKeyDown(KeyCode.C)) { 
         // toggle cameras     
             Camera1.SetActive = !Camera1.SetActive; 
             Camera2.SetActive = !Camera2.SetActive; 
         } 
     }
 }
 

now it doesnt work at all, i was going to add a button option like a prompt, but i need to figure out this first. any help is appreciated.

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

1 Reply

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

Answer by supernat · Mar 23, 2015 at 08:08 PM

SetActive is not a flag. It is a method call. You pass true or false to it. You can use the activeSelf flag instead.

 Camera1.gameObject.SetActive(!Camera1.activeSelf);
 Camera2.gameObject.SetActive(!Camera2.activeSelf);

Comment
Add comment · Show 2 · 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 John_Burman_5966 · Mar 24, 2015 at 02:20 AM 0
Share

super thanks, i got it working fine now; is there any benefit to using this vs .enabled?

avatar image supernat · Mar 24, 2015 at 03:39 AM 0
Share

Setting the game object inactive will affect all child components, so if you have a script that runs on update for instance, it will stop running. Setting the camera's enabled state will only disable the camera. All other components on the game object will continue running. So it really depends on what you need. In many cases, I will use the enabled flag of a Renderer to stop rendering an object, but keep the attached scripts running.

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

4 People are following this question.

avatar image avatar image avatar image avatar image

Related Questions

character switching on collision 1 Answer

3rd Person to First Person Camera 0 Answers

How to switch between four characters when a button is pressed? 1 Answer

i need help with this camera switcher 3 Answers

Camera switch 0 Answers


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