#Essential Entities
6 messages · Page 1 of 1 (latest)
Observers are their own entities with an Observer component, so you should probably filter those, i dont know if there are any others
I would suggest recording all of the entities at some point between app startup and when you begin spawning things in, that should capture effectively everything setup by other plugins or crates, such as Windows and contexts
Stuff them in an EntityHashSet and then you can difference against it when collecting entities later
Or on the flip side, you could add that component to all of them
Thanks
I'll take collect all existing entities on PreStartUp