You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In the interest of making minimal dependencies, I've re-coded most of the uses of impl_trait_for_tuples with hand-coded macros. The only one left is the View tuple. The reason I've left this for last is because unlike all the other tuple types in Quill which allow a max of 16 arguments, View allows 32 - which means it will require an ugly set of macro invocations.
What would be nice is if I could use the Bevy all_tuples! macro, but unfortunately it's missing an important feature I need, for which I have filed a ticket: bevyengine/bevy#10915. Adding this feature would not be too hard, I think, but I just have too many other yaks to shave.
The text was updated successfully, but these errors were encountered:
In the interest of making minimal dependencies, I've re-coded most of the uses of
impl_trait_for_tuples
with hand-coded macros. The only one left is theView
tuple. The reason I've left this for last is because unlike all the other tuple types in Quill which allow a max of 16 arguments, View allows 32 - which means it will require an ugly set of macro invocations.What would be nice is if I could use the Bevy
all_tuples!
macro, but unfortunately it's missing an important feature I need, for which I have filed a ticket: bevyengine/bevy#10915. Adding this feature would not be too hard, I think, but I just have too many other yaks to shave.The text was updated successfully, but these errors were encountered: