Open
Description
In the 0.15->0.16 migration guide, it says to use the following code:
(https://bevyengine.org/learn/migration-guides/0-15-to-0-16/#don-t-re-export-entityhashset-and-entityhashmap)
use bevy::ecs::entity::{hash_set::HashSet, hash_map::HashMap};
However, I get an error using it:
After finding https://bevyengine.org/learn/migration-guides/0-15-to-0-16/#bevy-utils-refactor, I now realize that the section in the docs I linked to was meant for EntityHashSet
, and not HashSet
, which threw me for a loop.