mirror of
https://github.com/bevyengine/bevy
synced 2025-02-16 22:18:33 +00:00
Add archetypal to Access Debug impl (#12947)
# Objective - The `archetypal` field in `Access` doesn't get printed in debug output ## Solution - Add the field to the impl
This commit is contained in:
parent
70ce6f110b
commit
57719fc998
1 changed files with 1 additions and 0 deletions
|
@ -74,6 +74,7 @@ impl<T: SparseSetIndex + fmt::Debug> fmt::Debug for Access<T> {
|
|||
.field("writes", &FormattedBitSet::<T>::new(&self.writes))
|
||||
.field("reads_all", &self.reads_all)
|
||||
.field("writes_all", &self.writes_all)
|
||||
.field("archetypal", &FormattedBitSet::<T>::new(&self.archetypal))
|
||||
.finish()
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue