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 b28990e commit eb9b36cCopy full SHA for eb9b36c
crates/bevy_mod_scripting_derive/src/derive/into_script.rs
@@ -13,7 +13,7 @@ pub fn into_script(input: TokenStream) -> TokenStream {
13
let (impl_generics, type_generics, where_clause) = generics.split_for_impl();
14
15
quote! {
16
- impl #impl_generics ::bevy_mod_scripting::bindings::function::into::IntoScript for #ident #type_generics #where_clause {
+ impl #impl_generics ::bevy_mod_scripting::core::bindings::function::into::IntoScript for #ident #type_generics #where_clause {
17
fn into_script(self, world: ::bevy_mod_scripting::core::bindings::WorldGuard) -> Result<::bevy_mod_scripting::core::bindings::script_value::ScriptValue, ::bevy_mod_scripting::core::error::InteropError> {
18
::bevy_mod_scripting::core::bindings::function::into::IntoScript::into_script(
19
::bevy_mod_scripting::core::bindings::function::from::Val(self),
0 commit comments