bevy/crates/bevy_transform/src
Natanael Mojica f135535cd6
Rename Command's "write" method to "apply" (#8814)
# Objective

- Fixes #8811 .

## Solution

- Rename "write" method to "apply" in Command trait definition.
- Rename other implementations of command trait throughout bevy's code
base.

---

## Changelog

- Changed: `Command::write` has been changed to `Command::apply`
- Changed: `EntityCommand::write` has been changed to
`EntityCommand::apply`

## Migration Guide

- `Command::write` implementations need to be changed to implement
`Command::apply` instead. This is a mere name change, with no further
actions needed.
- `EntityCommand::write` implementations need to be changed to implement
`EntityCommand::apply` instead. This is a mere name change, with no
further actions needed.

---------

Co-authored-by: Alice Cecile <alice.i.cecile@gmail.com>
2023-06-12 17:53:47 +00:00
..
components Fix look_to variable naming (#8627) 2023-05-23 02:17:33 +00:00
commands.rs Rename Command's "write" method to "apply" (#8814) 2023-06-12 17:53:47 +00:00
lib.rs Add a bounding box gizmo (#8468) 2023-04-24 15:23:06 +00:00
systems.rs Fix transform propagation of orphaned entities (#7264) 2023-04-09 20:53:33 +00:00