From 8473330a707d80af7cdff2abd2de4a3cb72a87ad Mon Sep 17 00:00:00 2001 From: Nathan Wilson <wilnathan@gmail.com> Date: Sat, 19 Mar 2022 12:05:27 -0400 Subject: [PATCH] Fixed typo; 'eature' to 'feature'. (#10) --- src/plugin.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/plugin.rs b/src/plugin.rs index 7d0b70c..861f32d 100644 --- a/src/plugin.rs +++ b/src/plugin.rs @@ -36,11 +36,11 @@ impl Plugin for TweeningPlugin { app.add_event::<TweenCompleted>() .add_system(component_animator_system::<Transform>); - #[cfg(eature = "bevy_ui")] + #[cfg(feature = "bevy_ui")] app.add_system(component_animator_system::<Text>) .add_system(component_animator_system::<Style>); - #[cfg(eature = "bevy_sprite")] + #[cfg(feature = "bevy_sprite")] app.add_system(component_animator_system::<Sprite>) .add_system(asset_animator_system::<ColorMaterial>); } -- GitLab