Skip to content

Commit 517c82e

Browse files
committed
fix bindings trait paths
1 parent a1fc62e commit 517c82e

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

crates/bevy_api_gen/src/context.rs

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -82,12 +82,12 @@ impl ReflectType<'_> {
8282
}
8383

8484
pub(crate) const DEF_PATHS_BMS_FROM_SCRIPT: [&str; 2] = [
85-
"bevy_mod_scripting_core::bindings::function::from::FromScript",
86-
"bindings::function::from::FromScript",
85+
"bevy_mod_scripting_core::bindings::FromScript",
86+
"bindings::FromScript",
8787
];
8888
pub(crate) const DEF_PATHS_BMS_INTO_SCRIPT: [&str; 2] = [
89-
"bevy_mod_scripting_core::bindings::function::into::IntoScript",
90-
"bindings::function::into::IntoScript",
89+
"bevy_mod_scripting_core::bindings:IntoScript",
90+
"bindings::IntoScript",
9191
];
9292

9393
pub(crate) const DEF_PATHS_REFLECT: [&str; 2] =

0 commit comments

Comments
 (0)