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 UsefulDoor1 · Mar 01, 2016 at 08:38 AM · instantiatedestroymouseclick

Mouse click sometimes destroys an instantiated object, but it sometimes doesn't. Why?

Hi everyone!

I have a simple 2D game that I've been working on for a day where objects are instantiated and fly across the screen. The goal of the game is to click on that object, which will destroy that object, and you get a certain amount of points. My problem is that I can sometimes click on an instantiated object once and it destroys, which is what I want, but some objects I have to click multiple times and then it finally destroys. Sometimes I click and click and click and it just won't destroy. I'm using OnMouseDown(). Here is my MouseClick code:

 using UnityEngine;
 using System.Collections;
 
 public class MouseClick : MonoBehaviour
 {
     public int scoreValue;
     private ScoreManager scoreManager;
 
     // Use this for initialization
     void Start ()
     {
         scoreManager = GameObject.FindGameObjectWithTag("GameController").GetComponent<ScoreManager>();
     }
     
     // Update is called once per frame
     void Update ()
     {
        
     }
 
     void OnMouseDown()
     {
         if (Input.GetMouseButtonDown(0))
         {
             if (gameObject.tag == "Cat") //+10 points
             {
                 scoreManager.totalScore += scoreValue;
                 Destroy(gameObject);
             }
 
             if (gameObject.tag == "Pizza") //+20 points
             {
                 scoreManager.totalScore += scoreValue;
                 Destroy(gameObject);
             }
 
             if (gameObject.tag == "Coffee") //+30 points
             {
                 scoreManager.totalScore += scoreValue;
             }
 
             if (gameObject.tag == "Totoro") //+40 points
             {
                 scoreManager.totalScore += scoreValue;
             }
             
         }
     }
 }


I'm really curious as of why some objects get destroyed in one click, and some objects take multiple clicks to be destroyed. If you would like, I can post pictures/videos.

Thank you for your help. Have a great day!

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 Ali-hatem · Mar 01, 2016 at 10:38 AM 0
Share

delete if (Input.Get$$anonymous$$ouseButtonDown(0)) or delete void On$$anonymous$$ouseDown() & put the code in Update .

1 Reply

· Add your reply
  • Sort: 
avatar image
0

Answer by dhore · Mar 04, 2016 at 09:19 AM

The OnMouseDown() function will be triggered every time you left click the mouse, so you don't need to make a second check for the button click - this may also be your problem (you might have released the button before the second check detects it). So just delete this line if (Input.GetMouseButtonDown(0)) (line 23) and it's corresponding braces "{}".

Also, you forgot to call Destroy(gameObject); when the gameobject.tag is "Coffee" or "Totoro". Make sure you add that, otherwise Coffees and Totoros won't be deleted.

Hope this helps :)

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 dhore · Mar 25, 2016 at 01:36 AM 0
Share

@UsefulDoor1 Did my answer resolve your issue? If so you should mark it as the Correct Answer to help filter questions which still need answering from those which don't.

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

Cannot destroy the SphereCollider on Instantiated Objects 1 Answer

I want to Instantiate a force field - let it work for x(sec) show countdown and then make wait for a count up - but then my button doesn't seem to work anymore? 0 Answers

Performance of instantiate and destroy for bullets 2 Answers

Deleting an instantiated object on a different if statement,Destroy an instantiated object on a different if statement 1 Answer

Trying to replace 2 objects. Destroying assets is not permitted to avoid data loss. 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