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 /
avatar image
1
Question by catiejojo · Nov 10, 2016 at 11:48 AM · uiunity5touchtouchphase

IsPointerOverGameObject doesn't work on TouchPhase.Ended?

I have an AR game where clicking on the screen spawns a GameObject at the touch position, but I don't want to spawn an object when the user clicks one of the UI buttons I have set up. I ended up using EventSystem.IsPointerOverGameObject. This didn't seem to work though, and even after passing the touch's fingerID, the object still spawned on mobile. My code looked like this:

 if (Input.touchCount)
 {
     Touch touch = Input.GetTouch (0);
     if (touch.phase == TouchPhase.Ended && !EventSystem.current.IsPointerOverGameObject (touch.fingerId)) {
         SpawnObject (touch.position);
     }
 }

None of the solutions I found online were able to fix this. However, when I tried debugging by printing IsPointerOverGameObject to the screen and clicking a UI element, I noticed it would be a string of trues followed by a false. This led me to realize the problem wasn't IsPointerOverGameObject, but rather TouchPhase.Ended. With this small change, my code works perfectly:

 if (Input.touchCount)
 {
     Touch touch = Input.GetTouch (0);
     if (touch.phase == TouchPhase.Began && !EventSystem.current.IsPointerOverGameObject (touch.fingerId)) {
         SpawnObject (touch.position);
     }
 }

So my question is this: why doesn't TouchPhase.Ended work the same as TouchPhase.Began? Is this expected behavior and I'm just missing something, or a bug?

Thank you!

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 Kostishko · Nov 02, 2021 at 11:48 AM 0
Share

Did you get solutiob for this? Ended still doesn't work now.

1 Reply

· Add your reply
  • Sort: 
avatar image
0

Answer by aditya · Nov 10, 2016 at 01:29 PM

if you are using UI buttons then for sure you are also using UI panels also ... so i would advice you to stop using Touch api and simply attach an EventTrigger on UI panel that is beneath your UI buttons and then Add a new Event Type from its Supported Event Types (preferably PointerClick) and then the rest is same as calling a function on button click ... the function you will call from this new PointerClick can now fetch the Touch Position

Accept if it worked for you ^^

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

Detect touches on ui element 1 Answer

DualTouchControl not working with 3d character 0 Answers

TouchPhase.Began triggering twice 1 Answer

Short question: If my app runs without any problems on Android, should it run without any problems on iOS? 1 Answer

Check UI panel touched after OnEnable()? 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