Doesn't seem to work unless the Tag/Component has a field. Always returns false.
Am I doing something wrong?
I've ended up with an unused public bool _; in the component/tag which allows me to get a response from .IsValid, is there a better way to do it?
Essentially I have code that serializes a component for transmission via network, and I use a DestroyOnSend tag to signal to my serialization system to get rid of the entity upon transmission (i.e. an RPC) rather than just remove the SendRequest component that triggers the serialization/transmission
The other option I've considered is a seperate system that destroys entities with the tag and no SendRequest after the fact.
Trying to keep the overhead as minimal as possible.