2D

Node2D

2D root concrete node struct.

Node2D is the 2D base. 2D descendants embed Node2D in a base field and forward behavior through Deref.

Source: perro_core/src/nodes/node_2d/node_2d.rs

pub struct Node2D {    pub transform: Transform2D,    pub z_index: i32,    pub visible: bool,}