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 ShinyMick · Jun 08, 2015 at 05:47 AM · c#if statement

Both sides of my IF statement seem to be firing

I have an odd and confusing situation that has arisen. I believe it is linked to the addition of an animation.

in short I have a situation where you can either

generate a new object OR fire the game over function

Code is below

 if (gameObject == GameObject.FindGameObjectWithTag("BlackBall")) {
         
          if (Input.touchCount > 0 && Input.GetTouch(0).phase == TouchPhase.Began) {
             
             RaycastHit2D hit = Physics2D.Raycast (Camera.main.ScreenToWorldPoint((Input.GetTouch (0).position)), Vector2.zero);
             
             if     (hit.collider != null && gameObject == GameObject.FindGameObjectWithTag("BlackBall")) {
                 
                 animator.Play("anim2");
                 generateBall();
             } 
             
             } else { Invoke("gameover", timeref);
                 Destroy(this.gameObject, timeref);
             }
     }

The problem seems to be if I touch the ball right on the 0.75 second mark (this is 'timref') then I get the game over function firing (this presents the text "GAME OVER" on the screen) but I also get a new object being created.

I'm thinking it's something to do with the extra 0.1 seconds that the animation takes to happen causing some weird glitch, but I can't figure it out.

Thanks for any input.

Comment
Add comment · Show 1
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 tanoshimi · Jun 08, 2015 at 05:50 AM 0
Share

I suggest you start by cutting your code down. You currently have two tests for: if (gameObject == GameObject.FindGameObjectWithTag("BlackBall")) which are redundant because they'll both always be true. If you believe the problem to be related to the animation, have you tried removing the animator.Play?

2 Replies

· Add your reply
  • Sort: 
avatar image
0

Answer by maccabbe · Jun 08, 2015 at 06:43 AM

The problem seems to be due to your parenthesis and is easy to spot if you fix the white space. With proper spacing, the code looks like

 if (Input.touchCount > 0 && Input.GetTouch(0).phase == TouchPhase.Began) {             
     RaycastHit2D hit = Physics2D.Raycast (Camera.main.ScreenToWorldPoint((Input.GetTouch (0).position)), Vector2.zero);             
     if(hit.collider != null && gameObject == GameObject.FindGameObjectWithTag("BlackBall")) {                 
         animator.Play("anim2");
         generateBall();
     }              
 } 
 else { 
     Invoke("gameover", timeref);
     Destroy(this.gameObject, timeref);
 }   

While, based on your question you wanted something like

 if (Input.touchCount > 0 && Input.GetTouch(0).phase == TouchPhase.Began) {             
     RaycastHit2D hit = Physics2D.Raycast (Camera.main.ScreenToWorldPoint((Input.GetTouch (0).position)), Vector2.zero);             
     if(hit.collider != null && gameObject == GameObject.FindGameObjectWithTag("BlackBall")) {                 
         animator.Play("anim2");
         generateBall();
     }    
     else { 
         Invoke("gameover", timeref);
         Destroy(this.gameObject, timeref);
     }          
 } 
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 crohr · Jun 08, 2015 at 06:53 AM

The logic of your code reads that the only way the game over logic would get called is if the Raycast didn't actually hit anything. So that would be my first place to check.

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

3 People are following this question.

avatar image avatar image avatar image

Related Questions

Multiple Cars not working 1 Answer

Distribute terrain in zones 3 Answers

Does pattern matching verify object lifetime and null references 1 Answer

How can I make my jumping only work when I'm touching the ground? 2 Answers

if statement for infinity. How to check if a variable is Infinity? 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