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 Doghelmer · Jan 21, 2015 at 11:51 AM · ui

Setting UI elements active while the mouse is already over them -- how to detect?

I have UI buttons that I set from active to inactive and vice versa. If the mouse cursor is over a button when the button is set active, then Unity does not immediately detect that the mouse is over the button. What is the best way to get around this?

I should also note that keeping the UI invisible instead of inactive isn't going to help me in this case. The position of the buttons are subject to change, and repositioning a button to underneath the mouse also results in the mouse not being detected.

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

1 Reply

· Add your reply
  • Sort: 
avatar image
0
Best Answer

Answer by Mmmpies · Jan 21, 2015 at 02:14 PM

Don't know if it's what you want but this will check the mouse point and return all the UI elements a Raycast passes through. The Text of the button will be the top one:

 using UnityEngine;
 using UnityEngine.EventSystems;
 using System.Collections;
 using System.Collections.Generic;
 
 public class RaycastUI : MonoBehaviour {
 
     public void RayCastingToUI ()
     {
         PointerEventData PED = new PointerEventData(EventSystem.current);
         PED.position =  Input.mousePosition;
 
         List<RaycastResult> HITS = new List<RaycastResult>();
         EventSystem.current.RaycastAll( PED, HITS );
 
         foreach(RaycastResult hit in HITS)
         {
             GameObject go = hit.gameObject;
             Debug.Log (go.name + " how many hit = " + HITS.Count);
         }
     }
 }
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 Doghelmer · Jan 21, 2015 at 10:30 PM 0
Share

This works quite well. I should add that for Buttons and Selectables, I can use the Select() function to select the Button/Selectable that the raycast picks up, and use EventSystem.current.SetSelectedGameObject(null) to deselect when the Raycast doesn't catch anything.

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

Unity 2D 4.6b UI: Why are instantiated prefab sprites rendering over UI elements? 1 Answer

Set UI Image to render below Gameobject [Resolved] 1 Answer

Canvas Scaler resolution to use for Nexus 4 device 0 Answers

New UI button OnClick() how to "send message" with parameters? 3 Answers

Unity 4.6.1 text error/bug (unreadable text) 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