bevy/crates/bevy_transform/src
Zachary Harrold db5c31e1c4
Add no_std support to bevy_transform (#17030)
# Objective

- Contributes to #15460

## Solution

- Added the following features:
  - `std` (default)
  - `alloc` (default)
  - `bevy_reflect` (default)
  - `libm`

## Testing

- CI

## Notes

- `alloc` feature added to allow using this crate in `no_alloc`
environments.
- `bevy_reflect` was previously always enabled when `bevy-support` was
enabled, which isn't how most other crates handle reflection. I've
brought this in line with how most crates gate `bevy_reflect`.
2024-12-30 21:01:13 +00:00
..
components Add no_std support to bevy_transform (#17030) 2024-12-30 21:01:13 +00:00
bundles.rs Migrate visibility to required components (#15474) 2024-09-27 19:06:16 +00:00
commands.rs Refactor hierarchy-related commands to remove structs (#17029) 2024-12-30 20:58:03 +00:00
helper.rs track_change_detection: Also track spawns/despawns (#16047) 2024-12-17 04:46:31 +00:00
lib.rs Add no_std support to bevy_transform (#17030) 2024-12-30 21:01:13 +00:00
plugins.rs Add no_std support to bevy_transform (#17030) 2024-12-30 21:01:13 +00:00
systems.rs Add no_std support to bevy_transform (#17030) 2024-12-30 21:01:13 +00:00
traits.rs Conversions for Isometry3d ⟷ Transform/GlobalTransform (#14478) 2024-07-25 20:23:32 +00:00