Closed Nilirad closed 3 years ago
The main branch of Bevy now requires Components to be explicitly defined. I added #[derive(Component)] where necessary. I also wrapped lyon_tessellation::path::Path into a Path newtype in order to derive the Component trait on it.
main
Component
#[derive(Component)]
lyon_tessellation::path::Path
Path
The
main
branch of Bevy now requiresComponent
s to be explicitly defined. I added#[derive(Component)]
where necessary. I also wrappedlyon_tessellation::path::Path
into aPath
newtype in order to derive theComponent
trait on it.