@@ -713,7 +713,7 @@ struct TouchPhase {}
713713#[ derive( bevy_mod_scripting_lua_derive:: LuaProxy ) ]
714714#[ proxy(
715715 derive( clone) ,
716- remote = "bevy::input::touchpad ::TouchpadMagnify" ,
716+ remote = "bevy::input::touch ::TouchpadMagnify" ,
717717 functions[ r#"
718718
719719 #[lua(
@@ -722,13 +722,13 @@ struct TouchPhase {}
722722 composite = "eq",
723723 metamethod = "Eq",
724724 )]
725- fn eq(&self, #[proxy] other: &touchpad ::TouchpadMagnify) -> bool;
725+ fn eq(&self, #[proxy] other: &touch ::TouchpadMagnify) -> bool;
726726
727727"# ,
728728 r#"
729729
730730 #[lua(as_trait = "std::clone::Clone", kind = "Method", output(proxy))]
731- fn clone(&self) -> bevy::input::touchpad ::TouchpadMagnify;
731+ fn clone(&self) -> bevy::input::touch ::TouchpadMagnify;
732732
733733"# ,
734734 r#"
@@ -742,7 +742,7 @@ struct TouchpadMagnify(f32);
742742#[ derive( bevy_mod_scripting_lua_derive:: LuaProxy ) ]
743743#[ proxy(
744744 derive( clone) ,
745- remote = "bevy::input::touchpad ::TouchpadRotate" ,
745+ remote = "bevy::input::touch ::TouchpadRotate" ,
746746 functions[ r#"
747747
748748 #[lua(
@@ -751,13 +751,13 @@ struct TouchpadMagnify(f32);
751751 composite = "eq",
752752 metamethod = "Eq",
753753 )]
754- fn eq(&self, #[proxy] other: &touchpad ::TouchpadRotate) -> bool;
754+ fn eq(&self, #[proxy] other: &touch ::TouchpadRotate) -> bool;
755755
756756"# ,
757757 r#"
758758
759759 #[lua(as_trait = "std::clone::Clone", kind = "Method", output(proxy))]
760- fn clone(&self) -> bevy::input::touchpad ::TouchpadRotate;
760+ fn clone(&self) -> bevy::input::touch ::TouchpadRotate;
761761
762762"# ,
763763 r#"
@@ -1525,8 +1525,8 @@ impl bevy_mod_scripting_core::hosts::APIProvider for BevyInputAPIProvider {
15251525 app. register_foreign_lua_type :: < bevy:: input:: mouse:: MouseWheel > ( ) ;
15261526 app. register_foreign_lua_type :: < bevy:: input:: touch:: ForceTouch > ( ) ;
15271527 app. register_foreign_lua_type :: < bevy:: input:: touch:: TouchPhase > ( ) ;
1528- app. register_foreign_lua_type :: < bevy:: input:: touchpad :: TouchpadMagnify > ( ) ;
1529- app. register_foreign_lua_type :: < bevy:: input:: touchpad :: TouchpadRotate > ( ) ;
1528+ app. register_foreign_lua_type :: < bevy:: input:: touch :: TouchpadMagnify > ( ) ;
1529+ app. register_foreign_lua_type :: < bevy:: input:: touch :: TouchpadRotate > ( ) ;
15301530 app. register_foreign_lua_type :: < bevy:: input:: gamepad:: AxisSettings > ( ) ;
15311531 app. register_foreign_lua_type :: < bevy:: input:: gamepad:: ButtonAxisSettings > ( ) ;
15321532 app. register_foreign_lua_type :: < bevy:: input:: gamepad:: ButtonSettings > ( ) ;
0 commit comments