pub struct CanvasGroup {
pub m_Alpha: f32,
pub m_BlocksRaycasts: bool,
pub m_GameObject: PPtr,
pub m_IgnoreParentGroups: bool,
pub m_Interactable: bool,
pub m_Enabled: Option<u8>,
}Expand description
CanvasGroup is a class of the Unity engine since version 4.6.0. Exert from Unity’s scripting documentation: A Canvas placable element that can be used to modify children Alpha, Raycasting, Enabled state. A canvas group can be used to modify the state of children elements.An example of this would be a window which fades in over time, by modifying the alpha value of the group the children elements will be affected. The result alpha will be the multiplied result of any nested groups, multiplied with the canvas elements alpha.You can configure Canvas Groups to not block raycasts. When you configure a Canvas Group to not block raycasts, graphic raycasting ignores anything in the group.Let’s say you have a Canvas GameObject with a CanvasGroup component on it, and you set the CanvasGroup component’s alpha to 0. In that case, the Canvas does not render any of its child GameObjects.
Now suppose that the Canvas also has a child CanvasGroup GameObject that you do want to render. If you enable IgnoreParentGroups for the CanvasGroup GameObject, the parent Canvas does not render any of its child GameObjects, including the CanvasGroup you want to render.
To get the child CanvasGroup GameObject, do one of two things:
In the parent Canvas, set the CanvasGroup component’s alpha to a small, non-zero value.
Add a Canvas component to the child CanvasGroup GameObject that you want to render.
Fields§
§m_Alpha: f32Set the alpha of the group.
m_BlocksRaycasts: boolDoes this group block raycasting (allow collision).
m_GameObject: PPtrThe game object this component is attached to. A component is always attached to a game object.
PPtr<GameObject>: (4.6.0 - 2022.3.2f1)
m_IgnoreParentGroups: boolShould the group ignore parent groups?
m_Interactable: boolIs the group interactable (are the elements beneath the group enabled).
m_Enabled: Option<u8>Enabled Behaviours are Updated, disabled Behaviours are not. u8: (4.6.1 - 2022.3.2f1)