File tree Expand file tree Collapse file tree 3 files changed +6
-4
lines changed
bevy_mod_scripting_functions Expand file tree Collapse file tree 3 files changed +6
-4
lines changed Original file line number Diff line number Diff line change @@ -68,7 +68,7 @@ fn main() {
68
68
let plugin_subdir = format ! ( "plugin-{}" , env!( "RUSTC_CHANNEL" ) ) ;
69
69
let plugin_target_dir = metadata. target_directory . join ( plugin_subdir) ;
70
70
71
- info ! ( "Computing wokrspace metadata" ) ;
71
+ info ! ( "Computing workspace metadata" ) ;
72
72
73
73
// inform the deps about the workspace crates, this is going to be useful when working with meta files as we will be able to
74
74
// know when to panic if a crate is not found
Original file line number Diff line number Diff line change @@ -17,7 +17,8 @@ core_functions = ["bevy_mod_scripting_core"]
17
17
18
18
19
19
[dependencies ]
20
- bevy = { workspace = true , default-features = false , features = [
20
+ bevy = { workspace = true , features = [
21
21
" reflect_functions" ,
22
22
] }
23
+ uuid = " *"
23
24
bevy_mod_scripting_core = { workspace = true , optional = true }
Original file line number Diff line number Diff line change 1
- use bevy:: prelude:: * ;
2
-
1
+ use :: bevy:: prelude:: * ;
2
+ #[ cfg( feature = "core_functions" ) ]
3
+ pub mod bevy;
3
4
#[ cfg( feature = "core_functions" ) ]
4
5
pub mod core;
5
6
You can’t perform that action at this time.
0 commit comments