bevy/examples/testbed
Carter Anderson f754cecb49
UiImage -> ImageNode, UiImageSize -> ImageNodeSize (#16271)
# Objective

Align `UiImage` with the new `XNode` naming convention.

## Solution

- Rename `UiImage` to `ImageNode`
- Rename `UiImageSize` to `ImageNodeSize`

---

## Migration Guide

Before:
```rust
commands.spawn(UiImage::new(image));
````

After:
```rust
commands.spawn(ImageNode::new(image));
```
2024-11-07 21:52:58 +00:00
..
2d.rs Introduce testbed examples starting with 2d (#15954) 2024-10-16 17:37:47 +00:00
3d.rs Check examples screenshots on windows (#16010) 2024-10-20 14:58:35 +00:00
ui.rs UiImage -> ImageNode, UiImageSize -> ImageNodeSize (#16271) 2024-11-07 21:52:58 +00:00
ui_layout_rounding.rs Layout rounding debug example (#16096) 2024-10-27 20:08:51 +00:00