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
If two crates uses this (though this may be much rarer with bevy pipeline?)
The features don't get bifurcated meaning conflicting output size and looking at the code it picks the first if-match.
You might want to use cfg() instead if it's mutually exclusive and top level binary must choose it unless you can get it through API - features are supposed to only add code and not "switch" stuff
Not sure if this is an issue in bevy context but 🤷♀️
The text was updated successfully, but these errors were encountered:
If two crates uses this (though this may be much rarer with bevy pipeline?)
The features don't get bifurcated meaning conflicting output size and looking at the code it picks the first if-match.
You might want to use cfg() instead if it's mutually exclusive and top level binary must choose it unless you can get it through API - features are supposed to only add code and not "switch" stuff
Not sure if this is an issue in bevy context but 🤷♀️
The text was updated successfully, but these errors were encountered: