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 212e536 commit 78f81a2Copy full SHA for 78f81a2
crates/bevy_mod_scripting_core/src/bindings/globals/core.rs
@@ -8,7 +8,8 @@ use super::AppScriptGlobalsRegistry;
8
pub struct CoreScriptGlobalsPlugin;
9
10
impl Plugin for CoreScriptGlobalsPlugin {
11
- fn build(&self, app: &mut bevy::app::App) {
+ fn build(&self, _app: &mut bevy::app::App) {}
12
+ fn finish(&self, app: &mut bevy::app::App) {
13
let global_registry = app
14
.world_mut()
15
.get_resource_or_init::<AppScriptGlobalsRegistry>()
0 commit comments