pub struct UiFinder<'a> { /* fields omitted */ }Utility SystemData for finding UI entities based on UiTransform id
Find the UiTransform entity with the given id
impl<'a> SystemData<'a> for UiFinder<'a> where Entities<'a>: SystemData<'a>, ReadStorage<'a, UiTransform>: SystemData<'a>, | [src] |
Sets up the system data for fetching it from the Resources.
Fetches the system data from Resources. Note that this is only specified for one concrete lifetime 'a, you need to implement the SystemData trait for every possible lifetime. Read more
Returns all read dependencies as fetched from Self::fetch. Read more
Returns all write dependencies as fetched from Self::fetch. Read more