Skip to content
Snippets Groups Projects
Unverified Commit 8473330a authored by Nathan Wilson's avatar Nathan Wilson Committed by GitHub
Browse files

Fixed typo; 'eature' to 'feature'. (#10)

parent b6f8cfde
No related branches found
No related tags found
No related merge requests found
......@@ -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>);
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment