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 22#![ allow( clippy:: all) ]
33#![ allow( unused, deprecated, dead_code) ]
44#![ cfg_attr( rustfmt, rustfmt_skip) ]
5- pub mod bevy_ecs;
6- pub mod bevy_transform;
5+ pub mod bevy_reflect;
76pub mod bevy_math;
87pub mod bevy_input;
8+ pub mod bevy_transform;
99pub mod bevy_core;
10- pub mod bevy_time;
1110pub mod bevy_hierarchy;
12- pub mod bevy_reflect;
11+ pub mod bevy_ecs;
12+ pub mod bevy_time;
1313pub struct LuaBevyScriptingPlugin ;
1414impl :: bevy:: app:: Plugin for LuaBevyScriptingPlugin {
1515 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) ;
1817 bevy_math:: BevyMathScriptingPlugin . build ( app) ;
1918 bevy_input:: BevyInputScriptingPlugin . build ( app) ;
19+ bevy_transform:: BevyTransformScriptingPlugin . build ( app) ;
2020 bevy_core:: BevyCoreScriptingPlugin . build ( app) ;
21- bevy_time:: BevyTimeScriptingPlugin . build ( app) ;
2221 bevy_hierarchy:: BevyHierarchyScriptingPlugin . build ( app) ;
23- bevy_reflect:: BevyReflectScriptingPlugin . build ( app) ;
22+ bevy_ecs:: BevyEcsScriptingPlugin . build ( app) ;
23+ bevy_time:: BevyTimeScriptingPlugin . build ( app) ;
2424 }
2525}
You can’t perform that action at this time.
0 commit comments