Search Unity

Creating A Tooltip Question

Discussion in 'UGUI & TextMesh Pro' started by Karmalon, Aug 24, 2014.

  1. Karmalon

    Karmalon

    Joined:
    Jan 15, 2014
    Posts:
    9
    [SOLVED]
    Hello,
    I'm making a strategy game in which hovering over a variable in-game shows a tooltip prefab, consisting of some text and an image for the background. However, when you hover over said variable, the tool-tip appears on the variable - meaning that you're not hovering it anymore - disappears (but you're still hovering over the variable), and flickers in this limbo.

    So my question is, can you remove UI colliders?

    Cheers
     
    Last edited: Aug 24, 2014
  2. Legi

    Legi

    Joined:
    Jul 25, 2013
    Posts:
    20
    Kind of :)
    Add a Canvas Group Component to your prefab and deactivate "Blocks Raycasts".

    This affects the GameObject itself and all its child objects.

    Hope that does it!
     
  3. Karmalon

    Karmalon

    Joined:
    Jan 15, 2014
    Posts:
    9
    It works! Cheers.