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 wgibbsw · Mar 03, 2013 at 03:49 PM · javaifelse

Problem with IF with 2 outputs.

Sorry if the title didn't make much sense, but I'm finding it hard to even word what I want to be able to find a solution. It's obviously something incredibly easy and basic but I can't for the life of me find an answer. I've got a simple java script that checks if the mouse button is held down, if it is then the camera freezes. I'm now trying to consolidate my separate script that also unhides the hidden mouse cursor, but I can't get this to work!

     function Update () {
         if (Input.GetMouseButton(1))
         GetComponent(MouseLook).enabled = false;
         Screen.showCursor = true;
     
         else
             GetComponent(MouseLook).enabled = true;
             Screen.showCursor = false;
     
     }

After reading a few IF and ELSE tutorials a lot of them show the IF and the ELSE with it's own { }, but if I remove the showCursor lines altogether the code works fine as shown. Can someone set me straight?

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
0
Best Answer

Answer by smc · Mar 03, 2013 at 04:05 PM

Correct -- the if statement requires braces if there is more than one statement:

 if (Input.GetMouseButton(1))
 {
     GetComponent(MouseLook).enabled = false;
     Screen.showCursor = true;
 }
 else
 {
     GetComponent(MouseLook).enabled = true;
     Screen.showCursor = false;
 }
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 Owen-Reynolds · Mar 03, 2013 at 04:43 PM 0
Share

"if there is more than one statement"

Flipping it around, nearly all languages have a special rule that if you leave out the curly-braces, the next statement counts as the thing in curly-braces. So if(a) b; c; counts as if(a) {b;} c; Works for ifs and loops.

No one makes a big deal about it, since most people learn it very early and use it all the time.

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

11 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

Related Questions

problem with instance 1 Answer

Else and If 2 Answers

How stop a piece of code from running if the conditions are no more met. 1 Answer

Why am i getting this error?! 2 Answers

How to finish my else if statement? 2 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