We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2507c96 commit eca2445Copy full SHA for eca2445
crates/bevy_mod_scripting_functions/src/lib.rs
@@ -1,6 +1,6 @@
1
#![allow(missing_docs)]
2
3
-use ::bevy::prelude::*;
+use bevy::prelude::*;
4
pub mod bevy_bindings;
5
pub mod core;
6
pub use core::*;
@@ -14,7 +14,7 @@ impl Plugin for ScriptFunctionsPlugin {
14
register_bevy_bindings(app);
15
register_core_functions(app);
16
17
- // TODO: if bevy ever does this itself we should remove this
+ // TODO: if bevy ever does this itself we should remove this.
18
app.world_mut().register_component::<Parent>();
19
app.world_mut().register_component::<Children>();
20
}
0 commit comments