-
Notifications
You must be signed in to change notification settings - Fork 2
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
This crate doesn't work for target = wasm32-unknown-unknown
#3
Comments
From skimming the PRs, inventory might support WASM, so I'll do some experimentation. If it works, I can make |
Support for this is almost finished, but I can't seem to solve a specific issue with nested macros like Any |
Writing macros can be a pain! |
I've been working on a total parsing rewrite on the What's there will be included in the |
I see. Thanks for all the work! Are you sure though you want to release a version 1.0 when Bevy hasn't even reached that yet? In the Rust world 1.0 is seen as a serious commitment to stability. |
I'm personally pretty happy with the current API, but I think you're right. It might be better to stay in 0.x with Bevy, with the opportunity to iterate the API with feedback. |
Just out of curiosity: how much added overhead does this library introduce as opposed to just adding directly in an |
Systems, resources, events, etc. are registered using either the The first time any plugin is registered, it steps through that slice and builds a HashMap from the Plugin's type to a Vec of its butler entries, and stores it in a lazy static. Generally, a butler entry is created for any invocation of a butler macro, like Just from the top of my head, every plugin will have an overhead of tldr;
Where |
No description provided.
The text was updated successfully, but these errors were encountered: