Wayback Machinekoobas.hobune.stream
May JUN Jul
Previous capture 12 Next capture
2021 2022 2023
1 capture
12 Jun 22 - 12 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 /
  • Help Room /
avatar image
0
Question by collinrijnvis · Jan 15, 2016 at 04:07 PM · if-statementsbooleans

Problem with IF-statement

I'm just starting to learn coding in unity. Playing around with the transform.position inside IF-statement. I want to make a cube start to move right or left depending on keyboard arrow input. And also make it stop moving when you press the arrow button again. Problem explained below the code:

  void Update ()
 {
     // PRESS RIGHT ARROW --> MOVE RIGHT
     if(Input.GetKeyDown(KeyCode.RightArrow) && movingleft==false && movingright==false)
     {
         movingright = true;
         movingleft = false;
     }

     // PRESS RIGHT ARROW WHEN MOVING RIGHT --> STOP MOVING
     if(Input.GetKeyDown(KeyCode.RightArrow) && movingright==true)
     {
         movingright = false;
         movingleft = false;
     }

     if(movingright==true)
     {
         transform.Translate(new Vector3(1,0,0) * Time.deltaTime);
     }

The bool moveright does never get to true, I think because the instant when you press the right arrow, the second if-statement gets true as well, since you're still holding the right arrow key for a bit. Without the second IF-statement, the code works and moveright becomes true.

Anybody any ideas? I will keep on working on this and will post it when I find it myself. :)

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

Answer by DimensionU · Jan 15, 2016 at 04:43 PM

I made a mistake initially in that the transform stuff should be outside of the key checks.

I see a couple of issues. One is as you described, the second test is overriding the first. But even if you eliminate the second test (within this frame), the key could still be down in a subsequent frame. For that reason, I'd test against GetKeyUp instead of GetKeyDown.

Here's how I'd approach it. BTW, this code isn't tested, but it should be sound.

     void Update ()
     {
         if (Input.GetKeyUp(KeyCode.RightArrow))
         {
             movingright = !movingright;
             movingleft = false;
         }
 
         if (Input.GetKeyUp(KeyCode.LeftArrow))
         {
             movingleft = !movingleft;
             movingright = false;
         }
     if (movingright) transform.Translate(new Vector3(1,0,0) * Time.deltaTime);
     if (movingleft) transform.Translate(new Vector3(-1, 0, 0) * Time.deltaTime);
     }
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 collinrijnvis · Jan 15, 2016 at 09:38 PM 0
Share

Thank you!

avatar image
0

Answer by collinrijnvis · Jan 15, 2016 at 09:37 PM

Thank you!

movingright = !movingright

did the trick:

      if(Input.GetKeyDown(KeyCode.RightArrow))
     {
         movingright = !movingright;
         movingleft = false;
     }

     if(Input.GetKeyDown(KeyCode.LeftArrow))
     {
         movingleft = !movingleft;
         movingright = false;
     }

     if(movingright==true)
     {
         transform.Translate(new Vector3(1,0,0) * Time.deltaTime);
     }
     else if(movingleft==true)
     {
         transform.Translate(new Vector3(-1,0,0) * Time.deltaTime);
     };

Now the values of movingleft and movingright are alternating with every keypress

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

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

5 People are following this question.

avatar image avatar image avatar image avatar image avatar image

Related Questions

How to return an index value from an array 1 Answer

complete code in an if-statement even if statement turn false 2 Answers

Issue with if-statements requiring two conditions. 1 Answer

mathf.abs(0) is higher than 90, why? 1 Answer

Can't Locate gameobject in array 3 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