Open
Description
Bevy version
0.16.0-rc.1
What you did
Depend on Bevy without default features, but with std
enabled (which enables part of bevy_math
)
What went wrong
There is no way to enable the curve
feature on bevy_math
through the bevy
crate. bevy_internal
optionally depends on bevy_math
without default features and there is no feature flag that would turn on the curve
feature.
Additional information
The obvious workaround is to depend on bevy_math
directly.