• 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
Question by fanling3 · Jan 21, 2014 at 04:01 AM · onmouseup

Problem with OnMouseUp

I have, for example, 3 plane gameobjects in my scene. I want to have an operation like t$$anonymous$$s:

mouse click on one of the objects and drag to another object, and release mouse click

So I implement OnMouseDown and OnMouseUp function in a script and place them in each of the objects. However I got a problem. If I click on one of the objects and mouseover another object (say Object B), and then release the mouse click outside all objects, the OnMouseUp function still triggers and works on Object B. If I use OnMouseUpAsButton, it doesnt fire at all.

How to prevent OnMouseUp to trigger if I dont release the mouse click on objects? Any simple method other than checking the cursor position and calculate ranges. Thank you.

Comment

People who like this

0 Show 0
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

3 Replies

· Add your reply
  • Sort: 
avatar image

Answer by robertbu · Jan 21, 2014 at 04:23 AM

Short of Raycasting or some other cursor position check, I don't t$$anonymous$$nk you can get what you want. Your description is not what I believe is happening. You get the OnMouseUp() in the same game object that got the OnMouseDown(). Even if the mouse is over another game object, the OnMouseUp() still goes to the original game object. You can tell if the 'up' is over the original game object using:

 var over = false;
  
 function OnMouseEnter() {
     over = true;
 }
 
 function OnMouseExit() {
     over = false;
 }
 
 function OnMouseUp()
 {
     if (over) {
         Debug.Log("Button release over the same object as down");
     }
     else {
         Debug.Log("Button released not over the same object as down");
     }    
 }

But t$$anonymous$$s will not tell you if the Up is over another game object or none at all.

Comment
fanling3
electroid
pabmen3c08
LucasBrum

People who like this

4 Show 3 · 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 fanling3 · Jan 21, 2014 at 04:40 AM 0
Share

Since all gameobjects share the same script so I was confused. Yes you are right if I click on Object A and release the mouse click somewhere else, OnMouseUp from script of Object A triggers

avatar image fanling3 · Jan 21, 2014 at 04:41 AM 0
Share

So is it true OnMouseUp never triggers if OnMouseDown of the same gameobject does not trigger before?

avatar image robertbu · Jan 21, 2014 at 04:51 AM 0
Share

As far as I know that is true. The object that gets the OnMouseDown() is the same object that gets the OnMouseUp() even of the mouse is over a different game object or none at all.

avatar image

Answer by SUfIaNAHMAD_ · 3 days ago

Helpful ThanK You

Comment

People who like this

0 Show 0 · 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

Answer by logicandchaos · 3 days ago

There are interfaces to do all this: https://docs.unity3d.com/2019.1/Documentation/ScriptReference/EventSystems.IPointerUpHandler.html

Comment

People who like this

0 Show 0 · 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.

Welcome to Unity Answers

If you’re new to Unity Answers, please check our User Guide to help you navigate through our website and refer to our FAQ for more information.

Before posting, make sure to check out our Knowledge Base for commonly asked Unity questions.

Check our Moderator Guidelines if you’re a new moderator and want to work together in an effort to improve Unity Answers and support our users.

Follow this Question

Answers Answers and Comments

20 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 avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image

Related Questions

Animate Button/Object When Clicked In Game 2 Answers

OnMouseUp and GUITexture 1 Answer

OnMouseUp not working in build? 0 Answers

OnMouseDown 2 Answers

On Mouse Up On Multiple GUI Texts 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