From 9779ad446ae84c5c3ae701b565ecdde6824b5451 Mon Sep 17 00:00:00 2001 From: jbuehler23 Date: Fri, 18 Jul 2025 15:05:56 +0100 Subject: [PATCH] more readme cleanup --- PR_DESCRIPTION.md | 0 crates/bevy_editor/README.md | 20 ++++++++++---------- 2 files changed, 10 insertions(+), 10 deletions(-) create mode 100644 PR_DESCRIPTION.md diff --git a/PR_DESCRIPTION.md b/PR_DESCRIPTION.md new file mode 100644 index 0000000000..e69de29bb2 diff --git a/crates/bevy_editor/README.md b/crates/bevy_editor/README.md index 8b3dab3247..1e1c484a9b 100644 --- a/crates/bevy_editor/README.md +++ b/crates/bevy_editor/README.md @@ -153,18 +153,18 @@ See `WIDGETS.md` for detailed widget system documentation. #### Phase 1 - Remaining Implementation Details -**Interactive Expansion System** (✅ **IMPLEMENTED**): -- ✅ Add expansion state tracking with `ComponentDisplayState` resource -- ✅ Update `format_field_recursive()` to check expansion state before showing children -- ✅ Dynamic [+]/[-] indicators based on expansion state -- ✅ Smart keyboard shortcuts: 'E' for common fields, 'T' for Transform, 'C' to collapse all -- ✅ Generic field detection for any component type (not just Transform) +**Interactive Expansion System** ( **IMPLEMENTED**): +- Add expansion state tracking with `ComponentDisplayState` resource +- Update `format_field_recursive()` to check expansion state before showing children +- Dynamic [+]/[-] indicators based on expansion state +- Smart keyboard shortcuts: 'E' for common fields, 'T' for Transform, 'C' to collapse all +- Generic field detection for any component type (not just Transform) - **Next**: Replace keyboard shortcuts with clickable UI elements -**Mouse Wheel Scrolling** (✅ **IMPLEMENTED**): -- ✅ Added `ScrollableArea` component for marking scrollable UI elements -- ✅ Mouse wheel scroll handler for entity list navigation -- ✅ Smooth scrolling with optimal sensitivity (5px per wheel unit) +**Mouse Wheel Scrolling** ( **IMPLEMENTED**): +- Added `ScrollableArea` component for marking scrollable UI elements +- Mouse wheel scroll handler for entity list navigation +- Smooth scrolling with optimal sensitivity (5px per wheel unit) **Visual Polish** (Next Priority): - Consistent color coding for different value types (numbers, strings, booleans)