mirror of
https://github.com/bevyengine/bevy
synced 2024-11-21 12:13:25 +00:00
undeprecate component_reads_and_writes
(#16357)
# Objective - Does not correct #16339 but takes it out of the 0.15 milestone ## Solution - Make it future us problem instead of solving it now
This commit is contained in:
parent
0249bb7686
commit
4225848b0a
1 changed files with 1 additions and 1 deletions
|
@ -772,7 +772,7 @@ impl<T: SparseSetIndex> Access<T> {
|
||||||
/// `Access`, it's not recommended. Prefer to manage your own lists of
|
/// `Access`, it's not recommended. Prefer to manage your own lists of
|
||||||
/// accessible components if your application needs to do that.
|
/// accessible components if your application needs to do that.
|
||||||
#[doc(hidden)]
|
#[doc(hidden)]
|
||||||
#[deprecated]
|
// TODO: this should be deprecated and removed, see https://github.com/bevyengine/bevy/issues/16339
|
||||||
pub fn component_reads_and_writes(&self) -> (impl Iterator<Item = T> + '_, bool) {
|
pub fn component_reads_and_writes(&self) -> (impl Iterator<Item = T> + '_, bool) {
|
||||||
(
|
(
|
||||||
self.component_read_and_writes
|
self.component_read_and_writes
|
||||||
|
|
Loading…
Reference in a new issue