Plugin trait not satisfied #6650
-
i get this error:
when using |
Beta Was this translation helpful? Give feedback.
Answered by
alice-i-cecile
Nov 16, 2022
Replies: 1 comment 6 replies
-
This error is generally seen when you have two different versions of Bevy: your app may implement Bevy 0.9's Use |
Beta Was this translation helpful? Give feedback.
6 replies
Answer selected by
DasLixou
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
This error is generally seen when you have two different versions of Bevy: your app may implement Bevy 0.9's
Plugin
trait, while the plugin you're trying to use is using Bevy 0.8'sPlugin
trait. Definitely a poor error message.Use
cargo tree
(or inspect your dependencies carefully) to figure out where the version mismatch is coming from.