| 202 | fn default() -> Self { |
| 203 | Self::new() |
| 204 | } |
| 205 | } |
| 206 | |
| 207 | #[derive(Clone, Debug, PartialEq)] |
| 208 | pub struct UiNode { |
| 209 | pub transform: UiTransform, |
| 210 | pub layout: UiLayoutData, |
| 211 | pub visible: bool, |
| 212 | pub modulate: perro_structs::NodeModulate, |
| 213 | pub input_enabled: bool, |
| 214 | pub mouse_filter: UiMouseFilter, |
| 215 | pub clip_children: bool, |
no outgoing calls