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 39faff5 commit ad2bcb2Copy full SHA for ad2bcb2
.github/workflows/bevy_mod_scripting.yml
@@ -76,6 +76,7 @@ jobs:
76
echo "matrix=$(cat matrix-one-line.json)" >> $GITHUB_OUTPUT
77
78
check-is-fork:
79
+ runs-on: ubuntu-latest
80
outputs:
81
is_fork: ${{ steps.check-fork.outputs.is_fork }}
82
steps:
crates/bevy_mod_scripting_functions/src/lib.rs
@@ -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