File tree Expand file tree Collapse file tree 1 file changed +8
-8
lines changed
crates/bevy_mod_scripting_functions/src/bevy_bindings Expand file tree Collapse file tree 1 file changed +8
-8
lines changed Original file line number Diff line number Diff line change 2
2
#![ allow( clippy:: all) ]
3
3
#![ allow( unused, deprecated, dead_code) ]
4
4
#![ cfg_attr( rustfmt, rustfmt_skip) ]
5
- pub mod bevy_ecs;
6
- pub mod bevy_transform;
5
+ pub mod bevy_reflect;
7
6
pub mod bevy_math;
8
7
pub mod bevy_input;
8
+ pub mod bevy_transform;
9
9
pub mod bevy_core;
10
- pub mod bevy_time;
11
10
pub mod bevy_hierarchy;
12
- pub mod bevy_reflect;
11
+ pub mod bevy_ecs;
12
+ pub mod bevy_time;
13
13
pub struct LuaBevyScriptingPlugin ;
14
14
impl :: bevy:: app:: Plugin for LuaBevyScriptingPlugin {
15
15
fn build ( & self , app : & mut :: bevy:: prelude:: App ) {
16
- bevy_ecs:: BevyEcsScriptingPlugin . build ( app) ;
17
- bevy_transform:: BevyTransformScriptingPlugin . build ( app) ;
16
+ bevy_reflect:: BevyReflectScriptingPlugin . build ( app) ;
18
17
bevy_math:: BevyMathScriptingPlugin . build ( app) ;
19
18
bevy_input:: BevyInputScriptingPlugin . build ( app) ;
19
+ bevy_transform:: BevyTransformScriptingPlugin . build ( app) ;
20
20
bevy_core:: BevyCoreScriptingPlugin . build ( app) ;
21
- bevy_time:: BevyTimeScriptingPlugin . build ( app) ;
22
21
bevy_hierarchy:: BevyHierarchyScriptingPlugin . build ( app) ;
23
- bevy_reflect:: BevyReflectScriptingPlugin . build ( app) ;
22
+ bevy_ecs:: BevyEcsScriptingPlugin . build ( app) ;
23
+ bevy_time:: BevyTimeScriptingPlugin . build ( app) ;
24
24
}
25
25
}
You can’t perform that action at this time.
0 commit comments