About 5,290 results
Open links in new tab
  1. unity game engine - How to fade out/in a canvas/canvas group and it's ...

    May 15, 2022 · In fact, The Alpha system is different for various objects, and what you need is a single script that changes each object according to its specific component. Keep in mind that the Canvas …

  2. Ignore all parent canvas group properties except alpha in Unity?

    Can I have an element in the child canvas group ignore Interactable and Block Raycasts but not Alpha in the parent canvas group? In my current setup, the child game object doesn't obey the parents

  3. 'MissingComponentException' with 'CanvasGroup.interactable' in Unity

    Jun 20, 2021 · Working with Slider and Button components in Unity 2021.1.1f1. Beside some other operations, I want to toggle the interactable property of it. Calling it as an CanvasGroup component, …

  4. Adjust alpha in Canvas Group doesn't work - Stack Overflow

    Jun 25, 2023 · I can manipulate the parent's alpha from the inspector manually (from Canvas Group component) and it affects the children as well, but from the code it doesn't work.

  5. unity game engine - OnPointerEnter being blocked by canvas group ...

    Apr 3, 2023 · I figured i could use a canvas group to set the alpha to 0 and then disable the relevant lines of code in the inventory scripts. Im not at that point yet, because the canvas group has stopped …

  6. Sorting layers having no effect at all - Stack Overflow

    Sep 14, 2020 · I currently have a scene set up in Unity2D where sorting layers of any kind have no effect at all. I start with 3 panels on the screen (attached to a canvas). The panels have some images as …

  7. unity game engine - Pop-Up Canvas/Panel Not Blocking Raycast to …

    I'm trying to create a pop-up window that will overlay on top of the current canvas and block all interaction with it. Everything I read says to use Canvas Group(s) and/or Graphic Raycaster, but I ...

  8. unity game engine - How do you sort UI elements in Canvas ... - Stack ...

    Apr 20, 2018 · How do you sort UI elements in Canvas? Asked 7 years, 8 months ago Modified 7 years, 8 months ago Viewed 13k times

  9. Unity: UI Image alpha overlap - Stack Overflow

    Dec 2, 2019 · Assign this material to any other image on the canvas that comes after mask object. References: Stencil tool in Unity Source of Default UI image shader (read the desc) Soft mask in UI. …

  10. c# - Get canvas group from parent gameObject - Stack Overflow

    Mar 10, 2021 · How do I reference canvas groups that are in the Parent gameObject to my array? public CanvasGroup[] allCanvas; public GameObject Parent; public CanvasGroup[] allCanvas; // Start is …