About Node Property Propagation
Learn which properties of a node affect its child nodes.
Overview
Changing certain properties on a node can propogate to its decendents:
Property | Description |
|---|---|
The node’s coordinate system is scaled by these two factors. This property affects coordinate conversion, the node’s frame, drawing, and hit testing. Its descendants are similarly scaled. | |
The node’s draw order. Nodes with a higher | |
The node’s coordinate system is rotated. This property affects coordinate conversion, the node’s frame, drawing, and hit testing. Its descendants are similarly scaled. | |
If the node is rendered using a blend mode, the alpha value is multiplied into any alpha value before the blend operation takes place. The descendants are similarly affected. | |
If a node is hidden, the node and its descendants are not rendered. | |
The speed at which a node processes actions is multiplied by this value. The descendants are similarly affected. |
The net effect is that a child node is rendered based not only on its own properties but also on the properties of its ancestors.
__