diff --git a/crates/bevy_mod_scripting_functions/src/bevy_bindings/bevy_core.rs b/crates/bevy_mod_scripting_functions/src/bevy_bindings/bevy_core.rs index 7f25f20894..60ab838fba 100644 --- a/crates/bevy_mod_scripting_functions/src/bevy_bindings/bevy_core.rs +++ b/crates/bevy_mod_scripting_functions/src/bevy_bindings/bevy_core.rs @@ -20,7 +20,9 @@ impl ::bevy::app::Plugin for BevyCoreScriptingPlugin { _self: Ref, other: Ref| { - let output: bool = ::bevy::core::prelude::Name::eq(&_self, &other) + let output: bool = >::eq(&_self, &other) .into(); output }, @@ -28,7 +30,7 @@ impl ::bevy::app::Plugin for BevyCoreScriptingPlugin { .overwrite_script_function( "clone", |_self: Ref| { - let output: Val = ::bevy::core::prelude::Name::clone( + let output: Val = ::clone( &_self, ) .into(); diff --git a/crates/bevy_mod_scripting_functions/src/bevy_bindings/bevy_ecs.rs b/crates/bevy_mod_scripting_functions/src/bevy_bindings/bevy_ecs.rs index 202f2f9033..773eeb17ee 100644 --- a/crates/bevy_mod_scripting_functions/src/bevy_bindings/bevy_ecs.rs +++ b/crates/bevy_mod_scripting_functions/src/bevy_bindings/bevy_ecs.rs @@ -16,7 +16,7 @@ impl ::bevy::app::Plugin for BevyEcsScriptingPlugin { .overwrite_script_function( "clone", |_self: Ref| { - let output: Val = ::bevy::ecs::entity::Entity::clone( + let output: Val = ::clone( &_self, ) .into(); @@ -29,7 +29,9 @@ impl ::bevy::app::Plugin for BevyEcsScriptingPlugin { _self: Ref, other: Ref| { - let output: bool = ::bevy::ecs::entity::Entity::eq(&_self, &other) + let output: bool = >::eq(&_self, &other) .into(); output }, @@ -37,7 +39,7 @@ impl ::bevy::app::Plugin for BevyEcsScriptingPlugin { .overwrite_script_function( "from_raw", |index: u32| { - let output: Val = ::bevy::ecs::entity::Entity::from_raw( + let output: Val = bevy::ecs::entity::Entity::from_raw( index, ) .into(); @@ -47,7 +49,7 @@ impl ::bevy::app::Plugin for BevyEcsScriptingPlugin { .overwrite_script_function( "to_bits", |_self: Val| { - let output: u64 = ::bevy::ecs::entity::Entity::to_bits( + let output: u64 = bevy::ecs::entity::Entity::to_bits( _self.into_inner(), ) .into(); @@ -57,7 +59,7 @@ impl ::bevy::app::Plugin for BevyEcsScriptingPlugin { .overwrite_script_function( "from_bits", |bits: u64| { - let output: Val = ::bevy::ecs::entity::Entity::from_bits( + let output: Val = bevy::ecs::entity::Entity::from_bits( bits, ) .into(); @@ -67,7 +69,7 @@ impl ::bevy::app::Plugin for BevyEcsScriptingPlugin { .overwrite_script_function( "index", |_self: Val| { - let output: u32 = ::bevy::ecs::entity::Entity::index( + let output: u32 = bevy::ecs::entity::Entity::index( _self.into_inner(), ) .into(); @@ -77,7 +79,7 @@ impl ::bevy::app::Plugin for BevyEcsScriptingPlugin { .overwrite_script_function( "generation", |_self: Val| { - let output: u32 = ::bevy::ecs::entity::Entity::generation( + let output: u32 = bevy::ecs::entity::Entity::generation( _self.into_inner(), ) .into(); @@ -95,10 +97,9 @@ impl ::bevy::app::Plugin for BevyEcsScriptingPlugin { _self: Ref, other: Ref| { - let output: bool = ::bevy::ecs::component::ComponentId::eq( - &_self, - &other, - ) + let output: bool = >::eq(&_self, &other) .into(); output }, @@ -106,7 +107,7 @@ impl ::bevy::app::Plugin for BevyEcsScriptingPlugin { .overwrite_script_function( "clone", |_self: Ref| { - let output: Val = ::bevy::ecs::component::ComponentId::clone( + let output: Val = ::clone( &_self, ) .into(); @@ -116,7 +117,7 @@ impl ::bevy::app::Plugin for BevyEcsScriptingPlugin { .overwrite_script_function( "assert_receiver_is_total_eq", |_self: Ref| { - let output: () = ::bevy::ecs::component::ComponentId::assert_receiver_is_total_eq( + let output: () = ::assert_receiver_is_total_eq( &_self, ) .into(); @@ -126,7 +127,7 @@ impl ::bevy::app::Plugin for BevyEcsScriptingPlugin { .overwrite_script_function( "new", |index: usize| { - let output: Val = ::bevy::ecs::component::ComponentId::new( + let output: Val = bevy::ecs::component::ComponentId::new( index, ) .into(); @@ -136,7 +137,7 @@ impl ::bevy::app::Plugin for BevyEcsScriptingPlugin { .overwrite_script_function( "index", |_self: Val| { - let output: usize = ::bevy::ecs::component::ComponentId::index( + let output: usize = bevy::ecs::component::ComponentId::index( _self.into_inner(), ) .into(); @@ -147,7 +148,7 @@ impl ::bevy::app::Plugin for BevyEcsScriptingPlugin { .overwrite_script_function( "new", |tick: u32| { - let output: Val = ::bevy::ecs::component::Tick::new( + let output: Val = bevy::ecs::component::Tick::new( tick, ) .into(); @@ -157,9 +158,7 @@ impl ::bevy::app::Plugin for BevyEcsScriptingPlugin { .overwrite_script_function( "get", |_self: Val| { - let output: u32 = ::bevy::ecs::component::Tick::get( - _self.into_inner(), - ) + let output: u32 = bevy::ecs::component::Tick::get(_self.into_inner()) .into(); output }, @@ -167,7 +166,7 @@ impl ::bevy::app::Plugin for BevyEcsScriptingPlugin { .overwrite_script_function( "set", |mut _self: Mut, tick: u32| { - let output: () = ::bevy::ecs::component::Tick::set(&mut _self, tick) + let output: () = bevy::ecs::component::Tick::set(&mut _self, tick) .into(); output }, @@ -179,7 +178,7 @@ impl ::bevy::app::Plugin for BevyEcsScriptingPlugin { last_run: Val, this_run: Val| { - let output: bool = ::bevy::ecs::component::Tick::is_newer_than( + let output: bool = bevy::ecs::component::Tick::is_newer_than( _self.into_inner(), last_run.into_inner(), this_run.into_inner(), @@ -194,7 +193,9 @@ impl ::bevy::app::Plugin for BevyEcsScriptingPlugin { _self: Ref, other: Ref| { - let output: bool = ::bevy::ecs::component::Tick::eq(&_self, &other) + let output: bool = >::eq(&_self, &other) .into(); output }, @@ -202,7 +203,7 @@ impl ::bevy::app::Plugin for BevyEcsScriptingPlugin { .overwrite_script_function( "assert_receiver_is_total_eq", |_self: Ref| { - let output: () = ::bevy::ecs::component::Tick::assert_receiver_is_total_eq( + let output: () = ::assert_receiver_is_total_eq( &_self, ) .into(); @@ -212,7 +213,7 @@ impl ::bevy::app::Plugin for BevyEcsScriptingPlugin { .overwrite_script_function( "clone", |_self: Ref| { - let output: Val = ::bevy::ecs::component::Tick::clone( + let output: Val = ::clone( &_self, ) .into(); @@ -227,7 +228,7 @@ impl ::bevy::app::Plugin for BevyEcsScriptingPlugin { last_run: Val, this_run: Val| { - let output: bool = ::bevy::ecs::component::ComponentTicks::is_added( + let output: bool = bevy::ecs::component::ComponentTicks::is_added( &_self, last_run.into_inner(), this_run.into_inner(), @@ -243,7 +244,7 @@ impl ::bevy::app::Plugin for BevyEcsScriptingPlugin { last_run: Val, this_run: Val| { - let output: bool = ::bevy::ecs::component::ComponentTicks::is_changed( + let output: bool = bevy::ecs::component::ComponentTicks::is_changed( &_self, last_run.into_inner(), this_run.into_inner(), @@ -255,7 +256,7 @@ impl ::bevy::app::Plugin for BevyEcsScriptingPlugin { .overwrite_script_function( "new", |change_tick: Val| { - let output: Val = ::bevy::ecs::component::ComponentTicks::new( + let output: Val = bevy::ecs::component::ComponentTicks::new( change_tick.into_inner(), ) .into(); @@ -268,7 +269,7 @@ impl ::bevy::app::Plugin for BevyEcsScriptingPlugin { mut _self: Mut, change_tick: Val| { - let output: () = ::bevy::ecs::component::ComponentTicks::set_changed( + let output: () = bevy::ecs::component::ComponentTicks::set_changed( &mut _self, change_tick.into_inner(), ) @@ -279,7 +280,7 @@ impl ::bevy::app::Plugin for BevyEcsScriptingPlugin { .overwrite_script_function( "clone", |_self: Ref| { - let output: Val = ::bevy::ecs::component::ComponentTicks::clone( + let output: Val = ::clone( &_self, ) .into(); @@ -290,7 +291,7 @@ impl ::bevy::app::Plugin for BevyEcsScriptingPlugin { .overwrite_script_function( "clone", |_self: Ref| { - let output: Val = ::bevy::ecs::identifier::Identifier::clone( + let output: Val = ::clone( &_self, ) .into(); @@ -300,7 +301,7 @@ impl ::bevy::app::Plugin for BevyEcsScriptingPlugin { .overwrite_script_function( "low", |_self: Val| { - let output: u32 = ::bevy::ecs::identifier::Identifier::low( + let output: u32 = bevy::ecs::identifier::Identifier::low( _self.into_inner(), ) .into(); @@ -310,7 +311,7 @@ impl ::bevy::app::Plugin for BevyEcsScriptingPlugin { .overwrite_script_function( "masked_high", |_self: Val| { - let output: u32 = ::bevy::ecs::identifier::Identifier::masked_high( + let output: u32 = bevy::ecs::identifier::Identifier::masked_high( _self.into_inner(), ) .into(); @@ -320,7 +321,7 @@ impl ::bevy::app::Plugin for BevyEcsScriptingPlugin { .overwrite_script_function( "to_bits", |_self: Val| { - let output: u64 = ::bevy::ecs::identifier::Identifier::to_bits( + let output: u64 = bevy::ecs::identifier::Identifier::to_bits( _self.into_inner(), ) .into(); @@ -330,7 +331,7 @@ impl ::bevy::app::Plugin for BevyEcsScriptingPlugin { .overwrite_script_function( "from_bits", |value: u64| { - let output: Val = ::bevy::ecs::identifier::Identifier::from_bits( + let output: Val = bevy::ecs::identifier::Identifier::from_bits( value, ) .into(); @@ -343,10 +344,9 @@ impl ::bevy::app::Plugin for BevyEcsScriptingPlugin { _self: Ref, other: Ref| { - let output: bool = ::bevy::ecs::identifier::Identifier::eq( - &_self, - &other, - ) + let output: bool = >::eq(&_self, &other) .into(); output }, @@ -355,7 +355,7 @@ impl ::bevy::app::Plugin for BevyEcsScriptingPlugin { .overwrite_script_function( "clone", |_self: Ref| { - let output: Val = ::bevy::ecs::entity::EntityHash::clone( + let output: Val = ::clone( &_self, ) .into(); @@ -370,7 +370,7 @@ impl ::bevy::app::Plugin for BevyEcsScriptingPlugin { |_self: Ref| { let output: Val< bevy::ecs::removal_detection::RemovedComponentEntity, - > = ::bevy::ecs::removal_detection::RemovedComponentEntity::clone( + > = ::clone( &_self, ) .into(); diff --git a/crates/bevy_mod_scripting_functions/src/bevy_bindings/bevy_hierarchy.rs b/crates/bevy_mod_scripting_functions/src/bevy_bindings/bevy_hierarchy.rs index 077abe92c0..c8a29c3d00 100644 --- a/crates/bevy_mod_scripting_functions/src/bevy_bindings/bevy_hierarchy.rs +++ b/crates/bevy_mod_scripting_functions/src/bevy_bindings/bevy_hierarchy.rs @@ -22,7 +22,7 @@ impl ::bevy::app::Plugin for BevyHierarchyScriptingPlugin { a_index: usize, b_index: usize| { - let output: () = ::bevy::hierarchy::prelude::Children::swap( + let output: () = bevy::hierarchy::prelude::Children::swap( &mut _self, a_index, b_index, @@ -35,7 +35,7 @@ impl ::bevy::app::Plugin for BevyHierarchyScriptingPlugin { .overwrite_script_function( "assert_receiver_is_total_eq", |_self: Ref| { - let output: () = ::bevy::hierarchy::prelude::Parent::assert_receiver_is_total_eq( + let output: () = ::assert_receiver_is_total_eq( &_self, ) .into(); @@ -48,10 +48,9 @@ impl ::bevy::app::Plugin for BevyHierarchyScriptingPlugin { _self: Ref, other: Ref| { - let output: bool = ::bevy::hierarchy::prelude::Parent::eq( - &_self, - &other, - ) + let output: bool = >::eq(&_self, &other) .into(); output }, @@ -63,10 +62,9 @@ impl ::bevy::app::Plugin for BevyHierarchyScriptingPlugin { _self: Ref, other: Ref| { - let output: bool = ::bevy::hierarchy::HierarchyEvent::eq( - &_self, - &other, - ) + let output: bool = >::eq(&_self, &other) .into(); output }, @@ -74,7 +72,7 @@ impl ::bevy::app::Plugin for BevyHierarchyScriptingPlugin { .overwrite_script_function( "clone", |_self: Ref| { - let output: Val = ::bevy::hierarchy::HierarchyEvent::clone( + let output: Val = ::clone( &_self, ) .into(); @@ -84,7 +82,7 @@ impl ::bevy::app::Plugin for BevyHierarchyScriptingPlugin { .overwrite_script_function( "assert_receiver_is_total_eq", |_self: Ref| { - let output: () = ::bevy::hierarchy::HierarchyEvent::assert_receiver_is_total_eq( + let output: () = ::assert_receiver_is_total_eq( &_self, ) .into(); diff --git a/crates/bevy_mod_scripting_functions/src/bevy_bindings/bevy_input.rs b/crates/bevy_mod_scripting_functions/src/bevy_bindings/bevy_input.rs index e81144868d..82c5c879ba 100644 --- a/crates/bevy_mod_scripting_functions/src/bevy_bindings/bevy_input.rs +++ b/crates/bevy_mod_scripting_functions/src/bevy_bindings/bevy_input.rs @@ -19,7 +19,7 @@ impl ::bevy::app::Plugin for BevyInputScriptingPlugin { .overwrite_script_function( "vendor_id", |_self: Ref| { - let output: std::option::Option = ::bevy::input::gamepad::Gamepad::vendor_id( + let output: std::option::Option = bevy::input::gamepad::Gamepad::vendor_id( &_self, ) .into(); @@ -29,7 +29,7 @@ impl ::bevy::app::Plugin for BevyInputScriptingPlugin { .overwrite_script_function( "product_id", |_self: Ref| { - let output: std::option::Option = ::bevy::input::gamepad::Gamepad::product_id( + let output: std::option::Option = bevy::input::gamepad::Gamepad::product_id( &_self, ) .into(); @@ -42,7 +42,7 @@ impl ::bevy::app::Plugin for BevyInputScriptingPlugin { _self: Ref, button_type: Val| { - let output: bool = ::bevy::input::gamepad::Gamepad::pressed( + let output: bool = bevy::input::gamepad::Gamepad::pressed( &_self, button_type.into_inner(), ) @@ -56,7 +56,7 @@ impl ::bevy::app::Plugin for BevyInputScriptingPlugin { _self: Ref, button_type: Val| { - let output: bool = ::bevy::input::gamepad::Gamepad::just_pressed( + let output: bool = bevy::input::gamepad::Gamepad::just_pressed( &_self, button_type.into_inner(), ) @@ -70,7 +70,7 @@ impl ::bevy::app::Plugin for BevyInputScriptingPlugin { _self: Ref, button_type: Val| { - let output: bool = ::bevy::input::gamepad::Gamepad::just_released( + let output: bool = bevy::input::gamepad::Gamepad::just_released( &_self, button_type.into_inner(), ) @@ -82,7 +82,7 @@ impl ::bevy::app::Plugin for BevyInputScriptingPlugin { .overwrite_script_function( "assert_receiver_is_total_eq", |_self: Ref| { - let output: () = ::bevy::input::gamepad::GamepadAxis::assert_receiver_is_total_eq( + let output: () = ::assert_receiver_is_total_eq( &_self, ) .into(); @@ -95,10 +95,9 @@ impl ::bevy::app::Plugin for BevyInputScriptingPlugin { _self: Ref, other: Ref| { - let output: bool = ::bevy::input::gamepad::GamepadAxis::eq( - &_self, - &other, - ) + let output: bool = >::eq(&_self, &other) .into(); output }, @@ -106,7 +105,7 @@ impl ::bevy::app::Plugin for BevyInputScriptingPlugin { .overwrite_script_function( "clone", |_self: Ref| { - let output: Val = ::bevy::input::gamepad::GamepadAxis::clone( + let output: Val = ::clone( &_self, ) .into(); @@ -120,10 +119,9 @@ impl ::bevy::app::Plugin for BevyInputScriptingPlugin { _self: Ref, other: Ref| { - let output: bool = ::bevy::input::gamepad::GamepadButton::eq( - &_self, - &other, - ) + let output: bool = >::eq(&_self, &other) .into(); output }, @@ -131,7 +129,7 @@ impl ::bevy::app::Plugin for BevyInputScriptingPlugin { .overwrite_script_function( "assert_receiver_is_total_eq", |_self: Ref| { - let output: () = ::bevy::input::gamepad::GamepadButton::assert_receiver_is_total_eq( + let output: () = ::assert_receiver_is_total_eq( &_self, ) .into(); @@ -141,7 +139,7 @@ impl ::bevy::app::Plugin for BevyInputScriptingPlugin { .overwrite_script_function( "clone", |_self: Ref| { - let output: Val = ::bevy::input::gamepad::GamepadButton::clone( + let output: Val = ::clone( &_self, ) .into(); @@ -152,7 +150,7 @@ impl ::bevy::app::Plugin for BevyInputScriptingPlugin { .overwrite_script_function( "clone", |_self: Ref| { - let output: Val = ::bevy::input::gamepad::GamepadSettings::clone( + let output: Val = ::clone( &_self, ) .into(); @@ -163,7 +161,7 @@ impl ::bevy::app::Plugin for BevyInputScriptingPlugin { .overwrite_script_function( "assert_receiver_is_total_eq", |_self: Ref| { - let output: () = ::bevy::input::keyboard::KeyCode::assert_receiver_is_total_eq( + let output: () = ::assert_receiver_is_total_eq( &_self, ) .into(); @@ -176,10 +174,9 @@ impl ::bevy::app::Plugin for BevyInputScriptingPlugin { _self: Ref, other: Ref| { - let output: bool = ::bevy::input::keyboard::KeyCode::eq( - &_self, - &other, - ) + let output: bool = >::eq(&_self, &other) .into(); output }, @@ -187,7 +184,7 @@ impl ::bevy::app::Plugin for BevyInputScriptingPlugin { .overwrite_script_function( "clone", |_self: Ref| { - let output: Val = ::bevy::input::keyboard::KeyCode::clone( + let output: Val = ::clone( &_self, ) .into(); @@ -198,7 +195,7 @@ impl ::bevy::app::Plugin for BevyInputScriptingPlugin { .overwrite_script_function( "assert_receiver_is_total_eq", |_self: Ref| { - let output: () = ::bevy::input::mouse::MouseButton::assert_receiver_is_total_eq( + let output: () = ::assert_receiver_is_total_eq( &_self, ) .into(); @@ -208,7 +205,7 @@ impl ::bevy::app::Plugin for BevyInputScriptingPlugin { .overwrite_script_function( "clone", |_self: Ref| { - let output: Val = ::bevy::input::mouse::MouseButton::clone( + let output: Val = ::clone( &_self, ) .into(); @@ -221,10 +218,9 @@ impl ::bevy::app::Plugin for BevyInputScriptingPlugin { _self: Ref, other: Ref| { - let output: bool = ::bevy::input::mouse::MouseButton::eq( - &_self, - &other, - ) + let output: bool = >::eq(&_self, &other) .into(); output }, @@ -233,7 +229,7 @@ impl ::bevy::app::Plugin for BevyInputScriptingPlugin { .overwrite_script_function( "clone", |_self: Ref| { - let output: Val = ::bevy::input::touch::TouchInput::clone( + let output: Val = ::clone( &_self, ) .into(); @@ -246,10 +242,9 @@ impl ::bevy::app::Plugin for BevyInputScriptingPlugin { _self: Ref, other: Ref| { - let output: bool = ::bevy::input::touch::TouchInput::eq( - &_self, - &other, - ) + let output: bool = >::eq(&_self, &other) .into(); output }, @@ -258,7 +253,7 @@ impl ::bevy::app::Plugin for BevyInputScriptingPlugin { .overwrite_script_function( "clone", |_self: Ref| { - let output: Val = ::bevy::input::keyboard::KeyboardFocusLost::clone( + let output: Val = ::clone( &_self, ) .into(); @@ -268,7 +263,7 @@ impl ::bevy::app::Plugin for BevyInputScriptingPlugin { .overwrite_script_function( "assert_receiver_is_total_eq", |_self: Ref| { - let output: () = ::bevy::input::keyboard::KeyboardFocusLost::assert_receiver_is_total_eq( + let output: () = ::assert_receiver_is_total_eq( &_self, ) .into(); @@ -281,10 +276,9 @@ impl ::bevy::app::Plugin for BevyInputScriptingPlugin { _self: Ref, other: Ref| { - let output: bool = ::bevy::input::keyboard::KeyboardFocusLost::eq( - &_self, - &other, - ) + let output: bool = >::eq(&_self, &other) .into(); output }, @@ -293,7 +287,7 @@ impl ::bevy::app::Plugin for BevyInputScriptingPlugin { .overwrite_script_function( "clone", |_self: Ref| { - let output: Val = ::bevy::input::keyboard::KeyboardInput::clone( + let output: Val = ::clone( &_self, ) .into(); @@ -306,10 +300,9 @@ impl ::bevy::app::Plugin for BevyInputScriptingPlugin { _self: Ref, other: Ref| { - let output: bool = ::bevy::input::keyboard::KeyboardInput::eq( - &_self, - &other, - ) + let output: bool = >::eq(&_self, &other) .into(); output }, @@ -317,7 +310,7 @@ impl ::bevy::app::Plugin for BevyInputScriptingPlugin { .overwrite_script_function( "assert_receiver_is_total_eq", |_self: Ref| { - let output: () = ::bevy::input::keyboard::KeyboardInput::assert_receiver_is_total_eq( + let output: () = ::assert_receiver_is_total_eq( &_self, ) .into(); @@ -328,7 +321,7 @@ impl ::bevy::app::Plugin for BevyInputScriptingPlugin { .overwrite_script_function( "clone", |_self: Ref| { - let output: Val = ::bevy::input::mouse::AccumulatedMouseMotion::clone( + let output: Val = ::clone( &_self, ) .into(); @@ -341,10 +334,9 @@ impl ::bevy::app::Plugin for BevyInputScriptingPlugin { _self: Ref, other: Ref| { - let output: bool = ::bevy::input::mouse::AccumulatedMouseMotion::eq( - &_self, - &other, - ) + let output: bool = >::eq(&_self, &other) .into(); output }, @@ -353,7 +345,7 @@ impl ::bevy::app::Plugin for BevyInputScriptingPlugin { .overwrite_script_function( "clone", |_self: Ref| { - let output: Val = ::bevy::input::mouse::AccumulatedMouseScroll::clone( + let output: Val = ::clone( &_self, ) .into(); @@ -366,10 +358,9 @@ impl ::bevy::app::Plugin for BevyInputScriptingPlugin { _self: Ref, other: Ref| { - let output: bool = ::bevy::input::mouse::AccumulatedMouseScroll::eq( - &_self, - &other, - ) + let output: bool = >::eq(&_self, &other) .into(); output }, @@ -378,7 +369,7 @@ impl ::bevy::app::Plugin for BevyInputScriptingPlugin { .overwrite_script_function( "assert_receiver_is_total_eq", |_self: Ref| { - let output: () = ::bevy::input::mouse::MouseButtonInput::assert_receiver_is_total_eq( + let output: () = ::assert_receiver_is_total_eq( &_self, ) .into(); @@ -388,7 +379,7 @@ impl ::bevy::app::Plugin for BevyInputScriptingPlugin { .overwrite_script_function( "clone", |_self: Ref| { - let output: Val = ::bevy::input::mouse::MouseButtonInput::clone( + let output: Val = ::clone( &_self, ) .into(); @@ -401,10 +392,9 @@ impl ::bevy::app::Plugin for BevyInputScriptingPlugin { _self: Ref, other: Ref| { - let output: bool = ::bevy::input::mouse::MouseButtonInput::eq( - &_self, - &other, - ) + let output: bool = >::eq(&_self, &other) .into(); output }, @@ -416,10 +406,9 @@ impl ::bevy::app::Plugin for BevyInputScriptingPlugin { _self: Ref, other: Ref| { - let output: bool = ::bevy::input::mouse::MouseMotion::eq( - &_self, - &other, - ) + let output: bool = >::eq(&_self, &other) .into(); output }, @@ -427,7 +416,7 @@ impl ::bevy::app::Plugin for BevyInputScriptingPlugin { .overwrite_script_function( "clone", |_self: Ref| { - let output: Val = ::bevy::input::mouse::MouseMotion::clone( + let output: Val = ::clone( &_self, ) .into(); @@ -441,10 +430,9 @@ impl ::bevy::app::Plugin for BevyInputScriptingPlugin { _self: Ref, other: Ref| { - let output: bool = ::bevy::input::mouse::MouseWheel::eq( - &_self, - &other, - ) + let output: bool = >::eq(&_self, &other) .into(); output }, @@ -452,7 +440,7 @@ impl ::bevy::app::Plugin for BevyInputScriptingPlugin { .overwrite_script_function( "clone", |_self: Ref| { - let output: Val = ::bevy::input::mouse::MouseWheel::clone( + let output: Val = ::clone( &_self, ) .into(); @@ -463,7 +451,7 @@ impl ::bevy::app::Plugin for BevyInputScriptingPlugin { .overwrite_script_function( "clone", |_self: Ref| { - let output: Val = ::bevy::input::gamepad::GamepadAxisChangedEvent::clone( + let output: Val = ::clone( &_self, ) .into(); @@ -476,10 +464,9 @@ impl ::bevy::app::Plugin for BevyInputScriptingPlugin { _self: Ref, other: Ref| { - let output: bool = ::bevy::input::gamepad::GamepadAxisChangedEvent::eq( - &_self, - &other, - ) + let output: bool = >::eq(&_self, &other) .into(); output }, @@ -488,7 +475,7 @@ impl ::bevy::app::Plugin for BevyInputScriptingPlugin { .overwrite_script_function( "clone", |_self: Ref| { - let output: Val = ::bevy::input::gamepad::GamepadButtonChangedEvent::clone( + let output: Val = ::clone( &_self, ) .into(); @@ -501,10 +488,9 @@ impl ::bevy::app::Plugin for BevyInputScriptingPlugin { _self: Ref, other: Ref| { - let output: bool = ::bevy::input::gamepad::GamepadButtonChangedEvent::eq( - &_self, - &other, - ) + let output: bool = >::eq(&_self, &other) .into(); output }, @@ -518,10 +504,9 @@ impl ::bevy::app::Plugin for BevyInputScriptingPlugin { _self: Ref, other: Ref| { - let output: bool = ::bevy::input::gamepad::GamepadButtonStateChangedEvent::eq( - &_self, - &other, - ) + let output: bool = >::eq(&_self, &other) .into(); output }, @@ -529,7 +514,7 @@ impl ::bevy::app::Plugin for BevyInputScriptingPlugin { .overwrite_script_function( "assert_receiver_is_total_eq", |_self: Ref| { - let output: () = ::bevy::input::gamepad::GamepadButtonStateChangedEvent::assert_receiver_is_total_eq( + let output: () = ::assert_receiver_is_total_eq( &_self, ) .into(); @@ -541,7 +526,7 @@ impl ::bevy::app::Plugin for BevyInputScriptingPlugin { |_self: Ref| { let output: Val< bevy::input::gamepad::GamepadButtonStateChangedEvent, - > = ::bevy::input::gamepad::GamepadButtonStateChangedEvent::clone( + > = ::clone( &_self, ) .into(); @@ -555,10 +540,9 @@ impl ::bevy::app::Plugin for BevyInputScriptingPlugin { _self: Ref, other: Ref| { - let output: bool = ::bevy::input::gamepad::GamepadConnection::eq( - &_self, - &other, - ) + let output: bool = >::eq(&_self, &other) .into(); output }, @@ -566,7 +550,7 @@ impl ::bevy::app::Plugin for BevyInputScriptingPlugin { .overwrite_script_function( "clone", |_self: Ref| { - let output: Val = ::bevy::input::gamepad::GamepadConnection::clone( + let output: Val = ::clone( &_self, ) .into(); @@ -577,7 +561,7 @@ impl ::bevy::app::Plugin for BevyInputScriptingPlugin { .overwrite_script_function( "connected", |_self: Ref| { - let output: bool = ::bevy::input::gamepad::GamepadConnectionEvent::connected( + let output: bool = bevy::input::gamepad::GamepadConnectionEvent::connected( &_self, ) .into(); @@ -587,7 +571,7 @@ impl ::bevy::app::Plugin for BevyInputScriptingPlugin { .overwrite_script_function( "disconnected", |_self: Ref| { - let output: bool = ::bevy::input::gamepad::GamepadConnectionEvent::disconnected( + let output: bool = bevy::input::gamepad::GamepadConnectionEvent::disconnected( &_self, ) .into(); @@ -600,10 +584,9 @@ impl ::bevy::app::Plugin for BevyInputScriptingPlugin { _self: Ref, other: Ref| { - let output: bool = ::bevy::input::gamepad::GamepadConnectionEvent::eq( - &_self, - &other, - ) + let output: bool = >::eq(&_self, &other) .into(); output }, @@ -611,7 +594,7 @@ impl ::bevy::app::Plugin for BevyInputScriptingPlugin { .overwrite_script_function( "clone", |_self: Ref| { - let output: Val = ::bevy::input::gamepad::GamepadConnectionEvent::clone( + let output: Val = ::clone( &_self, ) .into(); @@ -622,7 +605,7 @@ impl ::bevy::app::Plugin for BevyInputScriptingPlugin { .overwrite_script_function( "clone", |_self: Ref| { - let output: Val = ::bevy::input::gamepad::GamepadEvent::clone( + let output: Val = ::clone( &_self, ) .into(); @@ -635,10 +618,9 @@ impl ::bevy::app::Plugin for BevyInputScriptingPlugin { _self: Ref, other: Ref| { - let output: bool = ::bevy::input::gamepad::GamepadEvent::eq( - &_self, - &other, - ) + let output: bool = >::eq(&_self, &other) .into(); output }, @@ -647,7 +629,7 @@ impl ::bevy::app::Plugin for BevyInputScriptingPlugin { .overwrite_script_function( "clone", |_self: Ref| { - let output: Val = ::bevy::input::gamepad::GamepadInput::clone( + let output: Val = ::clone( &_self, ) .into(); @@ -660,10 +642,9 @@ impl ::bevy::app::Plugin for BevyInputScriptingPlugin { _self: Ref, other: Ref| { - let output: bool = ::bevy::input::gamepad::GamepadInput::eq( - &_self, - &other, - ) + let output: bool = >::eq(&_self, &other) .into(); output }, @@ -671,7 +652,7 @@ impl ::bevy::app::Plugin for BevyInputScriptingPlugin { .overwrite_script_function( "assert_receiver_is_total_eq", |_self: Ref| { - let output: () = ::bevy::input::gamepad::GamepadInput::assert_receiver_is_total_eq( + let output: () = ::assert_receiver_is_total_eq( &_self, ) .into(); @@ -682,7 +663,7 @@ impl ::bevy::app::Plugin for BevyInputScriptingPlugin { .overwrite_script_function( "clone", |_self: Ref| { - let output: Val = ::bevy::input::gamepad::GamepadRumbleRequest::clone( + let output: Val = ::clone( &_self, ) .into(); @@ -698,10 +679,9 @@ impl ::bevy::app::Plugin for BevyInputScriptingPlugin { _self: Ref, other: Ref| { - let output: bool = ::bevy::input::gamepad::RawGamepadAxisChangedEvent::eq( - &_self, - &other, - ) + let output: bool = >::eq(&_self, &other) .into(); output }, @@ -709,7 +689,7 @@ impl ::bevy::app::Plugin for BevyInputScriptingPlugin { .overwrite_script_function( "clone", |_self: Ref| { - let output: Val = ::bevy::input::gamepad::RawGamepadAxisChangedEvent::clone( + let output: Val = ::clone( &_self, ) .into(); @@ -724,7 +704,7 @@ impl ::bevy::app::Plugin for BevyInputScriptingPlugin { |_self: Ref| { let output: Val< bevy::input::gamepad::RawGamepadButtonChangedEvent, - > = ::bevy::input::gamepad::RawGamepadButtonChangedEvent::clone( + > = ::clone( &_self, ) .into(); @@ -737,10 +717,9 @@ impl ::bevy::app::Plugin for BevyInputScriptingPlugin { _self: Ref, other: Ref| { - let output: bool = ::bevy::input::gamepad::RawGamepadButtonChangedEvent::eq( - &_self, - &other, - ) + let output: bool = >::eq(&_self, &other) .into(); output }, @@ -752,10 +731,9 @@ impl ::bevy::app::Plugin for BevyInputScriptingPlugin { _self: Ref, other: Ref| { - let output: bool = ::bevy::input::gamepad::RawGamepadEvent::eq( - &_self, - &other, - ) + let output: bool = >::eq(&_self, &other) .into(); output }, @@ -763,7 +741,7 @@ impl ::bevy::app::Plugin for BevyInputScriptingPlugin { .overwrite_script_function( "clone", |_self: Ref| { - let output: Val = ::bevy::input::gamepad::RawGamepadEvent::clone( + let output: Val = ::clone( &_self, ) .into(); @@ -777,10 +755,9 @@ impl ::bevy::app::Plugin for BevyInputScriptingPlugin { _self: Ref, other: Ref| { - let output: bool = ::bevy::input::gestures::PinchGesture::eq( - &_self, - &other, - ) + let output: bool = >::eq(&_self, &other) .into(); output }, @@ -788,7 +765,7 @@ impl ::bevy::app::Plugin for BevyInputScriptingPlugin { .overwrite_script_function( "clone", |_self: Ref| { - let output: Val = ::bevy::input::gestures::PinchGesture::clone( + let output: Val = ::clone( &_self, ) .into(); @@ -799,7 +776,7 @@ impl ::bevy::app::Plugin for BevyInputScriptingPlugin { .overwrite_script_function( "clone", |_self: Ref| { - let output: Val = ::bevy::input::gestures::RotationGesture::clone( + let output: Val = ::clone( &_self, ) .into(); @@ -812,10 +789,9 @@ impl ::bevy::app::Plugin for BevyInputScriptingPlugin { _self: Ref, other: Ref| { - let output: bool = ::bevy::input::gestures::RotationGesture::eq( - &_self, - &other, - ) + let output: bool = >::eq(&_self, &other) .into(); output }, @@ -827,10 +803,9 @@ impl ::bevy::app::Plugin for BevyInputScriptingPlugin { _self: Ref, other: Ref| { - let output: bool = ::bevy::input::gestures::DoubleTapGesture::eq( - &_self, - &other, - ) + let output: bool = >::eq(&_self, &other) .into(); output }, @@ -838,7 +813,7 @@ impl ::bevy::app::Plugin for BevyInputScriptingPlugin { .overwrite_script_function( "clone", |_self: Ref| { - let output: Val = ::bevy::input::gestures::DoubleTapGesture::clone( + let output: Val = ::clone( &_self, ) .into(); @@ -849,7 +824,7 @@ impl ::bevy::app::Plugin for BevyInputScriptingPlugin { .overwrite_script_function( "clone", |_self: Ref| { - let output: Val = ::bevy::input::gestures::PanGesture::clone( + let output: Val = ::clone( &_self, ) .into(); @@ -862,10 +837,9 @@ impl ::bevy::app::Plugin for BevyInputScriptingPlugin { _self: Ref, other: Ref| { - let output: bool = ::bevy::input::gestures::PanGesture::eq( - &_self, - &other, - ) + let output: bool = >::eq(&_self, &other) .into(); output }, @@ -874,7 +848,7 @@ impl ::bevy::app::Plugin for BevyInputScriptingPlugin { .overwrite_script_function( "clone", |_self: Ref| { - let output: Val = ::bevy::input::ButtonState::clone( + let output: Val = ::clone( &_self, ) .into(); @@ -884,7 +858,7 @@ impl ::bevy::app::Plugin for BevyInputScriptingPlugin { .overwrite_script_function( "assert_receiver_is_total_eq", |_self: Ref| { - let output: () = ::bevy::input::ButtonState::assert_receiver_is_total_eq( + let output: () = ::assert_receiver_is_total_eq( &_self, ) .into(); @@ -897,7 +871,9 @@ impl ::bevy::app::Plugin for BevyInputScriptingPlugin { _self: Ref, other: Ref| { - let output: bool = ::bevy::input::ButtonState::eq(&_self, &other) + let output: bool = >::eq(&_self, &other) .into(); output }, @@ -905,7 +881,7 @@ impl ::bevy::app::Plugin for BevyInputScriptingPlugin { .overwrite_script_function( "is_pressed", |_self: Ref| { - let output: bool = ::bevy::input::ButtonState::is_pressed(&_self) + let output: bool = bevy::input::ButtonState::is_pressed(&_self) .into(); output }, @@ -914,7 +890,7 @@ impl ::bevy::app::Plugin for BevyInputScriptingPlugin { .overwrite_script_function( "is_pressed", |_self: Ref, value: f32| { - let output: bool = ::bevy::input::gamepad::ButtonSettings::is_pressed( + let output: bool = bevy::input::gamepad::ButtonSettings::is_pressed( &_self, value, ) @@ -925,7 +901,7 @@ impl ::bevy::app::Plugin for BevyInputScriptingPlugin { .overwrite_script_function( "is_released", |_self: Ref, value: f32| { - let output: bool = ::bevy::input::gamepad::ButtonSettings::is_released( + let output: bool = bevy::input::gamepad::ButtonSettings::is_released( &_self, value, ) @@ -936,7 +912,7 @@ impl ::bevy::app::Plugin for BevyInputScriptingPlugin { .overwrite_script_function( "press_threshold", |_self: Ref| { - let output: f32 = ::bevy::input::gamepad::ButtonSettings::press_threshold( + let output: f32 = bevy::input::gamepad::ButtonSettings::press_threshold( &_self, ) .into(); @@ -946,7 +922,7 @@ impl ::bevy::app::Plugin for BevyInputScriptingPlugin { .overwrite_script_function( "set_press_threshold", |mut _self: Mut, value: f32| { - let output: f32 = ::bevy::input::gamepad::ButtonSettings::set_press_threshold( + let output: f32 = bevy::input::gamepad::ButtonSettings::set_press_threshold( &mut _self, value, ) @@ -957,7 +933,7 @@ impl ::bevy::app::Plugin for BevyInputScriptingPlugin { .overwrite_script_function( "release_threshold", |_self: Ref| { - let output: f32 = ::bevy::input::gamepad::ButtonSettings::release_threshold( + let output: f32 = bevy::input::gamepad::ButtonSettings::release_threshold( &_self, ) .into(); @@ -967,7 +943,7 @@ impl ::bevy::app::Plugin for BevyInputScriptingPlugin { .overwrite_script_function( "set_release_threshold", |mut _self: Mut, value: f32| { - let output: f32 = ::bevy::input::gamepad::ButtonSettings::set_release_threshold( + let output: f32 = bevy::input::gamepad::ButtonSettings::set_release_threshold( &mut _self, value, ) @@ -978,7 +954,7 @@ impl ::bevy::app::Plugin for BevyInputScriptingPlugin { .overwrite_script_function( "clone", |_self: Ref| { - let output: Val = ::bevy::input::gamepad::ButtonSettings::clone( + let output: Val = ::clone( &_self, ) .into(); @@ -991,10 +967,9 @@ impl ::bevy::app::Plugin for BevyInputScriptingPlugin { _self: Ref, other: Ref| { - let output: bool = ::bevy::input::gamepad::ButtonSettings::eq( - &_self, - &other, - ) + let output: bool = >::eq(&_self, &other) .into(); output }, @@ -1003,7 +978,7 @@ impl ::bevy::app::Plugin for BevyInputScriptingPlugin { .overwrite_script_function( "livezone_upperbound", |_self: Ref| { - let output: f32 = ::bevy::input::gamepad::AxisSettings::livezone_upperbound( + let output: f32 = bevy::input::gamepad::AxisSettings::livezone_upperbound( &_self, ) .into(); @@ -1013,7 +988,7 @@ impl ::bevy::app::Plugin for BevyInputScriptingPlugin { .overwrite_script_function( "set_livezone_upperbound", |mut _self: Mut, value: f32| { - let output: f32 = ::bevy::input::gamepad::AxisSettings::set_livezone_upperbound( + let output: f32 = bevy::input::gamepad::AxisSettings::set_livezone_upperbound( &mut _self, value, ) @@ -1024,7 +999,7 @@ impl ::bevy::app::Plugin for BevyInputScriptingPlugin { .overwrite_script_function( "deadzone_upperbound", |_self: Ref| { - let output: f32 = ::bevy::input::gamepad::AxisSettings::deadzone_upperbound( + let output: f32 = bevy::input::gamepad::AxisSettings::deadzone_upperbound( &_self, ) .into(); @@ -1034,7 +1009,7 @@ impl ::bevy::app::Plugin for BevyInputScriptingPlugin { .overwrite_script_function( "set_deadzone_upperbound", |mut _self: Mut, value: f32| { - let output: f32 = ::bevy::input::gamepad::AxisSettings::set_deadzone_upperbound( + let output: f32 = bevy::input::gamepad::AxisSettings::set_deadzone_upperbound( &mut _self, value, ) @@ -1045,7 +1020,7 @@ impl ::bevy::app::Plugin for BevyInputScriptingPlugin { .overwrite_script_function( "livezone_lowerbound", |_self: Ref| { - let output: f32 = ::bevy::input::gamepad::AxisSettings::livezone_lowerbound( + let output: f32 = bevy::input::gamepad::AxisSettings::livezone_lowerbound( &_self, ) .into(); @@ -1055,7 +1030,7 @@ impl ::bevy::app::Plugin for BevyInputScriptingPlugin { .overwrite_script_function( "set_livezone_lowerbound", |mut _self: Mut, value: f32| { - let output: f32 = ::bevy::input::gamepad::AxisSettings::set_livezone_lowerbound( + let output: f32 = bevy::input::gamepad::AxisSettings::set_livezone_lowerbound( &mut _self, value, ) @@ -1066,7 +1041,7 @@ impl ::bevy::app::Plugin for BevyInputScriptingPlugin { .overwrite_script_function( "deadzone_lowerbound", |_self: Ref| { - let output: f32 = ::bevy::input::gamepad::AxisSettings::deadzone_lowerbound( + let output: f32 = bevy::input::gamepad::AxisSettings::deadzone_lowerbound( &_self, ) .into(); @@ -1076,7 +1051,7 @@ impl ::bevy::app::Plugin for BevyInputScriptingPlugin { .overwrite_script_function( "set_deadzone_lowerbound", |mut _self: Mut, value: f32| { - let output: f32 = ::bevy::input::gamepad::AxisSettings::set_deadzone_lowerbound( + let output: f32 = bevy::input::gamepad::AxisSettings::set_deadzone_lowerbound( &mut _self, value, ) @@ -1087,7 +1062,7 @@ impl ::bevy::app::Plugin for BevyInputScriptingPlugin { .overwrite_script_function( "threshold", |_self: Ref| { - let output: f32 = ::bevy::input::gamepad::AxisSettings::threshold( + let output: f32 = bevy::input::gamepad::AxisSettings::threshold( &_self, ) .into(); @@ -1097,7 +1072,7 @@ impl ::bevy::app::Plugin for BevyInputScriptingPlugin { .overwrite_script_function( "set_threshold", |mut _self: Mut, value: f32| { - let output: f32 = ::bevy::input::gamepad::AxisSettings::set_threshold( + let output: f32 = bevy::input::gamepad::AxisSettings::set_threshold( &mut _self, value, ) @@ -1108,7 +1083,7 @@ impl ::bevy::app::Plugin for BevyInputScriptingPlugin { .overwrite_script_function( "clamp", |_self: Ref, new_value: f32| { - let output: f32 = ::bevy::input::gamepad::AxisSettings::clamp( + let output: f32 = bevy::input::gamepad::AxisSettings::clamp( &_self, new_value, ) @@ -1123,7 +1098,7 @@ impl ::bevy::app::Plugin for BevyInputScriptingPlugin { new_value: f32, old_value: std::option::Option| { - let output: std::option::Option = ::bevy::input::gamepad::AxisSettings::filter( + let output: std::option::Option = bevy::input::gamepad::AxisSettings::filter( &_self, new_value, old_value, @@ -1135,7 +1110,7 @@ impl ::bevy::app::Plugin for BevyInputScriptingPlugin { .overwrite_script_function( "clone", |_self: Ref| { - let output: Val = ::bevy::input::gamepad::AxisSettings::clone( + let output: Val = ::clone( &_self, ) .into(); @@ -1148,10 +1123,9 @@ impl ::bevy::app::Plugin for BevyInputScriptingPlugin { _self: Ref, other: Ref| { - let output: bool = ::bevy::input::gamepad::AxisSettings::eq( - &_self, - &other, - ) + let output: bool = >::eq(&_self, &other) .into(); output }, @@ -1160,7 +1134,7 @@ impl ::bevy::app::Plugin for BevyInputScriptingPlugin { .overwrite_script_function( "clone", |_self: Ref| { - let output: Val = ::bevy::input::gamepad::ButtonAxisSettings::clone( + let output: Val = ::clone( &_self, ) .into(); @@ -1174,7 +1148,7 @@ impl ::bevy::app::Plugin for BevyInputScriptingPlugin { new_value: f32, old_value: std::option::Option| { - let output: std::option::Option = ::bevy::input::gamepad::ButtonAxisSettings::filter( + let output: std::option::Option = bevy::input::gamepad::ButtonAxisSettings::filter( &_self, new_value, old_value, @@ -1187,7 +1161,7 @@ impl ::bevy::app::Plugin for BevyInputScriptingPlugin { .overwrite_script_function( "clone", |_self: Ref| { - let output: Val = ::bevy::input::gamepad::GamepadRumbleIntensity::clone( + let output: Val = ::clone( &_self, ) .into(); @@ -1200,10 +1174,9 @@ impl ::bevy::app::Plugin for BevyInputScriptingPlugin { _self: Ref, other: Ref| { - let output: bool = ::bevy::input::gamepad::GamepadRumbleIntensity::eq( - &_self, - &other, - ) + let output: bool = >::eq(&_self, &other) .into(); output }, @@ -1211,7 +1184,7 @@ impl ::bevy::app::Plugin for BevyInputScriptingPlugin { .overwrite_script_function( "weak_motor", |intensity: f32| { - let output: Val = ::bevy::input::gamepad::GamepadRumbleIntensity::weak_motor( + let output: Val = bevy::input::gamepad::GamepadRumbleIntensity::weak_motor( intensity, ) .into(); @@ -1221,7 +1194,7 @@ impl ::bevy::app::Plugin for BevyInputScriptingPlugin { .overwrite_script_function( "strong_motor", |intensity: f32| { - let output: Val = ::bevy::input::gamepad::GamepadRumbleIntensity::strong_motor( + let output: Val = bevy::input::gamepad::GamepadRumbleIntensity::strong_motor( intensity, ) .into(); @@ -1232,7 +1205,7 @@ impl ::bevy::app::Plugin for BevyInputScriptingPlugin { .overwrite_script_function( "assert_receiver_is_total_eq", |_self: Ref| { - let output: () = ::bevy::input::keyboard::Key::assert_receiver_is_total_eq( + let output: () = ::assert_receiver_is_total_eq( &_self, ) .into(); @@ -1242,7 +1215,7 @@ impl ::bevy::app::Plugin for BevyInputScriptingPlugin { .overwrite_script_function( "clone", |_self: Ref| { - let output: Val = ::bevy::input::keyboard::Key::clone( + let output: Val = ::clone( &_self, ) .into(); @@ -1255,7 +1228,9 @@ impl ::bevy::app::Plugin for BevyInputScriptingPlugin { _self: Ref, other: Ref| { - let output: bool = ::bevy::input::keyboard::Key::eq(&_self, &other) + let output: bool = >::eq(&_self, &other) .into(); output }, @@ -1264,7 +1239,7 @@ impl ::bevy::app::Plugin for BevyInputScriptingPlugin { .overwrite_script_function( "clone", |_self: Ref| { - let output: Val = ::bevy::input::keyboard::NativeKeyCode::clone( + let output: Val = ::clone( &_self, ) .into(); @@ -1274,7 +1249,7 @@ impl ::bevy::app::Plugin for BevyInputScriptingPlugin { .overwrite_script_function( "assert_receiver_is_total_eq", |_self: Ref| { - let output: () = ::bevy::input::keyboard::NativeKeyCode::assert_receiver_is_total_eq( + let output: () = ::assert_receiver_is_total_eq( &_self, ) .into(); @@ -1287,10 +1262,9 @@ impl ::bevy::app::Plugin for BevyInputScriptingPlugin { _self: Ref, other: Ref| { - let output: bool = ::bevy::input::keyboard::NativeKeyCode::eq( - &_self, - &other, - ) + let output: bool = >::eq(&_self, &other) .into(); output }, @@ -1302,10 +1276,9 @@ impl ::bevy::app::Plugin for BevyInputScriptingPlugin { _self: Ref, other: Ref| { - let output: bool = ::bevy::input::keyboard::NativeKey::eq( - &_self, - &other, - ) + let output: bool = >::eq(&_self, &other) .into(); output }, @@ -1313,7 +1286,7 @@ impl ::bevy::app::Plugin for BevyInputScriptingPlugin { .overwrite_script_function( "assert_receiver_is_total_eq", |_self: Ref| { - let output: () = ::bevy::input::keyboard::NativeKey::assert_receiver_is_total_eq( + let output: () = ::assert_receiver_is_total_eq( &_self, ) .into(); @@ -1323,7 +1296,7 @@ impl ::bevy::app::Plugin for BevyInputScriptingPlugin { .overwrite_script_function( "clone", |_self: Ref| { - let output: Val = ::bevy::input::keyboard::NativeKey::clone( + let output: Val = ::clone( &_self, ) .into(); @@ -1334,7 +1307,7 @@ impl ::bevy::app::Plugin for BevyInputScriptingPlugin { .overwrite_script_function( "assert_receiver_is_total_eq", |_self: Ref| { - let output: () = ::bevy::input::mouse::MouseScrollUnit::assert_receiver_is_total_eq( + let output: () = ::assert_receiver_is_total_eq( &_self, ) .into(); @@ -1344,7 +1317,7 @@ impl ::bevy::app::Plugin for BevyInputScriptingPlugin { .overwrite_script_function( "clone", |_self: Ref| { - let output: Val = ::bevy::input::mouse::MouseScrollUnit::clone( + let output: Val = ::clone( &_self, ) .into(); @@ -1357,10 +1330,9 @@ impl ::bevy::app::Plugin for BevyInputScriptingPlugin { _self: Ref, other: Ref| { - let output: bool = ::bevy::input::mouse::MouseScrollUnit::eq( - &_self, - &other, - ) + let output: bool = >::eq(&_self, &other) .into(); output }, @@ -1369,7 +1341,7 @@ impl ::bevy::app::Plugin for BevyInputScriptingPlugin { .overwrite_script_function( "clone", |_self: Ref| { - let output: Val = ::bevy::input::touch::TouchPhase::clone( + let output: Val = ::clone( &_self, ) .into(); @@ -1379,7 +1351,7 @@ impl ::bevy::app::Plugin for BevyInputScriptingPlugin { .overwrite_script_function( "assert_receiver_is_total_eq", |_self: Ref| { - let output: () = ::bevy::input::touch::TouchPhase::assert_receiver_is_total_eq( + let output: () = ::assert_receiver_is_total_eq( &_self, ) .into(); @@ -1392,10 +1364,9 @@ impl ::bevy::app::Plugin for BevyInputScriptingPlugin { _self: Ref, other: Ref| { - let output: bool = ::bevy::input::touch::TouchPhase::eq( - &_self, - &other, - ) + let output: bool = >::eq(&_self, &other) .into(); output }, @@ -1407,10 +1378,9 @@ impl ::bevy::app::Plugin for BevyInputScriptingPlugin { _self: Ref, other: Ref| { - let output: bool = ::bevy::input::touch::ForceTouch::eq( - &_self, - &other, - ) + let output: bool = >::eq(&_self, &other) .into(); output }, @@ -1418,7 +1388,7 @@ impl ::bevy::app::Plugin for BevyInputScriptingPlugin { .overwrite_script_function( "clone", |_self: Ref| { - let output: Val = ::bevy::input::touch::ForceTouch::clone( + let output: Val = ::clone( &_self, ) .into(); diff --git a/crates/bevy_mod_scripting_functions/src/bevy_bindings/bevy_math.rs b/crates/bevy_mod_scripting_functions/src/bevy_bindings/bevy_math.rs index 1f6746cc61..680453e866 100644 --- a/crates/bevy_mod_scripting_functions/src/bevy_bindings/bevy_math.rs +++ b/crates/bevy_mod_scripting_functions/src/bevy_bindings/bevy_math.rs @@ -16,7 +16,7 @@ impl ::bevy::app::Plugin for BevyMathScriptingPlugin { .overwrite_script_function( "clone", |_self: Ref| { - let output: Val = ::bevy::math::AspectRatio::clone( + let output: Val = ::clone( &_self, ) .into(); @@ -29,7 +29,9 @@ impl ::bevy::app::Plugin for BevyMathScriptingPlugin { _self: Ref, other: Ref| { - let output: bool = ::bevy::math::AspectRatio::eq(&_self, &other) + let output: bool = >::eq(&_self, &other) .into(); output }, @@ -37,14 +39,14 @@ impl ::bevy::app::Plugin for BevyMathScriptingPlugin { .overwrite_script_function( "ratio", |_self: Ref| { - let output: f32 = ::bevy::math::AspectRatio::ratio(&_self).into(); + let output: f32 = bevy::math::AspectRatio::ratio(&_self).into(); output }, ) .overwrite_script_function( "inverse", |_self: Ref| { - let output: Val = ::bevy::math::AspectRatio::inverse( + let output: Val = bevy::math::AspectRatio::inverse( &_self, ) .into(); @@ -54,7 +56,7 @@ impl ::bevy::app::Plugin for BevyMathScriptingPlugin { .overwrite_script_function( "is_landscape", |_self: Ref| { - let output: bool = ::bevy::math::AspectRatio::is_landscape(&_self) + let output: bool = bevy::math::AspectRatio::is_landscape(&_self) .into(); output }, @@ -62,7 +64,7 @@ impl ::bevy::app::Plugin for BevyMathScriptingPlugin { .overwrite_script_function( "is_portrait", |_self: Ref| { - let output: bool = ::bevy::math::AspectRatio::is_portrait(&_self) + let output: bool = bevy::math::AspectRatio::is_portrait(&_self) .into(); output }, @@ -70,8 +72,7 @@ impl ::bevy::app::Plugin for BevyMathScriptingPlugin { .overwrite_script_function( "is_square", |_self: Ref| { - let output: bool = ::bevy::math::AspectRatio::is_square(&_self) - .into(); + let output: bool = bevy::math::AspectRatio::is_square(&_self).into(); output }, ); @@ -79,7 +80,7 @@ impl ::bevy::app::Plugin for BevyMathScriptingPlugin { .overwrite_script_function( "clone", |_self: Ref| { - let output: Val = ::bevy::math::CompassOctant::clone( + let output: Val = ::clone( &_self, ) .into(); @@ -92,7 +93,9 @@ impl ::bevy::app::Plugin for BevyMathScriptingPlugin { _self: Ref, other: Ref| { - let output: bool = ::bevy::math::CompassOctant::eq(&_self, &other) + let output: bool = >::eq(&_self, &other) .into(); output }, @@ -100,7 +103,7 @@ impl ::bevy::app::Plugin for BevyMathScriptingPlugin { .overwrite_script_function( "assert_receiver_is_total_eq", |_self: Ref| { - let output: () = ::bevy::math::CompassOctant::assert_receiver_is_total_eq( + let output: () = ::assert_receiver_is_total_eq( &_self, ) .into(); @@ -114,7 +117,9 @@ impl ::bevy::app::Plugin for BevyMathScriptingPlugin { _self: Ref, other: Ref| { - let output: bool = ::bevy::math::CompassQuadrant::eq(&_self, &other) + let output: bool = >::eq(&_self, &other) .into(); output }, @@ -122,7 +127,7 @@ impl ::bevy::app::Plugin for BevyMathScriptingPlugin { .overwrite_script_function( "assert_receiver_is_total_eq", |_self: Ref| { - let output: () = ::bevy::math::CompassQuadrant::assert_receiver_is_total_eq( + let output: () = ::assert_receiver_is_total_eq( &_self, ) .into(); @@ -132,7 +137,7 @@ impl ::bevy::app::Plugin for BevyMathScriptingPlugin { .overwrite_script_function( "clone", |_self: Ref| { - let output: Val = ::bevy::math::CompassQuadrant::clone( + let output: Val = ::clone( &_self, ) .into(); @@ -143,7 +148,7 @@ impl ::bevy::app::Plugin for BevyMathScriptingPlugin { .overwrite_script_function( "from_rotation", |rotation: Val| { - let output: Val = ::bevy::math::Isometry2d::from_rotation( + let output: Val = bevy::math::Isometry2d::from_rotation( rotation.into_inner(), ) .into(); @@ -153,7 +158,7 @@ impl ::bevy::app::Plugin for BevyMathScriptingPlugin { .overwrite_script_function( "from_xy", |x: f32, y: f32| { - let output: Val = ::bevy::math::Isometry2d::from_xy( + let output: Val = bevy::math::Isometry2d::from_xy( x, y, ) @@ -164,7 +169,7 @@ impl ::bevy::app::Plugin for BevyMathScriptingPlugin { .overwrite_script_function( "inverse", |_self: Ref| { - let output: Val = ::bevy::math::Isometry2d::inverse( + let output: Val = bevy::math::Isometry2d::inverse( &_self, ) .into(); @@ -174,7 +179,7 @@ impl ::bevy::app::Plugin for BevyMathScriptingPlugin { .overwrite_script_function( "inverse_mul", |_self: Ref, rhs: Val| { - let output: Val = ::bevy::math::Isometry2d::inverse_mul( + let output: Val = bevy::math::Isometry2d::inverse_mul( &_self, rhs.into_inner(), ) @@ -185,7 +190,7 @@ impl ::bevy::app::Plugin for BevyMathScriptingPlugin { .overwrite_script_function( "clone", |_self: Ref| { - let output: Val = ::bevy::math::Isometry2d::clone( + let output: Val = ::clone( &_self, ) .into(); @@ -198,10 +203,9 @@ impl ::bevy::app::Plugin for BevyMathScriptingPlugin { _self: Val, rhs: Val| { - let output: Val = ::bevy::math::Isometry2d::mul( - _self.into_inner(), - rhs.into_inner(), - ) + let output: Val = >::mul(_self.into_inner(), rhs.into_inner()) .into(); output }, @@ -209,10 +213,9 @@ impl ::bevy::app::Plugin for BevyMathScriptingPlugin { .overwrite_script_function( "mul", |_self: Val, rhs: Val| { - let output: Val = ::bevy::math::Isometry2d::mul( - _self.into_inner(), - rhs.into_inner(), - ) + let output: Val = >::mul(_self.into_inner(), rhs.into_inner()) .into(); output }, @@ -220,7 +223,9 @@ impl ::bevy::app::Plugin for BevyMathScriptingPlugin { .overwrite_script_function( "eq", |_self: Ref, other: Ref| { - let output: bool = ::bevy::math::Isometry2d::eq(&_self, &other) + let output: bool = >::eq(&_self, &other) .into(); output }, @@ -232,10 +237,9 @@ impl ::bevy::app::Plugin for BevyMathScriptingPlugin { _self: Val, rhs: Val| { - let output: Val = ::bevy::math::Isometry3d::mul( - _self.into_inner(), - rhs.into_inner(), - ) + let output: Val = >::mul(_self.into_inner(), rhs.into_inner()) .into(); output }, @@ -243,7 +247,7 @@ impl ::bevy::app::Plugin for BevyMathScriptingPlugin { .overwrite_script_function( "from_xyz", |x: f32, y: f32, z: f32| { - let output: Val = ::bevy::math::Isometry3d::from_xyz( + let output: Val = bevy::math::Isometry3d::from_xyz( x, y, z, @@ -255,7 +259,7 @@ impl ::bevy::app::Plugin for BevyMathScriptingPlugin { .overwrite_script_function( "inverse", |_self: Ref| { - let output: Val = ::bevy::math::Isometry3d::inverse( + let output: Val = bevy::math::Isometry3d::inverse( &_self, ) .into(); @@ -265,7 +269,7 @@ impl ::bevy::app::Plugin for BevyMathScriptingPlugin { .overwrite_script_function( "inverse_mul", |_self: Ref, rhs: Val| { - let output: Val = ::bevy::math::Isometry3d::inverse_mul( + let output: Val = bevy::math::Isometry3d::inverse_mul( &_self, rhs.into_inner(), ) @@ -276,7 +280,7 @@ impl ::bevy::app::Plugin for BevyMathScriptingPlugin { .overwrite_script_function( "clone", |_self: Ref| { - let output: Val = ::bevy::math::Isometry3d::clone( + let output: Val = ::clone( &_self, ) .into(); @@ -286,10 +290,9 @@ impl ::bevy::app::Plugin for BevyMathScriptingPlugin { .overwrite_script_function( "mul", |_self: Val, rhs: Val| { - let output: Val = ::bevy::math::Isometry3d::mul( - _self.into_inner(), - rhs.into_inner(), - ) + let output: Val = >::mul(_self.into_inner(), rhs.into_inner()) .into(); output }, @@ -297,7 +300,9 @@ impl ::bevy::app::Plugin for BevyMathScriptingPlugin { .overwrite_script_function( "eq", |_self: Ref, other: Ref| { - let output: bool = ::bevy::math::Isometry3d::eq(&_self, &other) + let output: bool = >::eq(&_self, &other) .into(); output }, @@ -306,14 +311,17 @@ impl ::bevy::app::Plugin for BevyMathScriptingPlugin { .overwrite_script_function( "eq", |_self: Ref, other: Ref| { - let output: bool = ::bevy::math::Ray2d::eq(&_self, &other).into(); + let output: bool = >::eq(&_self, &other) + .into(); output }, ) .overwrite_script_function( "clone", |_self: Ref| { - let output: Val = ::bevy::math::Ray2d::clone( + let output: Val = ::clone( &_self, ) .into(); @@ -324,14 +332,17 @@ impl ::bevy::app::Plugin for BevyMathScriptingPlugin { .overwrite_script_function( "eq", |_self: Ref, other: Ref| { - let output: bool = ::bevy::math::Ray3d::eq(&_self, &other).into(); + let output: bool = >::eq(&_self, &other) + .into(); output }, ) .overwrite_script_function( "clone", |_self: Ref| { - let output: Val = ::bevy::math::Ray3d::clone( + let output: Val = ::clone( &_self, ) .into(); @@ -342,7 +353,10 @@ impl ::bevy::app::Plugin for BevyMathScriptingPlugin { .overwrite_script_function( "eq", |_self: Ref, other: Ref| { - let output: bool = ::bevy::math::Rot2::eq(&_self, &other).into(); + let output: bool = >::eq(&_self, &other) + .into(); output }, ) @@ -352,10 +366,9 @@ impl ::bevy::app::Plugin for BevyMathScriptingPlugin { _self: Val, direction: Val| { - let output: Val = ::bevy::math::Rot2::mul( - _self.into_inner(), - direction.into_inner(), - ) + let output: Val = >::mul(_self.into_inner(), direction.into_inner()) .into(); output }, @@ -363,10 +376,9 @@ impl ::bevy::app::Plugin for BevyMathScriptingPlugin { .overwrite_script_function( "mul", |_self: Val, rhs: Val| { - let output: Val = ::bevy::math::Rot2::mul( - _self.into_inner(), - rhs.into_inner(), - ) + let output: Val = >::mul(_self.into_inner(), rhs.into_inner()) .into(); output }, @@ -374,7 +386,7 @@ impl ::bevy::app::Plugin for BevyMathScriptingPlugin { .overwrite_script_function( "radians", |radians: f32| { - let output: Val = ::bevy::math::Rot2::radians( + let output: Val = bevy::math::Rot2::radians( radians, ) .into(); @@ -384,7 +396,7 @@ impl ::bevy::app::Plugin for BevyMathScriptingPlugin { .overwrite_script_function( "degrees", |degrees: f32| { - let output: Val = ::bevy::math::Rot2::degrees( + let output: Val = bevy::math::Rot2::degrees( degrees, ) .into(); @@ -394,7 +406,7 @@ impl ::bevy::app::Plugin for BevyMathScriptingPlugin { .overwrite_script_function( "turn_fraction", |fraction: f32| { - let output: Val = ::bevy::math::Rot2::turn_fraction( + let output: Val = bevy::math::Rot2::turn_fraction( fraction, ) .into(); @@ -404,7 +416,7 @@ impl ::bevy::app::Plugin for BevyMathScriptingPlugin { .overwrite_script_function( "from_sin_cos", |sin: f32, cos: f32| { - let output: Val = ::bevy::math::Rot2::from_sin_cos( + let output: Val = bevy::math::Rot2::from_sin_cos( sin, cos, ) @@ -415,7 +427,7 @@ impl ::bevy::app::Plugin for BevyMathScriptingPlugin { .overwrite_script_function( "as_radians", |_self: Val| { - let output: f32 = ::bevy::math::Rot2::as_radians(_self.into_inner()) + let output: f32 = bevy::math::Rot2::as_radians(_self.into_inner()) .into(); output }, @@ -423,7 +435,7 @@ impl ::bevy::app::Plugin for BevyMathScriptingPlugin { .overwrite_script_function( "as_degrees", |_self: Val| { - let output: f32 = ::bevy::math::Rot2::as_degrees(_self.into_inner()) + let output: f32 = bevy::math::Rot2::as_degrees(_self.into_inner()) .into(); output }, @@ -431,7 +443,7 @@ impl ::bevy::app::Plugin for BevyMathScriptingPlugin { .overwrite_script_function( "as_turn_fraction", |_self: Val| { - let output: f32 = ::bevy::math::Rot2::as_turn_fraction( + let output: f32 = bevy::math::Rot2::as_turn_fraction( _self.into_inner(), ) .into(); @@ -441,7 +453,7 @@ impl ::bevy::app::Plugin for BevyMathScriptingPlugin { .overwrite_script_function( "sin_cos", |_self: Val| { - let output: (f32, f32) = ::bevy::math::Rot2::sin_cos( + let output: (f32, f32) = bevy::math::Rot2::sin_cos( _self.into_inner(), ) .into(); @@ -451,7 +463,7 @@ impl ::bevy::app::Plugin for BevyMathScriptingPlugin { .overwrite_script_function( "length", |_self: Val| { - let output: f32 = ::bevy::math::Rot2::length(_self.into_inner()) + let output: f32 = bevy::math::Rot2::length(_self.into_inner()) .into(); output }, @@ -459,7 +471,7 @@ impl ::bevy::app::Plugin for BevyMathScriptingPlugin { .overwrite_script_function( "length_squared", |_self: Val| { - let output: f32 = ::bevy::math::Rot2::length_squared( + let output: f32 = bevy::math::Rot2::length_squared( _self.into_inner(), ) .into(); @@ -469,9 +481,7 @@ impl ::bevy::app::Plugin for BevyMathScriptingPlugin { .overwrite_script_function( "length_recip", |_self: Val| { - let output: f32 = ::bevy::math::Rot2::length_recip( - _self.into_inner(), - ) + let output: f32 = bevy::math::Rot2::length_recip(_self.into_inner()) .into(); output }, @@ -479,7 +489,7 @@ impl ::bevy::app::Plugin for BevyMathScriptingPlugin { .overwrite_script_function( "normalize", |_self: Val| { - let output: Val = ::bevy::math::Rot2::normalize( + let output: Val = bevy::math::Rot2::normalize( _self.into_inner(), ) .into(); @@ -489,7 +499,7 @@ impl ::bevy::app::Plugin for BevyMathScriptingPlugin { .overwrite_script_function( "fast_renormalize", |_self: Val| { - let output: Val = ::bevy::math::Rot2::fast_renormalize( + let output: Val = bevy::math::Rot2::fast_renormalize( _self.into_inner(), ) .into(); @@ -499,7 +509,7 @@ impl ::bevy::app::Plugin for BevyMathScriptingPlugin { .overwrite_script_function( "is_finite", |_self: Val| { - let output: bool = ::bevy::math::Rot2::is_finite(_self.into_inner()) + let output: bool = bevy::math::Rot2::is_finite(_self.into_inner()) .into(); output }, @@ -507,7 +517,7 @@ impl ::bevy::app::Plugin for BevyMathScriptingPlugin { .overwrite_script_function( "is_nan", |_self: Val| { - let output: bool = ::bevy::math::Rot2::is_nan(_self.into_inner()) + let output: bool = bevy::math::Rot2::is_nan(_self.into_inner()) .into(); output }, @@ -515,7 +525,7 @@ impl ::bevy::app::Plugin for BevyMathScriptingPlugin { .overwrite_script_function( "is_normalized", |_self: Val| { - let output: bool = ::bevy::math::Rot2::is_normalized( + let output: bool = bevy::math::Rot2::is_normalized( _self.into_inner(), ) .into(); @@ -525,7 +535,7 @@ impl ::bevy::app::Plugin for BevyMathScriptingPlugin { .overwrite_script_function( "is_near_identity", |_self: Val| { - let output: bool = ::bevy::math::Rot2::is_near_identity( + let output: bool = bevy::math::Rot2::is_near_identity( _self.into_inner(), ) .into(); @@ -535,7 +545,7 @@ impl ::bevy::app::Plugin for BevyMathScriptingPlugin { .overwrite_script_function( "angle_between", |_self: Val, other: Val| { - let output: f32 = ::bevy::math::Rot2::angle_between( + let output: f32 = bevy::math::Rot2::angle_between( _self.into_inner(), other.into_inner(), ) @@ -546,7 +556,7 @@ impl ::bevy::app::Plugin for BevyMathScriptingPlugin { .overwrite_script_function( "angle_to", |_self: Val, other: Val| { - let output: f32 = ::bevy::math::Rot2::angle_to( + let output: f32 = bevy::math::Rot2::angle_to( _self.into_inner(), other.into_inner(), ) @@ -557,7 +567,7 @@ impl ::bevy::app::Plugin for BevyMathScriptingPlugin { .overwrite_script_function( "inverse", |_self: Val| { - let output: Val = ::bevy::math::Rot2::inverse( + let output: Val = bevy::math::Rot2::inverse( _self.into_inner(), ) .into(); @@ -567,7 +577,7 @@ impl ::bevy::app::Plugin for BevyMathScriptingPlugin { .overwrite_script_function( "nlerp", |_self: Val, end: Val, s: f32| { - let output: Val = ::bevy::math::Rot2::nlerp( + let output: Val = bevy::math::Rot2::nlerp( _self.into_inner(), end.into_inner(), s, @@ -579,7 +589,7 @@ impl ::bevy::app::Plugin for BevyMathScriptingPlugin { .overwrite_script_function( "slerp", |_self: Val, end: Val, s: f32| { - let output: Val = ::bevy::math::Rot2::slerp( + let output: Val = bevy::math::Rot2::slerp( _self.into_inner(), end.into_inner(), s, @@ -591,7 +601,9 @@ impl ::bevy::app::Plugin for BevyMathScriptingPlugin { .overwrite_script_function( "clone", |_self: Ref| { - let output: Val = ::bevy::math::Rot2::clone(&_self) + let output: Val = ::clone( + &_self, + ) .into(); output }, @@ -600,7 +612,7 @@ impl ::bevy::app::Plugin for BevyMathScriptingPlugin { .overwrite_script_function( "neg", |_self: Val| { - let output: Val = ::bevy::math::prelude::Dir2::neg( + let output: Val = ::neg( _self.into_inner(), ) .into(); @@ -610,7 +622,7 @@ impl ::bevy::app::Plugin for BevyMathScriptingPlugin { .overwrite_script_function( "clone", |_self: Ref| { - let output: Val = ::bevy::math::prelude::Dir2::clone( + let output: Val = ::clone( &_self, ) .into(); @@ -623,7 +635,9 @@ impl ::bevy::app::Plugin for BevyMathScriptingPlugin { _self: Ref, other: Ref| { - let output: bool = ::bevy::math::prelude::Dir2::eq(&_self, &other) + let output: bool = >::eq(&_self, &other) .into(); output }, @@ -631,7 +645,7 @@ impl ::bevy::app::Plugin for BevyMathScriptingPlugin { .overwrite_script_function( "from_xy_unchecked", |x: f32, y: f32| { - let output: Val = ::bevy::math::prelude::Dir2::from_xy_unchecked( + let output: Val = bevy::math::prelude::Dir2::from_xy_unchecked( x, y, ) @@ -646,7 +660,7 @@ impl ::bevy::app::Plugin for BevyMathScriptingPlugin { rhs: Val, s: f32| { - let output: Val = ::bevy::math::prelude::Dir2::slerp( + let output: Val = bevy::math::prelude::Dir2::slerp( _self.into_inner(), rhs.into_inner(), s, @@ -661,7 +675,7 @@ impl ::bevy::app::Plugin for BevyMathScriptingPlugin { _self: Val, other: Val| { - let output: Val = ::bevy::math::prelude::Dir2::rotation_to( + let output: Val = bevy::math::prelude::Dir2::rotation_to( _self.into_inner(), other.into_inner(), ) @@ -675,7 +689,7 @@ impl ::bevy::app::Plugin for BevyMathScriptingPlugin { _self: Val, other: Val| { - let output: Val = ::bevy::math::prelude::Dir2::rotation_from( + let output: Val = bevy::math::prelude::Dir2::rotation_from( _self.into_inner(), other.into_inner(), ) @@ -686,7 +700,7 @@ impl ::bevy::app::Plugin for BevyMathScriptingPlugin { .overwrite_script_function( "rotation_from_x", |_self: Val| { - let output: Val = ::bevy::math::prelude::Dir2::rotation_from_x( + let output: Val = bevy::math::prelude::Dir2::rotation_from_x( _self.into_inner(), ) .into(); @@ -696,7 +710,7 @@ impl ::bevy::app::Plugin for BevyMathScriptingPlugin { .overwrite_script_function( "rotation_to_x", |_self: Val| { - let output: Val = ::bevy::math::prelude::Dir2::rotation_to_x( + let output: Val = bevy::math::prelude::Dir2::rotation_to_x( _self.into_inner(), ) .into(); @@ -706,7 +720,7 @@ impl ::bevy::app::Plugin for BevyMathScriptingPlugin { .overwrite_script_function( "rotation_from_y", |_self: Val| { - let output: Val = ::bevy::math::prelude::Dir2::rotation_from_y( + let output: Val = bevy::math::prelude::Dir2::rotation_from_y( _self.into_inner(), ) .into(); @@ -716,7 +730,7 @@ impl ::bevy::app::Plugin for BevyMathScriptingPlugin { .overwrite_script_function( "rotation_to_y", |_self: Val| { - let output: Val = ::bevy::math::prelude::Dir2::rotation_to_y( + let output: Val = bevy::math::prelude::Dir2::rotation_to_y( _self.into_inner(), ) .into(); @@ -726,7 +740,7 @@ impl ::bevy::app::Plugin for BevyMathScriptingPlugin { .overwrite_script_function( "fast_renormalize", |_self: Val| { - let output: Val = ::bevy::math::prelude::Dir2::fast_renormalize( + let output: Val = bevy::math::prelude::Dir2::fast_renormalize( _self.into_inner(), ) .into(); @@ -737,7 +751,7 @@ impl ::bevy::app::Plugin for BevyMathScriptingPlugin { .overwrite_script_function( "clone", |_self: Ref| { - let output: Val = ::bevy::math::prelude::Dir3::clone( + let output: Val = ::clone( &_self, ) .into(); @@ -747,7 +761,7 @@ impl ::bevy::app::Plugin for BevyMathScriptingPlugin { .overwrite_script_function( "neg", |_self: Val| { - let output: Val = ::bevy::math::prelude::Dir3::neg( + let output: Val = ::neg( _self.into_inner(), ) .into(); @@ -760,7 +774,9 @@ impl ::bevy::app::Plugin for BevyMathScriptingPlugin { _self: Ref, other: Ref| { - let output: bool = ::bevy::math::prelude::Dir3::eq(&_self, &other) + let output: bool = >::eq(&_self, &other) .into(); output }, @@ -768,7 +784,7 @@ impl ::bevy::app::Plugin for BevyMathScriptingPlugin { .overwrite_script_function( "from_xyz_unchecked", |x: f32, y: f32, z: f32| { - let output: Val = ::bevy::math::prelude::Dir3::from_xyz_unchecked( + let output: Val = bevy::math::prelude::Dir3::from_xyz_unchecked( x, y, z, @@ -784,7 +800,7 @@ impl ::bevy::app::Plugin for BevyMathScriptingPlugin { rhs: Val, s: f32| { - let output: Val = ::bevy::math::prelude::Dir3::slerp( + let output: Val = bevy::math::prelude::Dir3::slerp( _self.into_inner(), rhs.into_inner(), s, @@ -796,7 +812,7 @@ impl ::bevy::app::Plugin for BevyMathScriptingPlugin { .overwrite_script_function( "fast_renormalize", |_self: Val| { - let output: Val = ::bevy::math::prelude::Dir3::fast_renormalize( + let output: Val = bevy::math::prelude::Dir3::fast_renormalize( _self.into_inner(), ) .into(); @@ -807,7 +823,7 @@ impl ::bevy::app::Plugin for BevyMathScriptingPlugin { .overwrite_script_function( "neg", |_self: Val| { - let output: Val = ::bevy::math::prelude::Dir3A::neg( + let output: Val = ::neg( _self.into_inner(), ) .into(); @@ -817,7 +833,7 @@ impl ::bevy::app::Plugin for BevyMathScriptingPlugin { .overwrite_script_function( "from_xyz_unchecked", |x: f32, y: f32, z: f32| { - let output: Val = ::bevy::math::prelude::Dir3A::from_xyz_unchecked( + let output: Val = bevy::math::prelude::Dir3A::from_xyz_unchecked( x, y, z, @@ -833,7 +849,7 @@ impl ::bevy::app::Plugin for BevyMathScriptingPlugin { rhs: Val, s: f32| { - let output: Val = ::bevy::math::prelude::Dir3A::slerp( + let output: Val = bevy::math::prelude::Dir3A::slerp( _self.into_inner(), rhs.into_inner(), s, @@ -845,7 +861,7 @@ impl ::bevy::app::Plugin for BevyMathScriptingPlugin { .overwrite_script_function( "fast_renormalize", |_self: Val| { - let output: Val = ::bevy::math::prelude::Dir3A::fast_renormalize( + let output: Val = bevy::math::prelude::Dir3A::fast_renormalize( _self.into_inner(), ) .into(); @@ -855,7 +871,7 @@ impl ::bevy::app::Plugin for BevyMathScriptingPlugin { .overwrite_script_function( "clone", |_self: Ref| { - let output: Val = ::bevy::math::prelude::Dir3A::clone( + let output: Val = ::clone( &_self, ) .into(); @@ -868,7 +884,9 @@ impl ::bevy::app::Plugin for BevyMathScriptingPlugin { _self: Ref, other: Ref| { - let output: bool = ::bevy::math::prelude::Dir3A::eq(&_self, &other) + let output: bool = >::eq(&_self, &other) .into(); output }, @@ -880,7 +898,9 @@ impl ::bevy::app::Plugin for BevyMathScriptingPlugin { _self: Ref, other: Ref| { - let output: bool = ::bevy::math::prelude::IRect::eq(&_self, &other) + let output: bool = >::eq(&_self, &other) .into(); output }, @@ -888,7 +908,7 @@ impl ::bevy::app::Plugin for BevyMathScriptingPlugin { .overwrite_script_function( "assert_receiver_is_total_eq", |_self: Ref| { - let output: () = ::bevy::math::prelude::IRect::assert_receiver_is_total_eq( + let output: () = ::assert_receiver_is_total_eq( &_self, ) .into(); @@ -898,7 +918,7 @@ impl ::bevy::app::Plugin for BevyMathScriptingPlugin { .overwrite_script_function( "new", |x0: i32, y0: i32, x1: i32, y1: i32| { - let output: Val = ::bevy::math::prelude::IRect::new( + let output: Val = bevy::math::prelude::IRect::new( x0, y0, x1, @@ -911,7 +931,7 @@ impl ::bevy::app::Plugin for BevyMathScriptingPlugin { .overwrite_script_function( "is_empty", |_self: Ref| { - let output: bool = ::bevy::math::prelude::IRect::is_empty(&_self) + let output: bool = bevy::math::prelude::IRect::is_empty(&_self) .into(); output }, @@ -919,15 +939,14 @@ impl ::bevy::app::Plugin for BevyMathScriptingPlugin { .overwrite_script_function( "width", |_self: Ref| { - let output: i32 = ::bevy::math::prelude::IRect::width(&_self).into(); + let output: i32 = bevy::math::prelude::IRect::width(&_self).into(); output }, ) .overwrite_script_function( "height", |_self: Ref| { - let output: i32 = ::bevy::math::prelude::IRect::height(&_self) - .into(); + let output: i32 = bevy::math::prelude::IRect::height(&_self).into(); output }, ) @@ -937,7 +956,7 @@ impl ::bevy::app::Plugin for BevyMathScriptingPlugin { _self: Ref, other: Val| { - let output: Val = ::bevy::math::prelude::IRect::union( + let output: Val = bevy::math::prelude::IRect::union( &_self, other.into_inner(), ) @@ -951,7 +970,7 @@ impl ::bevy::app::Plugin for BevyMathScriptingPlugin { _self: Ref, other: Val| { - let output: Val = ::bevy::math::prelude::IRect::intersect( + let output: Val = bevy::math::prelude::IRect::intersect( &_self, other.into_inner(), ) @@ -962,7 +981,7 @@ impl ::bevy::app::Plugin for BevyMathScriptingPlugin { .overwrite_script_function( "inflate", |_self: Ref, expansion: i32| { - let output: Val = ::bevy::math::prelude::IRect::inflate( + let output: Val = bevy::math::prelude::IRect::inflate( &_self, expansion, ) @@ -973,7 +992,7 @@ impl ::bevy::app::Plugin for BevyMathScriptingPlugin { .overwrite_script_function( "as_rect", |_self: Ref| { - let output: Val = ::bevy::math::prelude::IRect::as_rect( + let output: Val = bevy::math::prelude::IRect::as_rect( &_self, ) .into(); @@ -983,7 +1002,7 @@ impl ::bevy::app::Plugin for BevyMathScriptingPlugin { .overwrite_script_function( "as_urect", |_self: Ref| { - let output: Val = ::bevy::math::prelude::IRect::as_urect( + let output: Val = bevy::math::prelude::IRect::as_urect( &_self, ) .into(); @@ -993,7 +1012,7 @@ impl ::bevy::app::Plugin for BevyMathScriptingPlugin { .overwrite_script_function( "clone", |_self: Ref| { - let output: Val = ::bevy::math::prelude::IRect::clone( + let output: Val = ::clone( &_self, ) .into(); @@ -1004,7 +1023,7 @@ impl ::bevy::app::Plugin for BevyMathScriptingPlugin { .overwrite_script_function( "new", |x0: f32, y0: f32, x1: f32, y1: f32| { - let output: Val = ::bevy::math::prelude::Rect::new( + let output: Val = bevy::math::prelude::Rect::new( x0, y0, x1, @@ -1017,7 +1036,7 @@ impl ::bevy::app::Plugin for BevyMathScriptingPlugin { .overwrite_script_function( "is_empty", |_self: Ref| { - let output: bool = ::bevy::math::prelude::Rect::is_empty(&_self) + let output: bool = bevy::math::prelude::Rect::is_empty(&_self) .into(); output }, @@ -1025,14 +1044,14 @@ impl ::bevy::app::Plugin for BevyMathScriptingPlugin { .overwrite_script_function( "width", |_self: Ref| { - let output: f32 = ::bevy::math::prelude::Rect::width(&_self).into(); + let output: f32 = bevy::math::prelude::Rect::width(&_self).into(); output }, ) .overwrite_script_function( "height", |_self: Ref| { - let output: f32 = ::bevy::math::prelude::Rect::height(&_self).into(); + let output: f32 = bevy::math::prelude::Rect::height(&_self).into(); output }, ) @@ -1042,7 +1061,7 @@ impl ::bevy::app::Plugin for BevyMathScriptingPlugin { _self: Ref, other: Val| { - let output: Val = ::bevy::math::prelude::Rect::union( + let output: Val = bevy::math::prelude::Rect::union( &_self, other.into_inner(), ) @@ -1056,7 +1075,7 @@ impl ::bevy::app::Plugin for BevyMathScriptingPlugin { _self: Ref, other: Val| { - let output: Val = ::bevy::math::prelude::Rect::intersect( + let output: Val = bevy::math::prelude::Rect::intersect( &_self, other.into_inner(), ) @@ -1067,7 +1086,7 @@ impl ::bevy::app::Plugin for BevyMathScriptingPlugin { .overwrite_script_function( "inflate", |_self: Ref, expansion: f32| { - let output: Val = ::bevy::math::prelude::Rect::inflate( + let output: Val = bevy::math::prelude::Rect::inflate( &_self, expansion, ) @@ -1081,7 +1100,7 @@ impl ::bevy::app::Plugin for BevyMathScriptingPlugin { _self: Ref, other: Val| { - let output: Val = ::bevy::math::prelude::Rect::normalize( + let output: Val = bevy::math::prelude::Rect::normalize( &_self, other.into_inner(), ) @@ -1092,7 +1111,7 @@ impl ::bevy::app::Plugin for BevyMathScriptingPlugin { .overwrite_script_function( "as_irect", |_self: Ref| { - let output: Val = ::bevy::math::prelude::Rect::as_irect( + let output: Val = bevy::math::prelude::Rect::as_irect( &_self, ) .into(); @@ -1102,7 +1121,7 @@ impl ::bevy::app::Plugin for BevyMathScriptingPlugin { .overwrite_script_function( "as_urect", |_self: Ref| { - let output: Val = ::bevy::math::prelude::Rect::as_urect( + let output: Val = bevy::math::prelude::Rect::as_urect( &_self, ) .into(); @@ -1112,7 +1131,7 @@ impl ::bevy::app::Plugin for BevyMathScriptingPlugin { .overwrite_script_function( "clone", |_self: Ref| { - let output: Val = ::bevy::math::prelude::Rect::clone( + let output: Val = ::clone( &_self, ) .into(); @@ -1125,7 +1144,9 @@ impl ::bevy::app::Plugin for BevyMathScriptingPlugin { _self: Ref, other: Ref| { - let output: bool = ::bevy::math::prelude::Rect::eq(&_self, &other) + let output: bool = >::eq(&_self, &other) .into(); output }, @@ -1134,7 +1155,7 @@ impl ::bevy::app::Plugin for BevyMathScriptingPlugin { .overwrite_script_function( "new", |x0: u32, y0: u32, x1: u32, y1: u32| { - let output: Val = ::bevy::math::prelude::URect::new( + let output: Val = bevy::math::prelude::URect::new( x0, y0, x1, @@ -1147,7 +1168,7 @@ impl ::bevy::app::Plugin for BevyMathScriptingPlugin { .overwrite_script_function( "is_empty", |_self: Ref| { - let output: bool = ::bevy::math::prelude::URect::is_empty(&_self) + let output: bool = bevy::math::prelude::URect::is_empty(&_self) .into(); output }, @@ -1155,15 +1176,14 @@ impl ::bevy::app::Plugin for BevyMathScriptingPlugin { .overwrite_script_function( "width", |_self: Ref| { - let output: u32 = ::bevy::math::prelude::URect::width(&_self).into(); + let output: u32 = bevy::math::prelude::URect::width(&_self).into(); output }, ) .overwrite_script_function( "height", |_self: Ref| { - let output: u32 = ::bevy::math::prelude::URect::height(&_self) - .into(); + let output: u32 = bevy::math::prelude::URect::height(&_self).into(); output }, ) @@ -1173,7 +1193,7 @@ impl ::bevy::app::Plugin for BevyMathScriptingPlugin { _self: Ref, other: Val| { - let output: Val = ::bevy::math::prelude::URect::union( + let output: Val = bevy::math::prelude::URect::union( &_self, other.into_inner(), ) @@ -1187,7 +1207,7 @@ impl ::bevy::app::Plugin for BevyMathScriptingPlugin { _self: Ref, other: Val| { - let output: Val = ::bevy::math::prelude::URect::intersect( + let output: Val = bevy::math::prelude::URect::intersect( &_self, other.into_inner(), ) @@ -1198,7 +1218,7 @@ impl ::bevy::app::Plugin for BevyMathScriptingPlugin { .overwrite_script_function( "inflate", |_self: Ref, expansion: i32| { - let output: Val = ::bevy::math::prelude::URect::inflate( + let output: Val = bevy::math::prelude::URect::inflate( &_self, expansion, ) @@ -1209,7 +1229,7 @@ impl ::bevy::app::Plugin for BevyMathScriptingPlugin { .overwrite_script_function( "as_rect", |_self: Ref| { - let output: Val = ::bevy::math::prelude::URect::as_rect( + let output: Val = bevy::math::prelude::URect::as_rect( &_self, ) .into(); @@ -1219,7 +1239,7 @@ impl ::bevy::app::Plugin for BevyMathScriptingPlugin { .overwrite_script_function( "as_irect", |_self: Ref| { - let output: Val = ::bevy::math::prelude::URect::as_irect( + let output: Val = bevy::math::prelude::URect::as_irect( &_self, ) .into(); @@ -1229,7 +1249,7 @@ impl ::bevy::app::Plugin for BevyMathScriptingPlugin { .overwrite_script_function( "assert_receiver_is_total_eq", |_self: Ref| { - let output: () = ::bevy::math::prelude::URect::assert_receiver_is_total_eq( + let output: () = ::assert_receiver_is_total_eq( &_self, ) .into(); @@ -1242,7 +1262,9 @@ impl ::bevy::app::Plugin for BevyMathScriptingPlugin { _self: Ref, other: Ref| { - let output: bool = ::bevy::math::prelude::URect::eq(&_self, &other) + let output: bool = >::eq(&_self, &other) .into(); output }, @@ -1250,7 +1272,7 @@ impl ::bevy::app::Plugin for BevyMathScriptingPlugin { .overwrite_script_function( "clone", |_self: Ref| { - let output: Val = ::bevy::math::prelude::URect::clone( + let output: Val = ::clone( &_self, ) .into(); @@ -1262,7 +1284,7 @@ impl ::bevy::app::Plugin for BevyMathScriptingPlugin { .overwrite_script_function( "bounding_circle", |_self: Ref| { - let output: Val = ::bevy::math::bounding::Aabb2d::bounding_circle( + let output: Val = bevy::math::bounding::Aabb2d::bounding_circle( &_self, ) .into(); @@ -1272,7 +1294,7 @@ impl ::bevy::app::Plugin for BevyMathScriptingPlugin { .overwrite_script_function( "clone", |_self: Ref| { - let output: Val = ::bevy::math::bounding::Aabb2d::clone( + let output: Val = ::clone( &_self, ) .into(); @@ -1283,7 +1305,7 @@ impl ::bevy::app::Plugin for BevyMathScriptingPlugin { .overwrite_script_function( "clone", |_self: Ref| { - let output: Val = ::bevy::math::bounding::BoundingCircle::clone( + let output: Val = ::clone( &_self, ) .into(); @@ -1293,7 +1315,7 @@ impl ::bevy::app::Plugin for BevyMathScriptingPlugin { .overwrite_script_function( "radius", |_self: Ref| { - let output: f32 = ::bevy::math::bounding::BoundingCircle::radius( + let output: f32 = bevy::math::bounding::BoundingCircle::radius( &_self, ) .into(); @@ -1303,7 +1325,7 @@ impl ::bevy::app::Plugin for BevyMathScriptingPlugin { .overwrite_script_function( "aabb_2d", |_self: Ref| { - let output: Val = ::bevy::math::bounding::BoundingCircle::aabb_2d( + let output: Val = bevy::math::bounding::BoundingCircle::aabb_2d( &_self, ) .into(); @@ -1314,7 +1336,7 @@ impl ::bevy::app::Plugin for BevyMathScriptingPlugin { .overwrite_script_function( "clone", |_self: Ref| { - let output: Val = ::bevy::math::primitives::Circle::clone( + let output: Val = ::clone( &_self, ) .into(); @@ -1327,10 +1349,9 @@ impl ::bevy::app::Plugin for BevyMathScriptingPlugin { _self: Ref, other: Ref| { - let output: bool = ::bevy::math::primitives::Circle::eq( - &_self, - &other, - ) + let output: bool = >::eq(&_self, &other) .into(); output }, @@ -1338,7 +1359,7 @@ impl ::bevy::app::Plugin for BevyMathScriptingPlugin { .overwrite_script_function( "new", |radius: f32| { - let output: Val = ::bevy::math::primitives::Circle::new( + let output: Val = bevy::math::primitives::Circle::new( radius, ) .into(); @@ -1348,7 +1369,7 @@ impl ::bevy::app::Plugin for BevyMathScriptingPlugin { .overwrite_script_function( "diameter", |_self: Ref| { - let output: f32 = ::bevy::math::primitives::Circle::diameter(&_self) + let output: f32 = bevy::math::primitives::Circle::diameter(&_self) .into(); output }, @@ -1357,7 +1378,7 @@ impl ::bevy::app::Plugin for BevyMathScriptingPlugin { .overwrite_script_function( "new", |inner_radius: f32, outer_radius: f32| { - let output: Val = ::bevy::math::primitives::Annulus::new( + let output: Val = bevy::math::primitives::Annulus::new( inner_radius, outer_radius, ) @@ -1368,7 +1389,7 @@ impl ::bevy::app::Plugin for BevyMathScriptingPlugin { .overwrite_script_function( "diameter", |_self: Ref| { - let output: f32 = ::bevy::math::primitives::Annulus::diameter(&_self) + let output: f32 = bevy::math::primitives::Annulus::diameter(&_self) .into(); output }, @@ -1376,9 +1397,7 @@ impl ::bevy::app::Plugin for BevyMathScriptingPlugin { .overwrite_script_function( "thickness", |_self: Ref| { - let output: f32 = ::bevy::math::primitives::Annulus::thickness( - &_self, - ) + let output: f32 = bevy::math::primitives::Annulus::thickness(&_self) .into(); output }, @@ -1386,7 +1405,7 @@ impl ::bevy::app::Plugin for BevyMathScriptingPlugin { .overwrite_script_function( "clone", |_self: Ref| { - let output: Val = ::bevy::math::primitives::Annulus::clone( + let output: Val = ::clone( &_self, ) .into(); @@ -1399,10 +1418,9 @@ impl ::bevy::app::Plugin for BevyMathScriptingPlugin { _self: Ref, other: Ref| { - let output: bool = ::bevy::math::primitives::Annulus::eq( - &_self, - &other, - ) + let output: bool = >::eq(&_self, &other) .into(); output }, @@ -1411,7 +1429,7 @@ impl ::bevy::app::Plugin for BevyMathScriptingPlugin { .overwrite_script_function( "new", |radius: f32, half_angle: f32| { - let output: Val = ::bevy::math::primitives::Arc2d::new( + let output: Val = bevy::math::primitives::Arc2d::new( radius, half_angle, ) @@ -1422,7 +1440,7 @@ impl ::bevy::app::Plugin for BevyMathScriptingPlugin { .overwrite_script_function( "from_radians", |radius: f32, angle: f32| { - let output: Val = ::bevy::math::primitives::Arc2d::from_radians( + let output: Val = bevy::math::primitives::Arc2d::from_radians( radius, angle, ) @@ -1433,7 +1451,7 @@ impl ::bevy::app::Plugin for BevyMathScriptingPlugin { .overwrite_script_function( "from_degrees", |radius: f32, angle: f32| { - let output: Val = ::bevy::math::primitives::Arc2d::from_degrees( + let output: Val = bevy::math::primitives::Arc2d::from_degrees( radius, angle, ) @@ -1444,7 +1462,7 @@ impl ::bevy::app::Plugin for BevyMathScriptingPlugin { .overwrite_script_function( "from_turns", |radius: f32, fraction: f32| { - let output: Val = ::bevy::math::primitives::Arc2d::from_turns( + let output: Val = bevy::math::primitives::Arc2d::from_turns( radius, fraction, ) @@ -1455,7 +1473,7 @@ impl ::bevy::app::Plugin for BevyMathScriptingPlugin { .overwrite_script_function( "angle", |_self: Ref| { - let output: f32 = ::bevy::math::primitives::Arc2d::angle(&_self) + let output: f32 = bevy::math::primitives::Arc2d::angle(&_self) .into(); output }, @@ -1463,7 +1481,7 @@ impl ::bevy::app::Plugin for BevyMathScriptingPlugin { .overwrite_script_function( "length", |_self: Ref| { - let output: f32 = ::bevy::math::primitives::Arc2d::length(&_self) + let output: f32 = bevy::math::primitives::Arc2d::length(&_self) .into(); output }, @@ -1471,7 +1489,7 @@ impl ::bevy::app::Plugin for BevyMathScriptingPlugin { .overwrite_script_function( "half_chord_length", |_self: Ref| { - let output: f32 = ::bevy::math::primitives::Arc2d::half_chord_length( + let output: f32 = bevy::math::primitives::Arc2d::half_chord_length( &_self, ) .into(); @@ -1481,9 +1499,7 @@ impl ::bevy::app::Plugin for BevyMathScriptingPlugin { .overwrite_script_function( "chord_length", |_self: Ref| { - let output: f32 = ::bevy::math::primitives::Arc2d::chord_length( - &_self, - ) + let output: f32 = bevy::math::primitives::Arc2d::chord_length(&_self) .into(); output }, @@ -1491,7 +1507,7 @@ impl ::bevy::app::Plugin for BevyMathScriptingPlugin { .overwrite_script_function( "apothem", |_self: Ref| { - let output: f32 = ::bevy::math::primitives::Arc2d::apothem(&_self) + let output: f32 = bevy::math::primitives::Arc2d::apothem(&_self) .into(); output }, @@ -1499,7 +1515,7 @@ impl ::bevy::app::Plugin for BevyMathScriptingPlugin { .overwrite_script_function( "sagitta", |_self: Ref| { - let output: f32 = ::bevy::math::primitives::Arc2d::sagitta(&_self) + let output: f32 = bevy::math::primitives::Arc2d::sagitta(&_self) .into(); output }, @@ -1507,7 +1523,7 @@ impl ::bevy::app::Plugin for BevyMathScriptingPlugin { .overwrite_script_function( "is_minor", |_self: Ref| { - let output: bool = ::bevy::math::primitives::Arc2d::is_minor(&_self) + let output: bool = bevy::math::primitives::Arc2d::is_minor(&_self) .into(); output }, @@ -1515,7 +1531,7 @@ impl ::bevy::app::Plugin for BevyMathScriptingPlugin { .overwrite_script_function( "is_major", |_self: Ref| { - let output: bool = ::bevy::math::primitives::Arc2d::is_major(&_self) + let output: bool = bevy::math::primitives::Arc2d::is_major(&_self) .into(); output }, @@ -1526,10 +1542,9 @@ impl ::bevy::app::Plugin for BevyMathScriptingPlugin { _self: Ref, other: Ref| { - let output: bool = ::bevy::math::primitives::Arc2d::eq( - &_self, - &other, - ) + let output: bool = >::eq(&_self, &other) .into(); output }, @@ -1537,7 +1552,7 @@ impl ::bevy::app::Plugin for BevyMathScriptingPlugin { .overwrite_script_function( "clone", |_self: Ref| { - let output: Val = ::bevy::math::primitives::Arc2d::clone( + let output: Val = ::clone( &_self, ) .into(); @@ -1548,7 +1563,7 @@ impl ::bevy::app::Plugin for BevyMathScriptingPlugin { .overwrite_script_function( "new", |radius: f32, length: f32| { - let output: Val = ::bevy::math::primitives::Capsule2d::new( + let output: Val = bevy::math::primitives::Capsule2d::new( radius, length, ) @@ -1559,7 +1574,7 @@ impl ::bevy::app::Plugin for BevyMathScriptingPlugin { .overwrite_script_function( "to_inner_rectangle", |_self: Ref| { - let output: Val = ::bevy::math::primitives::Capsule2d::to_inner_rectangle( + let output: Val = bevy::math::primitives::Capsule2d::to_inner_rectangle( &_self, ) .into(); @@ -1572,10 +1587,9 @@ impl ::bevy::app::Plugin for BevyMathScriptingPlugin { _self: Ref, other: Ref| { - let output: bool = ::bevy::math::primitives::Capsule2d::eq( - &_self, - &other, - ) + let output: bool = >::eq(&_self, &other) .into(); output }, @@ -1583,7 +1597,7 @@ impl ::bevy::app::Plugin for BevyMathScriptingPlugin { .overwrite_script_function( "clone", |_self: Ref| { - let output: Val = ::bevy::math::primitives::Capsule2d::clone( + let output: Val = ::clone( &_self, ) .into(); @@ -1594,7 +1608,7 @@ impl ::bevy::app::Plugin for BevyMathScriptingPlugin { .overwrite_script_function( "clone", |_self: Ref| { - let output: Val = ::bevy::math::primitives::CircularSector::clone( + let output: Val = ::clone( &_self, ) .into(); @@ -1607,10 +1621,9 @@ impl ::bevy::app::Plugin for BevyMathScriptingPlugin { _self: Ref, other: Ref| { - let output: bool = ::bevy::math::primitives::CircularSector::eq( - &_self, - &other, - ) + let output: bool = >::eq(&_self, &other) .into(); output }, @@ -1618,7 +1631,7 @@ impl ::bevy::app::Plugin for BevyMathScriptingPlugin { .overwrite_script_function( "new", |radius: f32, angle: f32| { - let output: Val = ::bevy::math::primitives::CircularSector::new( + let output: Val = bevy::math::primitives::CircularSector::new( radius, angle, ) @@ -1629,7 +1642,7 @@ impl ::bevy::app::Plugin for BevyMathScriptingPlugin { .overwrite_script_function( "from_radians", |radius: f32, angle: f32| { - let output: Val = ::bevy::math::primitives::CircularSector::from_radians( + let output: Val = bevy::math::primitives::CircularSector::from_radians( radius, angle, ) @@ -1640,7 +1653,7 @@ impl ::bevy::app::Plugin for BevyMathScriptingPlugin { .overwrite_script_function( "from_degrees", |radius: f32, angle: f32| { - let output: Val = ::bevy::math::primitives::CircularSector::from_degrees( + let output: Val = bevy::math::primitives::CircularSector::from_degrees( radius, angle, ) @@ -1651,7 +1664,7 @@ impl ::bevy::app::Plugin for BevyMathScriptingPlugin { .overwrite_script_function( "from_turns", |radius: f32, fraction: f32| { - let output: Val = ::bevy::math::primitives::CircularSector::from_turns( + let output: Val = bevy::math::primitives::CircularSector::from_turns( radius, fraction, ) @@ -1662,7 +1675,7 @@ impl ::bevy::app::Plugin for BevyMathScriptingPlugin { .overwrite_script_function( "half_angle", |_self: Ref| { - let output: f32 = ::bevy::math::primitives::CircularSector::half_angle( + let output: f32 = bevy::math::primitives::CircularSector::half_angle( &_self, ) .into(); @@ -1672,7 +1685,7 @@ impl ::bevy::app::Plugin for BevyMathScriptingPlugin { .overwrite_script_function( "angle", |_self: Ref| { - let output: f32 = ::bevy::math::primitives::CircularSector::angle( + let output: f32 = bevy::math::primitives::CircularSector::angle( &_self, ) .into(); @@ -1682,7 +1695,7 @@ impl ::bevy::app::Plugin for BevyMathScriptingPlugin { .overwrite_script_function( "radius", |_self: Ref| { - let output: f32 = ::bevy::math::primitives::CircularSector::radius( + let output: f32 = bevy::math::primitives::CircularSector::radius( &_self, ) .into(); @@ -1692,7 +1705,7 @@ impl ::bevy::app::Plugin for BevyMathScriptingPlugin { .overwrite_script_function( "arc_length", |_self: Ref| { - let output: f32 = ::bevy::math::primitives::CircularSector::arc_length( + let output: f32 = bevy::math::primitives::CircularSector::arc_length( &_self, ) .into(); @@ -1702,7 +1715,7 @@ impl ::bevy::app::Plugin for BevyMathScriptingPlugin { .overwrite_script_function( "half_chord_length", |_self: Ref| { - let output: f32 = ::bevy::math::primitives::CircularSector::half_chord_length( + let output: f32 = bevy::math::primitives::CircularSector::half_chord_length( &_self, ) .into(); @@ -1712,7 +1725,7 @@ impl ::bevy::app::Plugin for BevyMathScriptingPlugin { .overwrite_script_function( "chord_length", |_self: Ref| { - let output: f32 = ::bevy::math::primitives::CircularSector::chord_length( + let output: f32 = bevy::math::primitives::CircularSector::chord_length( &_self, ) .into(); @@ -1722,7 +1735,7 @@ impl ::bevy::app::Plugin for BevyMathScriptingPlugin { .overwrite_script_function( "apothem", |_self: Ref| { - let output: f32 = ::bevy::math::primitives::CircularSector::apothem( + let output: f32 = bevy::math::primitives::CircularSector::apothem( &_self, ) .into(); @@ -1732,7 +1745,7 @@ impl ::bevy::app::Plugin for BevyMathScriptingPlugin { .overwrite_script_function( "sagitta", |_self: Ref| { - let output: f32 = ::bevy::math::primitives::CircularSector::sagitta( + let output: f32 = bevy::math::primitives::CircularSector::sagitta( &_self, ) .into(); @@ -1743,7 +1756,7 @@ impl ::bevy::app::Plugin for BevyMathScriptingPlugin { .overwrite_script_function( "clone", |_self: Ref| { - let output: Val = ::bevy::math::primitives::CircularSegment::clone( + let output: Val = ::clone( &_self, ) .into(); @@ -1753,7 +1766,7 @@ impl ::bevy::app::Plugin for BevyMathScriptingPlugin { .overwrite_script_function( "new", |radius: f32, angle: f32| { - let output: Val = ::bevy::math::primitives::CircularSegment::new( + let output: Val = bevy::math::primitives::CircularSegment::new( radius, angle, ) @@ -1764,7 +1777,7 @@ impl ::bevy::app::Plugin for BevyMathScriptingPlugin { .overwrite_script_function( "from_radians", |radius: f32, angle: f32| { - let output: Val = ::bevy::math::primitives::CircularSegment::from_radians( + let output: Val = bevy::math::primitives::CircularSegment::from_radians( radius, angle, ) @@ -1775,7 +1788,7 @@ impl ::bevy::app::Plugin for BevyMathScriptingPlugin { .overwrite_script_function( "from_degrees", |radius: f32, angle: f32| { - let output: Val = ::bevy::math::primitives::CircularSegment::from_degrees( + let output: Val = bevy::math::primitives::CircularSegment::from_degrees( radius, angle, ) @@ -1786,7 +1799,7 @@ impl ::bevy::app::Plugin for BevyMathScriptingPlugin { .overwrite_script_function( "from_turns", |radius: f32, fraction: f32| { - let output: Val = ::bevy::math::primitives::CircularSegment::from_turns( + let output: Val = bevy::math::primitives::CircularSegment::from_turns( radius, fraction, ) @@ -1797,7 +1810,7 @@ impl ::bevy::app::Plugin for BevyMathScriptingPlugin { .overwrite_script_function( "half_angle", |_self: Ref| { - let output: f32 = ::bevy::math::primitives::CircularSegment::half_angle( + let output: f32 = bevy::math::primitives::CircularSegment::half_angle( &_self, ) .into(); @@ -1807,7 +1820,7 @@ impl ::bevy::app::Plugin for BevyMathScriptingPlugin { .overwrite_script_function( "angle", |_self: Ref| { - let output: f32 = ::bevy::math::primitives::CircularSegment::angle( + let output: f32 = bevy::math::primitives::CircularSegment::angle( &_self, ) .into(); @@ -1817,7 +1830,7 @@ impl ::bevy::app::Plugin for BevyMathScriptingPlugin { .overwrite_script_function( "radius", |_self: Ref| { - let output: f32 = ::bevy::math::primitives::CircularSegment::radius( + let output: f32 = bevy::math::primitives::CircularSegment::radius( &_self, ) .into(); @@ -1827,7 +1840,7 @@ impl ::bevy::app::Plugin for BevyMathScriptingPlugin { .overwrite_script_function( "arc_length", |_self: Ref| { - let output: f32 = ::bevy::math::primitives::CircularSegment::arc_length( + let output: f32 = bevy::math::primitives::CircularSegment::arc_length( &_self, ) .into(); @@ -1837,7 +1850,7 @@ impl ::bevy::app::Plugin for BevyMathScriptingPlugin { .overwrite_script_function( "half_chord_length", |_self: Ref| { - let output: f32 = ::bevy::math::primitives::CircularSegment::half_chord_length( + let output: f32 = bevy::math::primitives::CircularSegment::half_chord_length( &_self, ) .into(); @@ -1847,7 +1860,7 @@ impl ::bevy::app::Plugin for BevyMathScriptingPlugin { .overwrite_script_function( "chord_length", |_self: Ref| { - let output: f32 = ::bevy::math::primitives::CircularSegment::chord_length( + let output: f32 = bevy::math::primitives::CircularSegment::chord_length( &_self, ) .into(); @@ -1857,7 +1870,7 @@ impl ::bevy::app::Plugin for BevyMathScriptingPlugin { .overwrite_script_function( "apothem", |_self: Ref| { - let output: f32 = ::bevy::math::primitives::CircularSegment::apothem( + let output: f32 = bevy::math::primitives::CircularSegment::apothem( &_self, ) .into(); @@ -1867,7 +1880,7 @@ impl ::bevy::app::Plugin for BevyMathScriptingPlugin { .overwrite_script_function( "sagitta", |_self: Ref| { - let output: f32 = ::bevy::math::primitives::CircularSegment::sagitta( + let output: f32 = bevy::math::primitives::CircularSegment::sagitta( &_self, ) .into(); @@ -1880,10 +1893,9 @@ impl ::bevy::app::Plugin for BevyMathScriptingPlugin { _self: Ref, other: Ref| { - let output: bool = ::bevy::math::primitives::CircularSegment::eq( - &_self, - &other, - ) + let output: bool = >::eq(&_self, &other) .into(); output }, @@ -1892,7 +1904,7 @@ impl ::bevy::app::Plugin for BevyMathScriptingPlugin { .overwrite_script_function( "clone", |_self: Ref| { - let output: Val = ::bevy::math::primitives::Ellipse::clone( + let output: Val = ::clone( &_self, ) .into(); @@ -1905,10 +1917,9 @@ impl ::bevy::app::Plugin for BevyMathScriptingPlugin { _self: Ref, other: Ref| { - let output: bool = ::bevy::math::primitives::Ellipse::eq( - &_self, - &other, - ) + let output: bool = >::eq(&_self, &other) .into(); output }, @@ -1916,7 +1927,7 @@ impl ::bevy::app::Plugin for BevyMathScriptingPlugin { .overwrite_script_function( "new", |half_width: f32, half_height: f32| { - let output: Val = ::bevy::math::primitives::Ellipse::new( + let output: Val = bevy::math::primitives::Ellipse::new( half_width, half_height, ) @@ -1927,7 +1938,7 @@ impl ::bevy::app::Plugin for BevyMathScriptingPlugin { .overwrite_script_function( "eccentricity", |_self: Ref| { - let output: f32 = ::bevy::math::primitives::Ellipse::eccentricity( + let output: f32 = bevy::math::primitives::Ellipse::eccentricity( &_self, ) .into(); @@ -1937,7 +1948,7 @@ impl ::bevy::app::Plugin for BevyMathScriptingPlugin { .overwrite_script_function( "focal_length", |_self: Ref| { - let output: f32 = ::bevy::math::primitives::Ellipse::focal_length( + let output: f32 = bevy::math::primitives::Ellipse::focal_length( &_self, ) .into(); @@ -1947,9 +1958,7 @@ impl ::bevy::app::Plugin for BevyMathScriptingPlugin { .overwrite_script_function( "semi_major", |_self: Ref| { - let output: f32 = ::bevy::math::primitives::Ellipse::semi_major( - &_self, - ) + let output: f32 = bevy::math::primitives::Ellipse::semi_major(&_self) .into(); output }, @@ -1957,9 +1966,7 @@ impl ::bevy::app::Plugin for BevyMathScriptingPlugin { .overwrite_script_function( "semi_minor", |_self: Ref| { - let output: f32 = ::bevy::math::primitives::Ellipse::semi_minor( - &_self, - ) + let output: f32 = bevy::math::primitives::Ellipse::semi_minor(&_self) .into(); output }, @@ -1971,10 +1978,9 @@ impl ::bevy::app::Plugin for BevyMathScriptingPlugin { _self: Ref, other: Ref| { - let output: bool = ::bevy::math::primitives::Line2d::eq( - &_self, - &other, - ) + let output: bool = >::eq(&_self, &other) .into(); output }, @@ -1982,7 +1988,7 @@ impl ::bevy::app::Plugin for BevyMathScriptingPlugin { .overwrite_script_function( "clone", |_self: Ref| { - let output: Val = ::bevy::math::primitives::Line2d::clone( + let output: Val = ::clone( &_self, ) .into(); @@ -1996,10 +2002,9 @@ impl ::bevy::app::Plugin for BevyMathScriptingPlugin { _self: Ref, other: Ref| { - let output: bool = ::bevy::math::primitives::Plane2d::eq( - &_self, - &other, - ) + let output: bool = >::eq(&_self, &other) .into(); output }, @@ -2007,7 +2012,7 @@ impl ::bevy::app::Plugin for BevyMathScriptingPlugin { .overwrite_script_function( "clone", |_self: Ref| { - let output: Val = ::bevy::math::primitives::Plane2d::clone( + let output: Val = ::clone( &_self, ) .into(); @@ -2021,10 +2026,9 @@ impl ::bevy::app::Plugin for BevyMathScriptingPlugin { _self: Ref, other: Ref| { - let output: bool = ::bevy::math::primitives::Rectangle::eq( - &_self, - &other, - ) + let output: bool = >::eq(&_self, &other) .into(); output }, @@ -2032,7 +2036,7 @@ impl ::bevy::app::Plugin for BevyMathScriptingPlugin { .overwrite_script_function( "new", |width: f32, height: f32| { - let output: Val = ::bevy::math::primitives::Rectangle::new( + let output: Val = bevy::math::primitives::Rectangle::new( width, height, ) @@ -2043,7 +2047,7 @@ impl ::bevy::app::Plugin for BevyMathScriptingPlugin { .overwrite_script_function( "from_length", |length: f32| { - let output: Val = ::bevy::math::primitives::Rectangle::from_length( + let output: Val = bevy::math::primitives::Rectangle::from_length( length, ) .into(); @@ -2053,7 +2057,7 @@ impl ::bevy::app::Plugin for BevyMathScriptingPlugin { .overwrite_script_function( "clone", |_self: Ref| { - let output: Val = ::bevy::math::primitives::Rectangle::clone( + let output: Val = ::clone( &_self, ) .into(); @@ -2067,10 +2071,9 @@ impl ::bevy::app::Plugin for BevyMathScriptingPlugin { _self: Ref, other: Ref| { - let output: bool = ::bevy::math::primitives::RegularPolygon::eq( - &_self, - &other, - ) + let output: bool = >::eq(&_self, &other) .into(); output }, @@ -2078,7 +2081,7 @@ impl ::bevy::app::Plugin for BevyMathScriptingPlugin { .overwrite_script_function( "new", |circumradius: f32, sides: u32| { - let output: Val = ::bevy::math::primitives::RegularPolygon::new( + let output: Val = bevy::math::primitives::RegularPolygon::new( circumradius, sides, ) @@ -2089,7 +2092,7 @@ impl ::bevy::app::Plugin for BevyMathScriptingPlugin { .overwrite_script_function( "circumradius", |_self: Ref| { - let output: f32 = ::bevy::math::primitives::RegularPolygon::circumradius( + let output: f32 = bevy::math::primitives::RegularPolygon::circumradius( &_self, ) .into(); @@ -2099,7 +2102,7 @@ impl ::bevy::app::Plugin for BevyMathScriptingPlugin { .overwrite_script_function( "inradius", |_self: Ref| { - let output: f32 = ::bevy::math::primitives::RegularPolygon::inradius( + let output: f32 = bevy::math::primitives::RegularPolygon::inradius( &_self, ) .into(); @@ -2109,7 +2112,7 @@ impl ::bevy::app::Plugin for BevyMathScriptingPlugin { .overwrite_script_function( "side_length", |_self: Ref| { - let output: f32 = ::bevy::math::primitives::RegularPolygon::side_length( + let output: f32 = bevy::math::primitives::RegularPolygon::side_length( &_self, ) .into(); @@ -2119,7 +2122,7 @@ impl ::bevy::app::Plugin for BevyMathScriptingPlugin { .overwrite_script_function( "internal_angle_degrees", |_self: Ref| { - let output: f32 = ::bevy::math::primitives::RegularPolygon::internal_angle_degrees( + let output: f32 = bevy::math::primitives::RegularPolygon::internal_angle_degrees( &_self, ) .into(); @@ -2129,7 +2132,7 @@ impl ::bevy::app::Plugin for BevyMathScriptingPlugin { .overwrite_script_function( "internal_angle_radians", |_self: Ref| { - let output: f32 = ::bevy::math::primitives::RegularPolygon::internal_angle_radians( + let output: f32 = bevy::math::primitives::RegularPolygon::internal_angle_radians( &_self, ) .into(); @@ -2139,7 +2142,7 @@ impl ::bevy::app::Plugin for BevyMathScriptingPlugin { .overwrite_script_function( "external_angle_degrees", |_self: Ref| { - let output: f32 = ::bevy::math::primitives::RegularPolygon::external_angle_degrees( + let output: f32 = bevy::math::primitives::RegularPolygon::external_angle_degrees( &_self, ) .into(); @@ -2149,7 +2152,7 @@ impl ::bevy::app::Plugin for BevyMathScriptingPlugin { .overwrite_script_function( "external_angle_radians", |_self: Ref| { - let output: f32 = ::bevy::math::primitives::RegularPolygon::external_angle_radians( + let output: f32 = bevy::math::primitives::RegularPolygon::external_angle_radians( &_self, ) .into(); @@ -2159,7 +2162,7 @@ impl ::bevy::app::Plugin for BevyMathScriptingPlugin { .overwrite_script_function( "clone", |_self: Ref| { - let output: Val = ::bevy::math::primitives::RegularPolygon::clone( + let output: Val = ::clone( &_self, ) .into(); @@ -2173,10 +2176,9 @@ impl ::bevy::app::Plugin for BevyMathScriptingPlugin { _self: Ref, other: Ref| { - let output: bool = ::bevy::math::primitives::Rhombus::eq( - &_self, - &other, - ) + let output: bool = >::eq(&_self, &other) .into(); output }, @@ -2184,7 +2186,7 @@ impl ::bevy::app::Plugin for BevyMathScriptingPlugin { .overwrite_script_function( "clone", |_self: Ref| { - let output: Val = ::bevy::math::primitives::Rhombus::clone( + let output: Val = ::clone( &_self, ) .into(); @@ -2194,7 +2196,7 @@ impl ::bevy::app::Plugin for BevyMathScriptingPlugin { .overwrite_script_function( "new", |horizontal_diagonal: f32, vertical_diagonal: f32| { - let output: Val = ::bevy::math::primitives::Rhombus::new( + let output: Val = bevy::math::primitives::Rhombus::new( horizontal_diagonal, vertical_diagonal, ) @@ -2205,7 +2207,7 @@ impl ::bevy::app::Plugin for BevyMathScriptingPlugin { .overwrite_script_function( "from_side", |side: f32| { - let output: Val = ::bevy::math::primitives::Rhombus::from_side( + let output: Val = bevy::math::primitives::Rhombus::from_side( side, ) .into(); @@ -2215,7 +2217,7 @@ impl ::bevy::app::Plugin for BevyMathScriptingPlugin { .overwrite_script_function( "from_inradius", |inradius: f32| { - let output: Val = ::bevy::math::primitives::Rhombus::from_inradius( + let output: Val = bevy::math::primitives::Rhombus::from_inradius( inradius, ) .into(); @@ -2225,7 +2227,7 @@ impl ::bevy::app::Plugin for BevyMathScriptingPlugin { .overwrite_script_function( "side", |_self: Ref| { - let output: f32 = ::bevy::math::primitives::Rhombus::side(&_self) + let output: f32 = bevy::math::primitives::Rhombus::side(&_self) .into(); output }, @@ -2233,7 +2235,7 @@ impl ::bevy::app::Plugin for BevyMathScriptingPlugin { .overwrite_script_function( "circumradius", |_self: Ref| { - let output: f32 = ::bevy::math::primitives::Rhombus::circumradius( + let output: f32 = bevy::math::primitives::Rhombus::circumradius( &_self, ) .into(); @@ -2243,7 +2245,7 @@ impl ::bevy::app::Plugin for BevyMathScriptingPlugin { .overwrite_script_function( "inradius", |_self: Ref| { - let output: f32 = ::bevy::math::primitives::Rhombus::inradius(&_self) + let output: f32 = bevy::math::primitives::Rhombus::inradius(&_self) .into(); output }, @@ -2255,10 +2257,9 @@ impl ::bevy::app::Plugin for BevyMathScriptingPlugin { _self: Ref, other: Ref| { - let output: bool = ::bevy::math::primitives::Segment2d::eq( - &_self, - &other, - ) + let output: bool = >::eq(&_self, &other) .into(); output }, @@ -2266,7 +2267,7 @@ impl ::bevy::app::Plugin for BevyMathScriptingPlugin { .overwrite_script_function( "clone", |_self: Ref| { - let output: Val = ::bevy::math::primitives::Segment2d::clone( + let output: Val = ::clone( &_self, ) .into(); @@ -2276,7 +2277,7 @@ impl ::bevy::app::Plugin for BevyMathScriptingPlugin { .overwrite_script_function( "new", |direction: Val, length: f32| { - let output: Val = ::bevy::math::primitives::Segment2d::new( + let output: Val = bevy::math::primitives::Segment2d::new( direction.into_inner(), length, ) @@ -2291,10 +2292,9 @@ impl ::bevy::app::Plugin for BevyMathScriptingPlugin { _self: Ref, other: Ref| { - let output: bool = ::bevy::math::primitives::Triangle2d::eq( - &_self, - &other, - ) + let output: bool = >::eq(&_self, &other) .into(); output }, @@ -2302,7 +2302,7 @@ impl ::bevy::app::Plugin for BevyMathScriptingPlugin { .overwrite_script_function( "clone", |_self: Ref| { - let output: Val = ::bevy::math::primitives::Triangle2d::clone( + let output: Val = ::clone( &_self, ) .into(); @@ -2312,7 +2312,7 @@ impl ::bevy::app::Plugin for BevyMathScriptingPlugin { .overwrite_script_function( "is_degenerate", |_self: Ref| { - let output: bool = ::bevy::math::primitives::Triangle2d::is_degenerate( + let output: bool = bevy::math::primitives::Triangle2d::is_degenerate( &_self, ) .into(); @@ -2322,7 +2322,7 @@ impl ::bevy::app::Plugin for BevyMathScriptingPlugin { .overwrite_script_function( "is_acute", |_self: Ref| { - let output: bool = ::bevy::math::primitives::Triangle2d::is_acute( + let output: bool = bevy::math::primitives::Triangle2d::is_acute( &_self, ) .into(); @@ -2332,7 +2332,7 @@ impl ::bevy::app::Plugin for BevyMathScriptingPlugin { .overwrite_script_function( "is_obtuse", |_self: Ref| { - let output: bool = ::bevy::math::primitives::Triangle2d::is_obtuse( + let output: bool = bevy::math::primitives::Triangle2d::is_obtuse( &_self, ) .into(); @@ -2342,7 +2342,7 @@ impl ::bevy::app::Plugin for BevyMathScriptingPlugin { .overwrite_script_function( "reverse", |mut _self: Mut| { - let output: () = ::bevy::math::primitives::Triangle2d::reverse( + let output: () = bevy::math::primitives::Triangle2d::reverse( &mut _self, ) .into(); @@ -2352,7 +2352,7 @@ impl ::bevy::app::Plugin for BevyMathScriptingPlugin { .overwrite_script_function( "reversed", |_self: Val| { - let output: Val = ::bevy::math::primitives::Triangle2d::reversed( + let output: Val = bevy::math::primitives::Triangle2d::reversed( _self.into_inner(), ) .into(); @@ -2363,7 +2363,7 @@ impl ::bevy::app::Plugin for BevyMathScriptingPlugin { .overwrite_script_function( "bounding_sphere", |_self: Ref| { - let output: Val = ::bevy::math::bounding::Aabb3d::bounding_sphere( + let output: Val = bevy::math::bounding::Aabb3d::bounding_sphere( &_self, ) .into(); @@ -2373,7 +2373,7 @@ impl ::bevy::app::Plugin for BevyMathScriptingPlugin { .overwrite_script_function( "clone", |_self: Ref| { - let output: Val = ::bevy::math::bounding::Aabb3d::clone( + let output: Val = ::clone( &_self, ) .into(); @@ -2384,7 +2384,7 @@ impl ::bevy::app::Plugin for BevyMathScriptingPlugin { .overwrite_script_function( "radius", |_self: Ref| { - let output: f32 = ::bevy::math::bounding::BoundingSphere::radius( + let output: f32 = bevy::math::bounding::BoundingSphere::radius( &_self, ) .into(); @@ -2394,7 +2394,7 @@ impl ::bevy::app::Plugin for BevyMathScriptingPlugin { .overwrite_script_function( "aabb_3d", |_self: Ref| { - let output: Val = ::bevy::math::bounding::BoundingSphere::aabb_3d( + let output: Val = bevy::math::bounding::BoundingSphere::aabb_3d( &_self, ) .into(); @@ -2404,7 +2404,7 @@ impl ::bevy::app::Plugin for BevyMathScriptingPlugin { .overwrite_script_function( "clone", |_self: Ref| { - let output: Val = ::bevy::math::bounding::BoundingSphere::clone( + let output: Val = ::clone( &_self, ) .into(); @@ -2418,10 +2418,9 @@ impl ::bevy::app::Plugin for BevyMathScriptingPlugin { _self: Ref, other: Ref| { - let output: bool = ::bevy::math::primitives::Sphere::eq( - &_self, - &other, - ) + let output: bool = >::eq(&_self, &other) .into(); output }, @@ -2429,7 +2428,7 @@ impl ::bevy::app::Plugin for BevyMathScriptingPlugin { .overwrite_script_function( "new", |radius: f32| { - let output: Val = ::bevy::math::primitives::Sphere::new( + let output: Val = bevy::math::primitives::Sphere::new( radius, ) .into(); @@ -2439,7 +2438,7 @@ impl ::bevy::app::Plugin for BevyMathScriptingPlugin { .overwrite_script_function( "diameter", |_self: Ref| { - let output: f32 = ::bevy::math::primitives::Sphere::diameter(&_self) + let output: f32 = bevy::math::primitives::Sphere::diameter(&_self) .into(); output }, @@ -2447,7 +2446,7 @@ impl ::bevy::app::Plugin for BevyMathScriptingPlugin { .overwrite_script_function( "clone", |_self: Ref| { - let output: Val = ::bevy::math::primitives::Sphere::clone( + let output: Val = ::clone( &_self, ) .into(); @@ -2458,7 +2457,7 @@ impl ::bevy::app::Plugin for BevyMathScriptingPlugin { .overwrite_script_function( "new", |x_length: f32, y_length: f32, z_length: f32| { - let output: Val = ::bevy::math::primitives::Cuboid::new( + let output: Val = bevy::math::primitives::Cuboid::new( x_length, y_length, z_length, @@ -2470,7 +2469,7 @@ impl ::bevy::app::Plugin for BevyMathScriptingPlugin { .overwrite_script_function( "from_length", |length: f32| { - let output: Val = ::bevy::math::primitives::Cuboid::from_length( + let output: Val = bevy::math::primitives::Cuboid::from_length( length, ) .into(); @@ -2483,10 +2482,9 @@ impl ::bevy::app::Plugin for BevyMathScriptingPlugin { _self: Ref, other: Ref| { - let output: bool = ::bevy::math::primitives::Cuboid::eq( - &_self, - &other, - ) + let output: bool = >::eq(&_self, &other) .into(); output }, @@ -2494,7 +2492,7 @@ impl ::bevy::app::Plugin for BevyMathScriptingPlugin { .overwrite_script_function( "clone", |_self: Ref| { - let output: Val = ::bevy::math::primitives::Cuboid::clone( + let output: Val = ::clone( &_self, ) .into(); @@ -2505,7 +2503,7 @@ impl ::bevy::app::Plugin for BevyMathScriptingPlugin { .overwrite_script_function( "new", |radius: f32, height: f32| { - let output: Val = ::bevy::math::primitives::Cylinder::new( + let output: Val = bevy::math::primitives::Cylinder::new( radius, height, ) @@ -2516,7 +2514,7 @@ impl ::bevy::app::Plugin for BevyMathScriptingPlugin { .overwrite_script_function( "base", |_self: Ref| { - let output: Val = ::bevy::math::primitives::Cylinder::base( + let output: Val = bevy::math::primitives::Cylinder::base( &_self, ) .into(); @@ -2526,7 +2524,7 @@ impl ::bevy::app::Plugin for BevyMathScriptingPlugin { .overwrite_script_function( "lateral_area", |_self: Ref| { - let output: f32 = ::bevy::math::primitives::Cylinder::lateral_area( + let output: f32 = bevy::math::primitives::Cylinder::lateral_area( &_self, ) .into(); @@ -2536,9 +2534,7 @@ impl ::bevy::app::Plugin for BevyMathScriptingPlugin { .overwrite_script_function( "base_area", |_self: Ref| { - let output: f32 = ::bevy::math::primitives::Cylinder::base_area( - &_self, - ) + let output: f32 = bevy::math::primitives::Cylinder::base_area(&_self) .into(); output }, @@ -2546,7 +2542,7 @@ impl ::bevy::app::Plugin for BevyMathScriptingPlugin { .overwrite_script_function( "clone", |_self: Ref| { - let output: Val = ::bevy::math::primitives::Cylinder::clone( + let output: Val = ::clone( &_self, ) .into(); @@ -2559,10 +2555,9 @@ impl ::bevy::app::Plugin for BevyMathScriptingPlugin { _self: Ref, other: Ref| { - let output: bool = ::bevy::math::primitives::Cylinder::eq( - &_self, - &other, - ) + let output: bool = >::eq(&_self, &other) .into(); output }, @@ -2571,7 +2566,7 @@ impl ::bevy::app::Plugin for BevyMathScriptingPlugin { .overwrite_script_function( "new", |radius: f32, length: f32| { - let output: Val = ::bevy::math::primitives::Capsule3d::new( + let output: Val = bevy::math::primitives::Capsule3d::new( radius, length, ) @@ -2582,7 +2577,7 @@ impl ::bevy::app::Plugin for BevyMathScriptingPlugin { .overwrite_script_function( "to_cylinder", |_self: Ref| { - let output: Val = ::bevy::math::primitives::Capsule3d::to_cylinder( + let output: Val = bevy::math::primitives::Capsule3d::to_cylinder( &_self, ) .into(); @@ -2595,10 +2590,9 @@ impl ::bevy::app::Plugin for BevyMathScriptingPlugin { _self: Ref, other: Ref| { - let output: bool = ::bevy::math::primitives::Capsule3d::eq( - &_self, - &other, - ) + let output: bool = >::eq(&_self, &other) .into(); output }, @@ -2606,7 +2600,7 @@ impl ::bevy::app::Plugin for BevyMathScriptingPlugin { .overwrite_script_function( "clone", |_self: Ref| { - let output: Val = ::bevy::math::primitives::Capsule3d::clone( + let output: Val = ::clone( &_self, ) .into(); @@ -2617,7 +2611,7 @@ impl ::bevy::app::Plugin for BevyMathScriptingPlugin { .overwrite_script_function( "new", |radius: f32, height: f32| { - let output: Val = ::bevy::math::primitives::Cone::new( + let output: Val = bevy::math::primitives::Cone::new( radius, height, ) @@ -2628,7 +2622,7 @@ impl ::bevy::app::Plugin for BevyMathScriptingPlugin { .overwrite_script_function( "base", |_self: Ref| { - let output: Val = ::bevy::math::primitives::Cone::base( + let output: Val = bevy::math::primitives::Cone::base( &_self, ) .into(); @@ -2638,9 +2632,7 @@ impl ::bevy::app::Plugin for BevyMathScriptingPlugin { .overwrite_script_function( "slant_height", |_self: Ref| { - let output: f32 = ::bevy::math::primitives::Cone::slant_height( - &_self, - ) + let output: f32 = bevy::math::primitives::Cone::slant_height(&_self) .into(); output }, @@ -2648,9 +2640,7 @@ impl ::bevy::app::Plugin for BevyMathScriptingPlugin { .overwrite_script_function( "lateral_area", |_self: Ref| { - let output: f32 = ::bevy::math::primitives::Cone::lateral_area( - &_self, - ) + let output: f32 = bevy::math::primitives::Cone::lateral_area(&_self) .into(); output }, @@ -2658,7 +2648,7 @@ impl ::bevy::app::Plugin for BevyMathScriptingPlugin { .overwrite_script_function( "base_area", |_self: Ref| { - let output: f32 = ::bevy::math::primitives::Cone::base_area(&_self) + let output: f32 = bevy::math::primitives::Cone::base_area(&_self) .into(); output }, @@ -2666,7 +2656,7 @@ impl ::bevy::app::Plugin for BevyMathScriptingPlugin { .overwrite_script_function( "clone", |_self: Ref| { - let output: Val = ::bevy::math::primitives::Cone::clone( + let output: Val = ::clone( &_self, ) .into(); @@ -2679,7 +2669,9 @@ impl ::bevy::app::Plugin for BevyMathScriptingPlugin { _self: Ref, other: Ref| { - let output: bool = ::bevy::math::primitives::Cone::eq(&_self, &other) + let output: bool = >::eq(&_self, &other) .into(); output }, @@ -2688,7 +2680,7 @@ impl ::bevy::app::Plugin for BevyMathScriptingPlugin { .overwrite_script_function( "clone", |_self: Ref| { - let output: Val = ::bevy::math::primitives::ConicalFrustum::clone( + let output: Val = ::clone( &_self, ) .into(); @@ -2701,10 +2693,9 @@ impl ::bevy::app::Plugin for BevyMathScriptingPlugin { _self: Ref, other: Ref| { - let output: bool = ::bevy::math::primitives::ConicalFrustum::eq( - &_self, - &other, - ) + let output: bool = >::eq(&_self, &other) .into(); output }, @@ -2713,7 +2704,7 @@ impl ::bevy::app::Plugin for BevyMathScriptingPlugin { .overwrite_script_function( "clone", |_self: Ref| { - let output: Val = ::bevy::math::primitives::InfinitePlane3d::clone( + let output: Val = ::clone( &_self, ) .into(); @@ -2726,10 +2717,9 @@ impl ::bevy::app::Plugin for BevyMathScriptingPlugin { _self: Ref, other: Ref| { - let output: bool = ::bevy::math::primitives::InfinitePlane3d::eq( - &_self, - &other, - ) + let output: bool = >::eq(&_self, &other) .into(); output }, @@ -2741,10 +2731,9 @@ impl ::bevy::app::Plugin for BevyMathScriptingPlugin { _self: Ref, other: Ref| { - let output: bool = ::bevy::math::primitives::Line3d::eq( - &_self, - &other, - ) + let output: bool = >::eq(&_self, &other) .into(); output }, @@ -2752,7 +2741,7 @@ impl ::bevy::app::Plugin for BevyMathScriptingPlugin { .overwrite_script_function( "clone", |_self: Ref| { - let output: Val = ::bevy::math::primitives::Line3d::clone( + let output: Val = ::clone( &_self, ) .into(); @@ -2763,7 +2752,7 @@ impl ::bevy::app::Plugin for BevyMathScriptingPlugin { .overwrite_script_function( "new", |direction: Val, length: f32| { - let output: Val = ::bevy::math::primitives::Segment3d::new( + let output: Val = bevy::math::primitives::Segment3d::new( direction.into_inner(), length, ) @@ -2777,10 +2766,9 @@ impl ::bevy::app::Plugin for BevyMathScriptingPlugin { _self: Ref, other: Ref| { - let output: bool = ::bevy::math::primitives::Segment3d::eq( - &_self, - &other, - ) + let output: bool = >::eq(&_self, &other) .into(); output }, @@ -2788,7 +2776,7 @@ impl ::bevy::app::Plugin for BevyMathScriptingPlugin { .overwrite_script_function( "clone", |_self: Ref| { - let output: Val = ::bevy::math::primitives::Segment3d::clone( + let output: Val = ::clone( &_self, ) .into(); @@ -2799,7 +2787,7 @@ impl ::bevy::app::Plugin for BevyMathScriptingPlugin { .overwrite_script_function( "clone", |_self: Ref| { - let output: Val = ::bevy::math::primitives::Torus::clone( + let output: Val = ::clone( &_self, ) .into(); @@ -2809,7 +2797,7 @@ impl ::bevy::app::Plugin for BevyMathScriptingPlugin { .overwrite_script_function( "new", |inner_radius: f32, outer_radius: f32| { - let output: Val = ::bevy::math::primitives::Torus::new( + let output: Val = bevy::math::primitives::Torus::new( inner_radius, outer_radius, ) @@ -2820,9 +2808,7 @@ impl ::bevy::app::Plugin for BevyMathScriptingPlugin { .overwrite_script_function( "inner_radius", |_self: Ref| { - let output: f32 = ::bevy::math::primitives::Torus::inner_radius( - &_self, - ) + let output: f32 = bevy::math::primitives::Torus::inner_radius(&_self) .into(); output }, @@ -2830,9 +2816,7 @@ impl ::bevy::app::Plugin for BevyMathScriptingPlugin { .overwrite_script_function( "outer_radius", |_self: Ref| { - let output: f32 = ::bevy::math::primitives::Torus::outer_radius( - &_self, - ) + let output: f32 = bevy::math::primitives::Torus::outer_radius(&_self) .into(); output }, @@ -2843,10 +2827,9 @@ impl ::bevy::app::Plugin for BevyMathScriptingPlugin { _self: Ref, other: Ref| { - let output: bool = ::bevy::math::primitives::Torus::eq( - &_self, - &other, - ) + let output: bool = >::eq(&_self, &other) .into(); output }, @@ -2855,7 +2838,7 @@ impl ::bevy::app::Plugin for BevyMathScriptingPlugin { .overwrite_script_function( "is_degenerate", |_self: Ref| { - let output: bool = ::bevy::math::primitives::Triangle3d::is_degenerate( + let output: bool = bevy::math::primitives::Triangle3d::is_degenerate( &_self, ) .into(); @@ -2865,7 +2848,7 @@ impl ::bevy::app::Plugin for BevyMathScriptingPlugin { .overwrite_script_function( "is_acute", |_self: Ref| { - let output: bool = ::bevy::math::primitives::Triangle3d::is_acute( + let output: bool = bevy::math::primitives::Triangle3d::is_acute( &_self, ) .into(); @@ -2875,7 +2858,7 @@ impl ::bevy::app::Plugin for BevyMathScriptingPlugin { .overwrite_script_function( "is_obtuse", |_self: Ref| { - let output: bool = ::bevy::math::primitives::Triangle3d::is_obtuse( + let output: bool = bevy::math::primitives::Triangle3d::is_obtuse( &_self, ) .into(); @@ -2885,7 +2868,7 @@ impl ::bevy::app::Plugin for BevyMathScriptingPlugin { .overwrite_script_function( "reverse", |mut _self: Mut| { - let output: () = ::bevy::math::primitives::Triangle3d::reverse( + let output: () = bevy::math::primitives::Triangle3d::reverse( &mut _self, ) .into(); @@ -2895,7 +2878,7 @@ impl ::bevy::app::Plugin for BevyMathScriptingPlugin { .overwrite_script_function( "reversed", |_self: Val| { - let output: Val = ::bevy::math::primitives::Triangle3d::reversed( + let output: Val = bevy::math::primitives::Triangle3d::reversed( _self.into_inner(), ) .into(); @@ -2908,10 +2891,9 @@ impl ::bevy::app::Plugin for BevyMathScriptingPlugin { _self: Ref, other: Ref| { - let output: bool = ::bevy::math::primitives::Triangle3d::eq( - &_self, - &other, - ) + let output: bool = >::eq(&_self, &other) .into(); output }, @@ -2919,7 +2901,7 @@ impl ::bevy::app::Plugin for BevyMathScriptingPlugin { .overwrite_script_function( "clone", |_self: Ref| { - let output: Val = ::bevy::math::primitives::Triangle3d::clone( + let output: Val = ::clone( &_self, ) .into(); @@ -2930,7 +2912,7 @@ impl ::bevy::app::Plugin for BevyMathScriptingPlugin { .overwrite_script_function( "from_ray", |ray: Val, max: f32| { - let output: Val = ::bevy::math::bounding::RayCast2d::from_ray( + let output: Val = bevy::math::bounding::RayCast2d::from_ray( ray.into_inner(), max, ) @@ -2944,7 +2926,7 @@ impl ::bevy::app::Plugin for BevyMathScriptingPlugin { _self: Ref, aabb: Ref| { - let output: std::option::Option = ::bevy::math::bounding::RayCast2d::aabb_intersection_at( + let output: std::option::Option = bevy::math::bounding::RayCast2d::aabb_intersection_at( &_self, &aabb, ) @@ -2958,7 +2940,7 @@ impl ::bevy::app::Plugin for BevyMathScriptingPlugin { _self: Ref, circle: Ref| { - let output: std::option::Option = ::bevy::math::bounding::RayCast2d::circle_intersection_at( + let output: std::option::Option = bevy::math::bounding::RayCast2d::circle_intersection_at( &_self, &circle, ) @@ -2969,7 +2951,7 @@ impl ::bevy::app::Plugin for BevyMathScriptingPlugin { .overwrite_script_function( "clone", |_self: Ref| { - let output: Val = ::bevy::math::bounding::RayCast2d::clone( + let output: Val = ::clone( &_self, ) .into(); @@ -2980,7 +2962,7 @@ impl ::bevy::app::Plugin for BevyMathScriptingPlugin { .overwrite_script_function( "clone", |_self: Ref| { - let output: Val = ::bevy::math::bounding::AabbCast2d::clone( + let output: Val = ::clone( &_self, ) .into(); @@ -2994,7 +2976,7 @@ impl ::bevy::app::Plugin for BevyMathScriptingPlugin { ray: Val, max: f32| { - let output: Val = ::bevy::math::bounding::AabbCast2d::from_ray( + let output: Val = bevy::math::bounding::AabbCast2d::from_ray( aabb.into_inner(), ray.into_inner(), max, @@ -3009,7 +2991,7 @@ impl ::bevy::app::Plugin for BevyMathScriptingPlugin { _self: Ref, aabb: Val| { - let output: std::option::Option = ::bevy::math::bounding::AabbCast2d::aabb_collision_at( + let output: std::option::Option = bevy::math::bounding::AabbCast2d::aabb_collision_at( &_self, aabb.into_inner(), ) @@ -3025,7 +3007,7 @@ impl ::bevy::app::Plugin for BevyMathScriptingPlugin { ray: Val, max: f32| { - let output: Val = ::bevy::math::bounding::BoundingCircleCast::from_ray( + let output: Val = bevy::math::bounding::BoundingCircleCast::from_ray( circle.into_inner(), ray.into_inner(), max, @@ -3040,7 +3022,7 @@ impl ::bevy::app::Plugin for BevyMathScriptingPlugin { _self: Ref, circle: Val| { - let output: std::option::Option = ::bevy::math::bounding::BoundingCircleCast::circle_collision_at( + let output: std::option::Option = bevy::math::bounding::BoundingCircleCast::circle_collision_at( &_self, circle.into_inner(), ) @@ -3051,7 +3033,7 @@ impl ::bevy::app::Plugin for BevyMathScriptingPlugin { .overwrite_script_function( "clone", |_self: Ref| { - let output: Val = ::bevy::math::bounding::BoundingCircleCast::clone( + let output: Val = ::clone( &_self, ) .into(); @@ -3062,7 +3044,7 @@ impl ::bevy::app::Plugin for BevyMathScriptingPlugin { .overwrite_script_function( "from_ray", |ray: Val, max: f32| { - let output: Val = ::bevy::math::bounding::RayCast3d::from_ray( + let output: Val = bevy::math::bounding::RayCast3d::from_ray( ray.into_inner(), max, ) @@ -3076,7 +3058,7 @@ impl ::bevy::app::Plugin for BevyMathScriptingPlugin { _self: Ref, aabb: Ref| { - let output: std::option::Option = ::bevy::math::bounding::RayCast3d::aabb_intersection_at( + let output: std::option::Option = bevy::math::bounding::RayCast3d::aabb_intersection_at( &_self, &aabb, ) @@ -3090,7 +3072,7 @@ impl ::bevy::app::Plugin for BevyMathScriptingPlugin { _self: Ref, sphere: Ref| { - let output: std::option::Option = ::bevy::math::bounding::RayCast3d::sphere_intersection_at( + let output: std::option::Option = bevy::math::bounding::RayCast3d::sphere_intersection_at( &_self, &sphere, ) @@ -3101,7 +3083,7 @@ impl ::bevy::app::Plugin for BevyMathScriptingPlugin { .overwrite_script_function( "clone", |_self: Ref| { - let output: Val = ::bevy::math::bounding::RayCast3d::clone( + let output: Val = ::clone( &_self, ) .into(); @@ -3116,7 +3098,7 @@ impl ::bevy::app::Plugin for BevyMathScriptingPlugin { ray: Val, max: f32| { - let output: Val = ::bevy::math::bounding::AabbCast3d::from_ray( + let output: Val = bevy::math::bounding::AabbCast3d::from_ray( aabb.into_inner(), ray.into_inner(), max, @@ -3131,7 +3113,7 @@ impl ::bevy::app::Plugin for BevyMathScriptingPlugin { _self: Ref, aabb: Val| { - let output: std::option::Option = ::bevy::math::bounding::AabbCast3d::aabb_collision_at( + let output: std::option::Option = bevy::math::bounding::AabbCast3d::aabb_collision_at( &_self, aabb.into_inner(), ) @@ -3142,7 +3124,7 @@ impl ::bevy::app::Plugin for BevyMathScriptingPlugin { .overwrite_script_function( "clone", |_self: Ref| { - let output: Val = ::bevy::math::bounding::AabbCast3d::clone( + let output: Val = ::clone( &_self, ) .into(); @@ -3153,7 +3135,7 @@ impl ::bevy::app::Plugin for BevyMathScriptingPlugin { .overwrite_script_function( "clone", |_self: Ref| { - let output: Val = ::bevy::math::bounding::BoundingSphereCast::clone( + let output: Val = ::clone( &_self, ) .into(); @@ -3167,7 +3149,7 @@ impl ::bevy::app::Plugin for BevyMathScriptingPlugin { ray: Val, max: f32| { - let output: Val = ::bevy::math::bounding::BoundingSphereCast::from_ray( + let output: Val = bevy::math::bounding::BoundingSphereCast::from_ray( sphere.into_inner(), ray.into_inner(), max, @@ -3182,7 +3164,7 @@ impl ::bevy::app::Plugin for BevyMathScriptingPlugin { _self: Ref, sphere: Val| { - let output: std::option::Option = ::bevy::math::bounding::BoundingSphereCast::sphere_collision_at( + let output: std::option::Option = bevy::math::bounding::BoundingSphereCast::sphere_collision_at( &_self, sphere.into_inner(), ) @@ -3194,7 +3176,7 @@ impl ::bevy::app::Plugin for BevyMathScriptingPlugin { .overwrite_script_function( "clone", |_self: Ref| { - let output: Val = ::bevy::math::curve::interval::Interval::clone( + let output: Val = ::clone( &_self, ) .into(); @@ -3204,7 +3186,7 @@ impl ::bevy::app::Plugin for BevyMathScriptingPlugin { .overwrite_script_function( "start", |_self: Val| { - let output: f32 = ::bevy::math::curve::interval::Interval::start( + let output: f32 = bevy::math::curve::interval::Interval::start( _self.into_inner(), ) .into(); @@ -3214,7 +3196,7 @@ impl ::bevy::app::Plugin for BevyMathScriptingPlugin { .overwrite_script_function( "end", |_self: Val| { - let output: f32 = ::bevy::math::curve::interval::Interval::end( + let output: f32 = bevy::math::curve::interval::Interval::end( _self.into_inner(), ) .into(); @@ -3224,7 +3206,7 @@ impl ::bevy::app::Plugin for BevyMathScriptingPlugin { .overwrite_script_function( "length", |_self: Val| { - let output: f32 = ::bevy::math::curve::interval::Interval::length( + let output: f32 = bevy::math::curve::interval::Interval::length( _self.into_inner(), ) .into(); @@ -3234,7 +3216,7 @@ impl ::bevy::app::Plugin for BevyMathScriptingPlugin { .overwrite_script_function( "is_bounded", |_self: Val| { - let output: bool = ::bevy::math::curve::interval::Interval::is_bounded( + let output: bool = bevy::math::curve::interval::Interval::is_bounded( _self.into_inner(), ) .into(); @@ -3244,7 +3226,7 @@ impl ::bevy::app::Plugin for BevyMathScriptingPlugin { .overwrite_script_function( "has_finite_start", |_self: Val| { - let output: bool = ::bevy::math::curve::interval::Interval::has_finite_start( + let output: bool = bevy::math::curve::interval::Interval::has_finite_start( _self.into_inner(), ) .into(); @@ -3254,7 +3236,7 @@ impl ::bevy::app::Plugin for BevyMathScriptingPlugin { .overwrite_script_function( "has_finite_end", |_self: Val| { - let output: bool = ::bevy::math::curve::interval::Interval::has_finite_end( + let output: bool = bevy::math::curve::interval::Interval::has_finite_end( _self.into_inner(), ) .into(); @@ -3264,7 +3246,7 @@ impl ::bevy::app::Plugin for BevyMathScriptingPlugin { .overwrite_script_function( "contains", |_self: Val, item: f32| { - let output: bool = ::bevy::math::curve::interval::Interval::contains( + let output: bool = bevy::math::curve::interval::Interval::contains( _self.into_inner(), item, ) @@ -3278,7 +3260,7 @@ impl ::bevy::app::Plugin for BevyMathScriptingPlugin { _self: Val, other: Val| { - let output: bool = ::bevy::math::curve::interval::Interval::contains_interval( + let output: bool = bevy::math::curve::interval::Interval::contains_interval( _self.into_inner(), other.into_inner(), ) @@ -3289,7 +3271,7 @@ impl ::bevy::app::Plugin for BevyMathScriptingPlugin { .overwrite_script_function( "clamp", |_self: Val, value: f32| { - let output: f32 = ::bevy::math::curve::interval::Interval::clamp( + let output: f32 = bevy::math::curve::interval::Interval::clamp( _self.into_inner(), value, ) @@ -3303,10 +3285,9 @@ impl ::bevy::app::Plugin for BevyMathScriptingPlugin { _self: Ref, other: Ref| { - let output: bool = ::bevy::math::curve::interval::Interval::eq( - &_self, - &other, - ) + let output: bool = >::eq(&_self, &other) .into(); output }, @@ -3315,7 +3296,7 @@ impl ::bevy::app::Plugin for BevyMathScriptingPlugin { .overwrite_script_function( "clone", |_self: Ref| { - let output: Val = ::bevy::math::FloatOrd::clone( + let output: Val = ::clone( &_self, ) .into(); @@ -3325,35 +3306,47 @@ impl ::bevy::app::Plugin for BevyMathScriptingPlugin { .overwrite_script_function( "lt", |_self: Ref, other: Ref| { - let output: bool = ::bevy::math::FloatOrd::lt(&_self, &other).into(); + let output: bool = >::lt(&_self, &other) + .into(); output }, ) .overwrite_script_function( "le", |_self: Ref, other: Ref| { - let output: bool = ::bevy::math::FloatOrd::le(&_self, &other).into(); + let output: bool = >::le(&_self, &other) + .into(); output }, ) .overwrite_script_function( "gt", |_self: Ref, other: Ref| { - let output: bool = ::bevy::math::FloatOrd::gt(&_self, &other).into(); + let output: bool = >::gt(&_self, &other) + .into(); output }, ) .overwrite_script_function( "ge", |_self: Ref, other: Ref| { - let output: bool = ::bevy::math::FloatOrd::ge(&_self, &other).into(); + let output: bool = >::ge(&_self, &other) + .into(); output }, ) .overwrite_script_function( "neg", |_self: Val| { - let output: Val = ::bevy::math::FloatOrd::neg( + let output: Val = ::neg( _self.into_inner(), ) .into(); @@ -3363,7 +3356,10 @@ impl ::bevy::app::Plugin for BevyMathScriptingPlugin { .overwrite_script_function( "eq", |_self: Ref, other: Ref| { - let output: bool = ::bevy::math::FloatOrd::eq(&_self, &other).into(); + let output: bool = >::eq(&_self, &other) + .into(); output }, ); @@ -3371,7 +3367,7 @@ impl ::bevy::app::Plugin for BevyMathScriptingPlugin { .overwrite_script_function( "clone", |_self: Ref| { - let output: Val = ::bevy::math::primitives::Plane3d::clone( + let output: Val = ::clone( &_self, ) .into(); @@ -3384,10 +3380,9 @@ impl ::bevy::app::Plugin for BevyMathScriptingPlugin { _self: Ref, other: Ref| { - let output: bool = ::bevy::math::primitives::Plane3d::eq( - &_self, - &other, - ) + let output: bool = >::eq(&_self, &other) .into(); output }, @@ -3396,7 +3391,7 @@ impl ::bevy::app::Plugin for BevyMathScriptingPlugin { .overwrite_script_function( "signed_volume", |_self: Ref| { - let output: f32 = ::bevy::math::primitives::Tetrahedron::signed_volume( + let output: f32 = bevy::math::primitives::Tetrahedron::signed_volume( &_self, ) .into(); @@ -3409,10 +3404,9 @@ impl ::bevy::app::Plugin for BevyMathScriptingPlugin { _self: Ref, other: Ref| { - let output: bool = ::bevy::math::primitives::Tetrahedron::eq( - &_self, - &other, - ) + let output: bool = >::eq(&_self, &other) .into(); output }, @@ -3420,7 +3414,7 @@ impl ::bevy::app::Plugin for BevyMathScriptingPlugin { .overwrite_script_function( "clone", |_self: Ref| { - let output: Val = ::bevy::math::primitives::Tetrahedron::clone( + let output: Val = ::clone( &_self, ) .into(); @@ -3431,7 +3425,7 @@ impl ::bevy::app::Plugin for BevyMathScriptingPlugin { .overwrite_script_function( "clone", |_self: Ref| { - let output: Val = ::bevy::math::curve::easing::EaseFunction::clone( + let output: Val = ::clone( &_self, ) .into(); @@ -3444,10 +3438,9 @@ impl ::bevy::app::Plugin for BevyMathScriptingPlugin { _self: Ref, other: Ref| { - let output: bool = ::bevy::math::curve::easing::EaseFunction::eq( - &_self, - &other, - ) + let output: bool = >::eq(&_self, &other) .into(); output }, diff --git a/crates/bevy_mod_scripting_functions/src/bevy_bindings/bevy_reflect.rs b/crates/bevy_mod_scripting_functions/src/bevy_bindings/bevy_reflect.rs index c23d6e952f..840e61ba15 100644 --- a/crates/bevy_mod_scripting_functions/src/bevy_bindings/bevy_reflect.rs +++ b/crates/bevy_mod_scripting_functions/src/bevy_bindings/bevy_reflect.rs @@ -15,7 +15,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "new", |v: bool| { - let output: Val = ::std::sync::atomic::AtomicBool::new( + let output: Val = std::sync::atomic::AtomicBool::new( v, ) .into(); @@ -25,7 +25,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "into_inner", |_self: Val| { - let output: bool = ::std::sync::atomic::AtomicBool::into_inner( + let output: bool = std::sync::atomic::AtomicBool::into_inner( _self.into_inner(), ) .into(); @@ -36,7 +36,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "new", |v: i16| { - let output: Val = ::std::sync::atomic::AtomicI16::new( + let output: Val = std::sync::atomic::AtomicI16::new( v, ) .into(); @@ -46,7 +46,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "into_inner", |_self: Val| { - let output: i16 = ::std::sync::atomic::AtomicI16::into_inner( + let output: i16 = std::sync::atomic::AtomicI16::into_inner( _self.into_inner(), ) .into(); @@ -57,7 +57,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "new", |v: i32| { - let output: Val = ::std::sync::atomic::AtomicI32::new( + let output: Val = std::sync::atomic::AtomicI32::new( v, ) .into(); @@ -67,7 +67,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "into_inner", |_self: Val| { - let output: i32 = ::std::sync::atomic::AtomicI32::into_inner( + let output: i32 = std::sync::atomic::AtomicI32::into_inner( _self.into_inner(), ) .into(); @@ -78,7 +78,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "new", |v: i64| { - let output: Val = ::std::sync::atomic::AtomicI64::new( + let output: Val = std::sync::atomic::AtomicI64::new( v, ) .into(); @@ -88,7 +88,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "into_inner", |_self: Val| { - let output: i64 = ::std::sync::atomic::AtomicI64::into_inner( + let output: i64 = std::sync::atomic::AtomicI64::into_inner( _self.into_inner(), ) .into(); @@ -99,7 +99,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "new", |v: i8| { - let output: Val = ::std::sync::atomic::AtomicI8::new( + let output: Val = std::sync::atomic::AtomicI8::new( v, ) .into(); @@ -109,7 +109,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "into_inner", |_self: Val| { - let output: i8 = ::std::sync::atomic::AtomicI8::into_inner( + let output: i8 = std::sync::atomic::AtomicI8::into_inner( _self.into_inner(), ) .into(); @@ -120,7 +120,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "new", |v: isize| { - let output: Val = ::std::sync::atomic::AtomicIsize::new( + let output: Val = std::sync::atomic::AtomicIsize::new( v, ) .into(); @@ -130,7 +130,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "into_inner", |_self: Val| { - let output: isize = ::std::sync::atomic::AtomicIsize::into_inner( + let output: isize = std::sync::atomic::AtomicIsize::into_inner( _self.into_inner(), ) .into(); @@ -141,7 +141,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "new", |v: u16| { - let output: Val = ::std::sync::atomic::AtomicU16::new( + let output: Val = std::sync::atomic::AtomicU16::new( v, ) .into(); @@ -151,7 +151,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "into_inner", |_self: Val| { - let output: u16 = ::std::sync::atomic::AtomicU16::into_inner( + let output: u16 = std::sync::atomic::AtomicU16::into_inner( _self.into_inner(), ) .into(); @@ -162,7 +162,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "new", |v: u32| { - let output: Val = ::std::sync::atomic::AtomicU32::new( + let output: Val = std::sync::atomic::AtomicU32::new( v, ) .into(); @@ -172,7 +172,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "into_inner", |_self: Val| { - let output: u32 = ::std::sync::atomic::AtomicU32::into_inner( + let output: u32 = std::sync::atomic::AtomicU32::into_inner( _self.into_inner(), ) .into(); @@ -183,7 +183,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "new", |v: u64| { - let output: Val = ::std::sync::atomic::AtomicU64::new( + let output: Val = std::sync::atomic::AtomicU64::new( v, ) .into(); @@ -193,7 +193,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "into_inner", |_self: Val| { - let output: u64 = ::std::sync::atomic::AtomicU64::into_inner( + let output: u64 = std::sync::atomic::AtomicU64::into_inner( _self.into_inner(), ) .into(); @@ -204,7 +204,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "new", |v: u8| { - let output: Val = ::std::sync::atomic::AtomicU8::new( + let output: Val = std::sync::atomic::AtomicU8::new( v, ) .into(); @@ -214,7 +214,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "into_inner", |_self: Val| { - let output: u8 = ::std::sync::atomic::AtomicU8::into_inner( + let output: u8 = std::sync::atomic::AtomicU8::into_inner( _self.into_inner(), ) .into(); @@ -225,7 +225,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "new", |v: usize| { - let output: Val = ::std::sync::atomic::AtomicUsize::new( + let output: Val = std::sync::atomic::AtomicUsize::new( v, ) .into(); @@ -235,7 +235,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "into_inner", |_self: Val| { - let output: usize = ::std::sync::atomic::AtomicUsize::into_inner( + let output: usize = std::sync::atomic::AtomicUsize::into_inner( _self.into_inner(), ) .into(); @@ -246,10 +246,9 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "mul", |_self: Val, rhs: u32| { - let output: Val = ::bevy::utils::Duration::mul( - _self.into_inner(), - rhs, - ) + let output: Val = >::mul(_self.into_inner(), rhs) .into(); output }, @@ -257,7 +256,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "assert_receiver_is_total_eq", |_self: Ref| { - let output: () = ::bevy::utils::Duration::assert_receiver_is_total_eq( + let output: () = ::assert_receiver_is_total_eq( &_self, ) .into(); @@ -267,7 +266,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "clone", |_self: Ref| { - let output: Val = ::bevy::utils::Duration::clone( + let output: Val = ::clone( &_self, ) .into(); @@ -277,10 +276,9 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "sub", |_self: Val, rhs: Val| { - let output: Val = ::bevy::utils::Duration::sub( - _self.into_inner(), - rhs.into_inner(), - ) + let output: Val = >::sub(_self.into_inner(), rhs.into_inner()) .into(); output }, @@ -288,10 +286,9 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "add", |_self: Val, rhs: Val| { - let output: Val = ::bevy::utils::Duration::add( - _self.into_inner(), - rhs.into_inner(), - ) + let output: Val = >::add(_self.into_inner(), rhs.into_inner()) .into(); output }, @@ -299,7 +296,9 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "eq", |_self: Ref, other: Ref| { - let output: bool = ::bevy::utils::Duration::eq(&_self, &other) + let output: bool = >::eq(&_self, &other) .into(); output }, @@ -307,10 +306,9 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "div", |_self: Val, rhs: u32| { - let output: Val = ::bevy::utils::Duration::div( - _self.into_inner(), - rhs, - ) + let output: Val = >::div(_self.into_inner(), rhs) .into(); output }, @@ -318,7 +316,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "new", |secs: u64, nanos: u32| { - let output: Val = ::bevy::utils::Duration::new( + let output: Val = bevy::utils::Duration::new( secs, nanos, ) @@ -329,7 +327,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "from_secs", |secs: u64| { - let output: Val = ::bevy::utils::Duration::from_secs( + let output: Val = bevy::utils::Duration::from_secs( secs, ) .into(); @@ -339,7 +337,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "from_millis", |millis: u64| { - let output: Val = ::bevy::utils::Duration::from_millis( + let output: Val = bevy::utils::Duration::from_millis( millis, ) .into(); @@ -349,7 +347,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "from_micros", |micros: u64| { - let output: Val = ::bevy::utils::Duration::from_micros( + let output: Val = bevy::utils::Duration::from_micros( micros, ) .into(); @@ -359,7 +357,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "from_nanos", |nanos: u64| { - let output: Val = ::bevy::utils::Duration::from_nanos( + let output: Val = bevy::utils::Duration::from_nanos( nanos, ) .into(); @@ -369,21 +367,21 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "is_zero", |_self: Ref| { - let output: bool = ::bevy::utils::Duration::is_zero(&_self).into(); + let output: bool = bevy::utils::Duration::is_zero(&_self).into(); output }, ) .overwrite_script_function( "as_secs", |_self: Ref| { - let output: u64 = ::bevy::utils::Duration::as_secs(&_self).into(); + let output: u64 = bevy::utils::Duration::as_secs(&_self).into(); output }, ) .overwrite_script_function( "subsec_millis", |_self: Ref| { - let output: u32 = ::bevy::utils::Duration::subsec_millis(&_self) + let output: u32 = bevy::utils::Duration::subsec_millis(&_self) .into(); output }, @@ -391,7 +389,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "subsec_micros", |_self: Ref| { - let output: u32 = ::bevy::utils::Duration::subsec_micros(&_self) + let output: u32 = bevy::utils::Duration::subsec_micros(&_self) .into(); output }, @@ -399,36 +397,35 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "subsec_nanos", |_self: Ref| { - let output: u32 = ::bevy::utils::Duration::subsec_nanos(&_self) - .into(); + let output: u32 = bevy::utils::Duration::subsec_nanos(&_self).into(); output }, ) .overwrite_script_function( "as_millis", |_self: Ref| { - let output: u128 = ::bevy::utils::Duration::as_millis(&_self).into(); + let output: u128 = bevy::utils::Duration::as_millis(&_self).into(); output }, ) .overwrite_script_function( "as_micros", |_self: Ref| { - let output: u128 = ::bevy::utils::Duration::as_micros(&_self).into(); + let output: u128 = bevy::utils::Duration::as_micros(&_self).into(); output }, ) .overwrite_script_function( "as_nanos", |_self: Ref| { - let output: u128 = ::bevy::utils::Duration::as_nanos(&_self).into(); + let output: u128 = bevy::utils::Duration::as_nanos(&_self).into(); output }, ) .overwrite_script_function( "abs_diff", |_self: Val, other: Val| { - let output: Val = ::bevy::utils::Duration::abs_diff( + let output: Val = bevy::utils::Duration::abs_diff( _self.into_inner(), other.into_inner(), ) @@ -439,7 +436,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "saturating_add", |_self: Val, rhs: Val| { - let output: Val = ::bevy::utils::Duration::saturating_add( + let output: Val = bevy::utils::Duration::saturating_add( _self.into_inner(), rhs.into_inner(), ) @@ -450,7 +447,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "saturating_sub", |_self: Val, rhs: Val| { - let output: Val = ::bevy::utils::Duration::saturating_sub( + let output: Val = bevy::utils::Duration::saturating_sub( _self.into_inner(), rhs.into_inner(), ) @@ -461,7 +458,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "saturating_mul", |_self: Val, rhs: u32| { - let output: Val = ::bevy::utils::Duration::saturating_mul( + let output: Val = bevy::utils::Duration::saturating_mul( _self.into_inner(), rhs, ) @@ -472,23 +469,21 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "as_secs_f64", |_self: Ref| { - let output: f64 = ::bevy::utils::Duration::as_secs_f64(&_self) - .into(); + let output: f64 = bevy::utils::Duration::as_secs_f64(&_self).into(); output }, ) .overwrite_script_function( "as_secs_f32", |_self: Ref| { - let output: f32 = ::bevy::utils::Duration::as_secs_f32(&_self) - .into(); + let output: f32 = bevy::utils::Duration::as_secs_f32(&_self).into(); output }, ) .overwrite_script_function( "from_secs_f64", |secs: f64| { - let output: Val = ::bevy::utils::Duration::from_secs_f64( + let output: Val = bevy::utils::Duration::from_secs_f64( secs, ) .into(); @@ -498,7 +493,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "from_secs_f32", |secs: f32| { - let output: Val = ::bevy::utils::Duration::from_secs_f32( + let output: Val = bevy::utils::Duration::from_secs_f32( secs, ) .into(); @@ -508,7 +503,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "mul_f64", |_self: Val, rhs: f64| { - let output: Val = ::bevy::utils::Duration::mul_f64( + let output: Val = bevy::utils::Duration::mul_f64( _self.into_inner(), rhs, ) @@ -519,7 +514,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "mul_f32", |_self: Val, rhs: f32| { - let output: Val = ::bevy::utils::Duration::mul_f32( + let output: Val = bevy::utils::Duration::mul_f32( _self.into_inner(), rhs, ) @@ -530,7 +525,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "div_f64", |_self: Val, rhs: f64| { - let output: Val = ::bevy::utils::Duration::div_f64( + let output: Val = bevy::utils::Duration::div_f64( _self.into_inner(), rhs, ) @@ -541,7 +536,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "div_f32", |_self: Val, rhs: f32| { - let output: Val = ::bevy::utils::Duration::div_f32( + let output: Val = bevy::utils::Duration::div_f32( _self.into_inner(), rhs, ) @@ -552,7 +547,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "div_duration_f64", |_self: Val, rhs: Val| { - let output: f64 = ::bevy::utils::Duration::div_duration_f64( + let output: f64 = bevy::utils::Duration::div_duration_f64( _self.into_inner(), rhs.into_inner(), ) @@ -563,7 +558,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "div_duration_f32", |_self: Val, rhs: Val| { - let output: f32 = ::bevy::utils::Duration::div_duration_f32( + let output: f32 = bevy::utils::Duration::div_duration_f32( _self.into_inner(), rhs.into_inner(), ) @@ -575,7 +570,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "assert_receiver_is_total_eq", |_self: Ref| { - let output: () = ::bevy::utils::Instant::assert_receiver_is_total_eq( + let output: () = ::assert_receiver_is_total_eq( &_self, ) .into(); @@ -585,17 +580,19 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "eq", |_self: Ref, other: Ref| { - let output: bool = ::bevy::utils::Instant::eq(&_self, &other).into(); + let output: bool = >::eq(&_self, &other) + .into(); output }, ) .overwrite_script_function( "sub", |_self: Val, other: Val| { - let output: Val = ::bevy::utils::Instant::sub( - _self.into_inner(), - other.into_inner(), - ) + let output: Val = >::sub(_self.into_inner(), other.into_inner()) .into(); output }, @@ -603,10 +600,9 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "sub", |_self: Val, other: Val| { - let output: Val = ::bevy::utils::Instant::sub( - _self.into_inner(), - other.into_inner(), - ) + let output: Val = >::sub(_self.into_inner(), other.into_inner()) .into(); output }, @@ -614,7 +610,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "now", || { - let output: Val = ::bevy::utils::Instant::now() + let output: Val = bevy::utils::Instant::now() .into(); output }, @@ -622,7 +618,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "duration_since", |_self: Ref, earlier: Val| { - let output: Val = ::bevy::utils::Instant::duration_since( + let output: Val = bevy::utils::Instant::duration_since( &_self, earlier.into_inner(), ) @@ -633,7 +629,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "saturating_duration_since", |_self: Ref, earlier: Val| { - let output: Val = ::bevy::utils::Instant::saturating_duration_since( + let output: Val = bevy::utils::Instant::saturating_duration_since( &_self, earlier.into_inner(), ) @@ -644,7 +640,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "elapsed", |_self: Ref| { - let output: Val = ::bevy::utils::Instant::elapsed( + let output: Val = bevy::utils::Instant::elapsed( &_self, ) .into(); @@ -654,7 +650,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "clone", |_self: Ref| { - let output: Val = ::bevy::utils::Instant::clone( + let output: Val = ::clone( &_self, ) .into(); @@ -664,10 +660,9 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "add", |_self: Val, other: Val| { - let output: Val = ::bevy::utils::Instant::add( - _self.into_inner(), - other.into_inner(), - ) + let output: Val = >::add(_self.into_inner(), other.into_inner()) .into(); output }, @@ -676,7 +671,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "clone", |_self: Ref| { - let output: Val = ::std::ops::RangeFull::clone( + let output: Val = ::clone( &_self, ) .into(); @@ -686,7 +681,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "assert_receiver_is_total_eq", |_self: Ref| { - let output: () = ::std::ops::RangeFull::assert_receiver_is_total_eq( + let output: () = ::assert_receiver_is_total_eq( &_self, ) .into(); @@ -696,7 +691,10 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "eq", |_self: Ref, other: Ref| { - let output: bool = ::std::ops::RangeFull::eq(&_self, &other).into(); + let output: bool = >::eq(&_self, &other) + .into(); output }, ); @@ -704,10 +702,9 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "mul", |_self: Val, rhs: Val| { - let output: Val = ::bevy::math::Quat::mul( - _self.into_inner(), - rhs.into_inner(), - ) + let output: Val = >::mul(_self.into_inner(), rhs.into_inner()) .into(); output }, @@ -715,10 +712,9 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "add", |_self: Val, rhs: Val| { - let output: Val = ::bevy::math::Quat::add( - _self.into_inner(), - rhs.into_inner(), - ) + let output: Val = >::add(_self.into_inner(), rhs.into_inner()) .into(); output }, @@ -726,14 +722,19 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "eq", |_self: Ref, rhs: Ref| { - let output: bool = ::bevy::math::Quat::eq(&_self, &rhs).into(); + let output: bool = >::eq(&_self, &rhs) + .into(); output }, ) .overwrite_script_function( "clone", |_self: Ref| { - let output: Val = ::bevy::math::Quat::clone(&_self) + let output: Val = ::clone( + &_self, + ) .into(); output }, @@ -741,10 +742,9 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "mul", |_self: Val, rhs: Val| { - let output: Val = ::bevy::math::Quat::mul( - _self.into_inner(), - rhs.into_inner(), - ) + let output: Val = >::mul(_self.into_inner(), rhs.into_inner()) .into(); output }, @@ -752,10 +752,9 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "mul", |_self: Val, rhs: f32| { - let output: Val = ::bevy::math::Quat::mul( - _self.into_inner(), - rhs, - ) + let output: Val = >::mul(_self.into_inner(), rhs) .into(); output }, @@ -763,10 +762,9 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "sub", |_self: Val, rhs: Val| { - let output: Val = ::bevy::math::Quat::sub( - _self.into_inner(), - rhs.into_inner(), - ) + let output: Val = >::sub(_self.into_inner(), rhs.into_inner()) .into(); output }, @@ -774,7 +772,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "neg", |_self: Val| { - let output: Val = ::bevy::math::Quat::neg( + let output: Val = ::neg( _self.into_inner(), ) .into(); @@ -784,10 +782,9 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "mul", |_self: Val, rhs: Val| { - let output: Val = ::bevy::math::Quat::mul( - _self.into_inner(), - rhs.into_inner(), - ) + let output: Val = >::mul(_self.into_inner(), rhs.into_inner()) .into(); output }, @@ -795,10 +792,9 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "div", |_self: Val, rhs: f32| { - let output: Val = ::bevy::math::Quat::div( - _self.into_inner(), - rhs, - ) + let output: Val = >::div(_self.into_inner(), rhs) .into(); output }, @@ -806,7 +802,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "from_xyzw", |x: f32, y: f32, z: f32, w: f32| { - let output: Val = ::bevy::math::Quat::from_xyzw( + let output: Val = bevy::math::Quat::from_xyzw( x, y, z, @@ -819,7 +815,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "from_array", |a: [f32; 4]| { - let output: Val = ::bevy::math::Quat::from_array(a) + let output: Val = bevy::math::Quat::from_array(a) .into(); output }, @@ -827,7 +823,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "from_vec4", |v: Val| { - let output: Val = ::bevy::math::Quat::from_vec4( + let output: Val = bevy::math::Quat::from_vec4( v.into_inner(), ) .into(); @@ -837,7 +833,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "from_axis_angle", |axis: Val, angle: f32| { - let output: Val = ::bevy::math::Quat::from_axis_angle( + let output: Val = bevy::math::Quat::from_axis_angle( axis.into_inner(), angle, ) @@ -848,7 +844,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "from_scaled_axis", |v: Val| { - let output: Val = ::bevy::math::Quat::from_scaled_axis( + let output: Val = bevy::math::Quat::from_scaled_axis( v.into_inner(), ) .into(); @@ -858,7 +854,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "from_rotation_x", |angle: f32| { - let output: Val = ::bevy::math::Quat::from_rotation_x( + let output: Val = bevy::math::Quat::from_rotation_x( angle, ) .into(); @@ -868,7 +864,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "from_rotation_y", |angle: f32| { - let output: Val = ::bevy::math::Quat::from_rotation_y( + let output: Val = bevy::math::Quat::from_rotation_y( angle, ) .into(); @@ -878,7 +874,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "from_rotation_z", |angle: f32| { - let output: Val = ::bevy::math::Quat::from_rotation_z( + let output: Val = bevy::math::Quat::from_rotation_z( angle, ) .into(); @@ -888,7 +884,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "from_euler", |euler: Val, a: f32, b: f32, c: f32| { - let output: Val = ::bevy::math::Quat::from_euler( + let output: Val = bevy::math::Quat::from_euler( euler.into_inner(), a, b, @@ -901,9 +897,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "from_mat3", |mat: Ref| { - let output: Val = ::bevy::math::Quat::from_mat3( - &mat, - ) + let output: Val = bevy::math::Quat::from_mat3(&mat) .into(); output }, @@ -911,7 +905,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "from_mat3a", |mat: Ref| { - let output: Val = ::bevy::math::Quat::from_mat3a( + let output: Val = bevy::math::Quat::from_mat3a( &mat, ) .into(); @@ -921,9 +915,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "from_mat4", |mat: Ref| { - let output: Val = ::bevy::math::Quat::from_mat4( - &mat, - ) + let output: Val = bevy::math::Quat::from_mat4(&mat) .into(); output }, @@ -931,7 +923,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "from_rotation_arc", |from: Val, to: Val| { - let output: Val = ::bevy::math::Quat::from_rotation_arc( + let output: Val = bevy::math::Quat::from_rotation_arc( from.into_inner(), to.into_inner(), ) @@ -942,7 +934,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "from_rotation_arc_colinear", |from: Val, to: Val| { - let output: Val = ::bevy::math::Quat::from_rotation_arc_colinear( + let output: Val = bevy::math::Quat::from_rotation_arc_colinear( from.into_inner(), to.into_inner(), ) @@ -953,7 +945,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "from_rotation_arc_2d", |from: Val, to: Val| { - let output: Val = ::bevy::math::Quat::from_rotation_arc_2d( + let output: Val = bevy::math::Quat::from_rotation_arc_2d( from.into_inner(), to.into_inner(), ) @@ -964,7 +956,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "to_scaled_axis", |_self: Val| { - let output: Val = ::bevy::math::Quat::to_scaled_axis( + let output: Val = bevy::math::Quat::to_scaled_axis( _self.into_inner(), ) .into(); @@ -974,7 +966,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "to_euler", |_self: Val, order: Val| { - let output: (f32, f32, f32) = ::bevy::math::Quat::to_euler( + let output: (f32, f32, f32) = bevy::math::Quat::to_euler( _self.into_inner(), order.into_inner(), ) @@ -985,14 +977,14 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "to_array", |_self: Ref| { - let output: [f32; 4] = ::bevy::math::Quat::to_array(&_self).into(); + let output: [f32; 4] = bevy::math::Quat::to_array(&_self).into(); output }, ) .overwrite_script_function( "xyz", |_self: Val| { - let output: Val = ::bevy::math::Quat::xyz( + let output: Val = bevy::math::Quat::xyz( _self.into_inner(), ) .into(); @@ -1002,7 +994,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "conjugate", |_self: Val| { - let output: Val = ::bevy::math::Quat::conjugate( + let output: Val = bevy::math::Quat::conjugate( _self.into_inner(), ) .into(); @@ -1012,7 +1004,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "inverse", |_self: Val| { - let output: Val = ::bevy::math::Quat::inverse( + let output: Val = bevy::math::Quat::inverse( _self.into_inner(), ) .into(); @@ -1022,7 +1014,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "dot", |_self: Val, rhs: Val| { - let output: f32 = ::bevy::math::Quat::dot( + let output: f32 = bevy::math::Quat::dot( _self.into_inner(), rhs.into_inner(), ) @@ -1033,7 +1025,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "length", |_self: Val| { - let output: f32 = ::bevy::math::Quat::length(_self.into_inner()) + let output: f32 = bevy::math::Quat::length(_self.into_inner()) .into(); output }, @@ -1041,7 +1033,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "length_squared", |_self: Val| { - let output: f32 = ::bevy::math::Quat::length_squared( + let output: f32 = bevy::math::Quat::length_squared( _self.into_inner(), ) .into(); @@ -1051,9 +1043,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "length_recip", |_self: Val| { - let output: f32 = ::bevy::math::Quat::length_recip( - _self.into_inner(), - ) + let output: f32 = bevy::math::Quat::length_recip(_self.into_inner()) .into(); output }, @@ -1061,7 +1051,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "normalize", |_self: Val| { - let output: Val = ::bevy::math::Quat::normalize( + let output: Val = bevy::math::Quat::normalize( _self.into_inner(), ) .into(); @@ -1071,7 +1061,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "is_finite", |_self: Val| { - let output: bool = ::bevy::math::Quat::is_finite(_self.into_inner()) + let output: bool = bevy::math::Quat::is_finite(_self.into_inner()) .into(); output }, @@ -1079,7 +1069,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "is_nan", |_self: Val| { - let output: bool = ::bevy::math::Quat::is_nan(_self.into_inner()) + let output: bool = bevy::math::Quat::is_nan(_self.into_inner()) .into(); output }, @@ -1087,7 +1077,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "is_normalized", |_self: Val| { - let output: bool = ::bevy::math::Quat::is_normalized( + let output: bool = bevy::math::Quat::is_normalized( _self.into_inner(), ) .into(); @@ -1097,7 +1087,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "is_near_identity", |_self: Val| { - let output: bool = ::bevy::math::Quat::is_near_identity( + let output: bool = bevy::math::Quat::is_near_identity( _self.into_inner(), ) .into(); @@ -1107,7 +1097,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "angle_between", |_self: Val, rhs: Val| { - let output: f32 = ::bevy::math::Quat::angle_between( + let output: f32 = bevy::math::Quat::angle_between( _self.into_inner(), rhs.into_inner(), ) @@ -1122,7 +1112,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { rhs: Val, max_angle: f32| { - let output: Val = ::bevy::math::Quat::rotate_towards( + let output: Val = bevy::math::Quat::rotate_towards( &_self, rhs.into_inner(), max_angle, @@ -1138,7 +1128,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { rhs: Val, max_abs_diff: f32| { - let output: bool = ::bevy::math::Quat::abs_diff_eq( + let output: bool = bevy::math::Quat::abs_diff_eq( _self.into_inner(), rhs.into_inner(), max_abs_diff, @@ -1150,7 +1140,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "lerp", |_self: Val, end: Val, s: f32| { - let output: Val = ::bevy::math::Quat::lerp( + let output: Val = bevy::math::Quat::lerp( _self.into_inner(), end.into_inner(), s, @@ -1162,7 +1152,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "slerp", |_self: Val, end: Val, s: f32| { - let output: Val = ::bevy::math::Quat::slerp( + let output: Val = bevy::math::Quat::slerp( _self.into_inner(), end.into_inner(), s, @@ -1174,7 +1164,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "mul_vec3", |_self: Val, rhs: Val| { - let output: Val = ::bevy::math::Quat::mul_vec3( + let output: Val = bevy::math::Quat::mul_vec3( _self.into_inner(), rhs.into_inner(), ) @@ -1185,7 +1175,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "mul_quat", |_self: Val, rhs: Val| { - let output: Val = ::bevy::math::Quat::mul_quat( + let output: Val = bevy::math::Quat::mul_quat( _self.into_inner(), rhs.into_inner(), ) @@ -1196,7 +1186,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "from_affine3", |a: Ref| { - let output: Val = ::bevy::math::Quat::from_affine3( + let output: Val = bevy::math::Quat::from_affine3( &a, ) .into(); @@ -1206,7 +1196,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "mul_vec3a", |_self: Val, rhs: Val| { - let output: Val = ::bevy::math::Quat::mul_vec3a( + let output: Val = bevy::math::Quat::mul_vec3a( _self.into_inner(), rhs.into_inner(), ) @@ -1217,7 +1207,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "as_dquat", |_self: Val| { - let output: Val = ::bevy::math::Quat::as_dquat( + let output: Val = bevy::math::Quat::as_dquat( _self.into_inner(), ) .into(); @@ -1228,10 +1218,9 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "sub", |_self: Val, rhs: f32| { - let output: Val = ::bevy::math::Vec3::sub( - _self.into_inner(), - rhs, - ) + let output: Val = >::sub(_self.into_inner(), rhs) .into(); output }, @@ -1239,10 +1228,9 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "mul", |_self: Val, rhs: Val| { - let output: Val = ::bevy::math::Vec3::mul( - _self.into_inner(), - rhs.into_inner(), - ) + let output: Val = >::mul(_self.into_inner(), rhs.into_inner()) .into(); output }, @@ -1250,10 +1238,9 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "add", |_self: Val, rhs: Val| { - let output: Val = ::bevy::math::Vec3::add( - _self.into_inner(), - rhs.into_inner(), - ) + let output: Val = >::add(_self.into_inner(), rhs.into_inner()) .into(); output }, @@ -1261,10 +1248,9 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "rem", |_self: Val, rhs: Ref| { - let output: Val = ::bevy::math::Vec3::rem( - _self.into_inner(), - &rhs, - ) + let output: Val = >::rem(_self.into_inner(), &rhs) .into(); output }, @@ -1272,10 +1258,9 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "sub", |_self: Val, rhs: Ref| { - let output: Val = ::bevy::math::Vec3::sub( - _self.into_inner(), - &rhs, - ) + let output: Val = >::sub(_self.into_inner(), &rhs) .into(); output }, @@ -1283,10 +1268,9 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "div", |_self: Val, rhs: Ref| { - let output: Val = ::bevy::math::Vec3::div( - _self.into_inner(), - &rhs, - ) + let output: Val = >::div(_self.into_inner(), &rhs) .into(); output }, @@ -1294,10 +1278,9 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "mul", |_self: Val, rhs: Ref| { - let output: Val = ::bevy::math::Vec3::mul( - _self.into_inner(), - &rhs, - ) + let output: Val = >::mul(_self.into_inner(), &rhs) .into(); output }, @@ -1305,7 +1288,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "neg", |_self: Val| { - let output: Val = ::bevy::math::Vec3::neg( + let output: Val = ::neg( _self.into_inner(), ) .into(); @@ -1315,10 +1298,9 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "add", |_self: Val, rhs: f32| { - let output: Val = ::bevy::math::Vec3::add( - _self.into_inner(), - rhs, - ) + let output: Val = >::add(_self.into_inner(), rhs) .into(); output }, @@ -1326,7 +1308,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "new", |x: f32, y: f32, z: f32| { - let output: Val = ::bevy::math::Vec3::new(x, y, z) + let output: Val = bevy::math::Vec3::new(x, y, z) .into(); output }, @@ -1334,7 +1316,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "splat", |v: f32| { - let output: Val = ::bevy::math::Vec3::splat(v) + let output: Val = bevy::math::Vec3::splat(v) .into(); output }, @@ -1346,7 +1328,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { if_true: Val, if_false: Val| { - let output: Val = ::bevy::math::Vec3::select( + let output: Val = bevy::math::Vec3::select( mask.into_inner(), if_true.into_inner(), if_false.into_inner(), @@ -1358,7 +1340,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "from_array", |a: [f32; 3]| { - let output: Val = ::bevy::math::Vec3::from_array(a) + let output: Val = bevy::math::Vec3::from_array(a) .into(); output }, @@ -1366,14 +1348,14 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "to_array", |_self: Ref| { - let output: [f32; 3] = ::bevy::math::Vec3::to_array(&_self).into(); + let output: [f32; 3] = bevy::math::Vec3::to_array(&_self).into(); output }, ) .overwrite_script_function( "extend", |_self: Val, w: f32| { - let output: Val = ::bevy::math::Vec3::extend( + let output: Val = bevy::math::Vec3::extend( _self.into_inner(), w, ) @@ -1384,7 +1366,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "truncate", |_self: Val| { - let output: Val = ::bevy::math::Vec3::truncate( + let output: Val = bevy::math::Vec3::truncate( _self.into_inner(), ) .into(); @@ -1394,7 +1376,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "with_x", |_self: Val, x: f32| { - let output: Val = ::bevy::math::Vec3::with_x( + let output: Val = bevy::math::Vec3::with_x( _self.into_inner(), x, ) @@ -1405,7 +1387,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "with_y", |_self: Val, y: f32| { - let output: Val = ::bevy::math::Vec3::with_y( + let output: Val = bevy::math::Vec3::with_y( _self.into_inner(), y, ) @@ -1416,7 +1398,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "with_z", |_self: Val, z: f32| { - let output: Val = ::bevy::math::Vec3::with_z( + let output: Val = bevy::math::Vec3::with_z( _self.into_inner(), z, ) @@ -1427,7 +1409,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "dot", |_self: Val, rhs: Val| { - let output: f32 = ::bevy::math::Vec3::dot( + let output: f32 = bevy::math::Vec3::dot( _self.into_inner(), rhs.into_inner(), ) @@ -1438,7 +1420,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "dot_into_vec", |_self: Val, rhs: Val| { - let output: Val = ::bevy::math::Vec3::dot_into_vec( + let output: Val = bevy::math::Vec3::dot_into_vec( _self.into_inner(), rhs.into_inner(), ) @@ -1449,7 +1431,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "cross", |_self: Val, rhs: Val| { - let output: Val = ::bevy::math::Vec3::cross( + let output: Val = bevy::math::Vec3::cross( _self.into_inner(), rhs.into_inner(), ) @@ -1460,7 +1442,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "min", |_self: Val, rhs: Val| { - let output: Val = ::bevy::math::Vec3::min( + let output: Val = bevy::math::Vec3::min( _self.into_inner(), rhs.into_inner(), ) @@ -1471,7 +1453,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "max", |_self: Val, rhs: Val| { - let output: Val = ::bevy::math::Vec3::max( + let output: Val = bevy::math::Vec3::max( _self.into_inner(), rhs.into_inner(), ) @@ -1486,7 +1468,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { min: Val, max: Val| { - let output: Val = ::bevy::math::Vec3::clamp( + let output: Val = bevy::math::Vec3::clamp( _self.into_inner(), min.into_inner(), max.into_inner(), @@ -1498,7 +1480,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "min_element", |_self: Val| { - let output: f32 = ::bevy::math::Vec3::min_element(_self.into_inner()) + let output: f32 = bevy::math::Vec3::min_element(_self.into_inner()) .into(); output }, @@ -1506,7 +1488,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "max_element", |_self: Val| { - let output: f32 = ::bevy::math::Vec3::max_element(_self.into_inner()) + let output: f32 = bevy::math::Vec3::max_element(_self.into_inner()) .into(); output }, @@ -1514,7 +1496,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "element_sum", |_self: Val| { - let output: f32 = ::bevy::math::Vec3::element_sum(_self.into_inner()) + let output: f32 = bevy::math::Vec3::element_sum(_self.into_inner()) .into(); output }, @@ -1522,7 +1504,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "element_product", |_self: Val| { - let output: f32 = ::bevy::math::Vec3::element_product( + let output: f32 = bevy::math::Vec3::element_product( _self.into_inner(), ) .into(); @@ -1532,7 +1514,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "cmpeq", |_self: Val, rhs: Val| { - let output: Val = ::bevy::math::Vec3::cmpeq( + let output: Val = bevy::math::Vec3::cmpeq( _self.into_inner(), rhs.into_inner(), ) @@ -1543,7 +1525,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "cmpne", |_self: Val, rhs: Val| { - let output: Val = ::bevy::math::Vec3::cmpne( + let output: Val = bevy::math::Vec3::cmpne( _self.into_inner(), rhs.into_inner(), ) @@ -1554,7 +1536,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "cmpge", |_self: Val, rhs: Val| { - let output: Val = ::bevy::math::Vec3::cmpge( + let output: Val = bevy::math::Vec3::cmpge( _self.into_inner(), rhs.into_inner(), ) @@ -1565,7 +1547,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "cmpgt", |_self: Val, rhs: Val| { - let output: Val = ::bevy::math::Vec3::cmpgt( + let output: Val = bevy::math::Vec3::cmpgt( _self.into_inner(), rhs.into_inner(), ) @@ -1576,7 +1558,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "cmple", |_self: Val, rhs: Val| { - let output: Val = ::bevy::math::Vec3::cmple( + let output: Val = bevy::math::Vec3::cmple( _self.into_inner(), rhs.into_inner(), ) @@ -1587,7 +1569,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "cmplt", |_self: Val, rhs: Val| { - let output: Val = ::bevy::math::Vec3::cmplt( + let output: Val = bevy::math::Vec3::cmplt( _self.into_inner(), rhs.into_inner(), ) @@ -1598,7 +1580,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "abs", |_self: Val| { - let output: Val = ::bevy::math::Vec3::abs( + let output: Val = bevy::math::Vec3::abs( _self.into_inner(), ) .into(); @@ -1608,7 +1590,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "signum", |_self: Val| { - let output: Val = ::bevy::math::Vec3::signum( + let output: Val = bevy::math::Vec3::signum( _self.into_inner(), ) .into(); @@ -1618,7 +1600,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "copysign", |_self: Val, rhs: Val| { - let output: Val = ::bevy::math::Vec3::copysign( + let output: Val = bevy::math::Vec3::copysign( _self.into_inner(), rhs.into_inner(), ) @@ -1629,7 +1611,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "is_negative_bitmask", |_self: Val| { - let output: u32 = ::bevy::math::Vec3::is_negative_bitmask( + let output: u32 = bevy::math::Vec3::is_negative_bitmask( _self.into_inner(), ) .into(); @@ -1639,7 +1621,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "is_finite", |_self: Val| { - let output: bool = ::bevy::math::Vec3::is_finite(_self.into_inner()) + let output: bool = bevy::math::Vec3::is_finite(_self.into_inner()) .into(); output }, @@ -1647,7 +1629,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "is_finite_mask", |_self: Val| { - let output: Val = ::bevy::math::Vec3::is_finite_mask( + let output: Val = bevy::math::Vec3::is_finite_mask( _self.into_inner(), ) .into(); @@ -1657,7 +1639,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "is_nan", |_self: Val| { - let output: bool = ::bevy::math::Vec3::is_nan(_self.into_inner()) + let output: bool = bevy::math::Vec3::is_nan(_self.into_inner()) .into(); output }, @@ -1665,7 +1647,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "is_nan_mask", |_self: Val| { - let output: Val = ::bevy::math::Vec3::is_nan_mask( + let output: Val = bevy::math::Vec3::is_nan_mask( _self.into_inner(), ) .into(); @@ -1675,7 +1657,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "length", |_self: Val| { - let output: f32 = ::bevy::math::Vec3::length(_self.into_inner()) + let output: f32 = bevy::math::Vec3::length(_self.into_inner()) .into(); output }, @@ -1683,7 +1665,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "length_squared", |_self: Val| { - let output: f32 = ::bevy::math::Vec3::length_squared( + let output: f32 = bevy::math::Vec3::length_squared( _self.into_inner(), ) .into(); @@ -1693,9 +1675,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "length_recip", |_self: Val| { - let output: f32 = ::bevy::math::Vec3::length_recip( - _self.into_inner(), - ) + let output: f32 = bevy::math::Vec3::length_recip(_self.into_inner()) .into(); output }, @@ -1703,7 +1683,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "distance", |_self: Val, rhs: Val| { - let output: f32 = ::bevy::math::Vec3::distance( + let output: f32 = bevy::math::Vec3::distance( _self.into_inner(), rhs.into_inner(), ) @@ -1714,7 +1694,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "distance_squared", |_self: Val, rhs: Val| { - let output: f32 = ::bevy::math::Vec3::distance_squared( + let output: f32 = bevy::math::Vec3::distance_squared( _self.into_inner(), rhs.into_inner(), ) @@ -1725,7 +1705,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "div_euclid", |_self: Val, rhs: Val| { - let output: Val = ::bevy::math::Vec3::div_euclid( + let output: Val = bevy::math::Vec3::div_euclid( _self.into_inner(), rhs.into_inner(), ) @@ -1736,7 +1716,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "rem_euclid", |_self: Val, rhs: Val| { - let output: Val = ::bevy::math::Vec3::rem_euclid( + let output: Val = bevy::math::Vec3::rem_euclid( _self.into_inner(), rhs.into_inner(), ) @@ -1747,7 +1727,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "normalize", |_self: Val| { - let output: Val = ::bevy::math::Vec3::normalize( + let output: Val = bevy::math::Vec3::normalize( _self.into_inner(), ) .into(); @@ -1757,7 +1737,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "normalize_or", |_self: Val, fallback: Val| { - let output: Val = ::bevy::math::Vec3::normalize_or( + let output: Val = bevy::math::Vec3::normalize_or( _self.into_inner(), fallback.into_inner(), ) @@ -1768,7 +1748,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "normalize_or_zero", |_self: Val| { - let output: Val = ::bevy::math::Vec3::normalize_or_zero( + let output: Val = bevy::math::Vec3::normalize_or_zero( _self.into_inner(), ) .into(); @@ -1778,7 +1758,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "is_normalized", |_self: Val| { - let output: bool = ::bevy::math::Vec3::is_normalized( + let output: bool = bevy::math::Vec3::is_normalized( _self.into_inner(), ) .into(); @@ -1788,7 +1768,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "project_onto", |_self: Val, rhs: Val| { - let output: Val = ::bevy::math::Vec3::project_onto( + let output: Val = bevy::math::Vec3::project_onto( _self.into_inner(), rhs.into_inner(), ) @@ -1799,7 +1779,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "reject_from", |_self: Val, rhs: Val| { - let output: Val = ::bevy::math::Vec3::reject_from( + let output: Val = bevy::math::Vec3::reject_from( _self.into_inner(), rhs.into_inner(), ) @@ -1810,7 +1790,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "project_onto_normalized", |_self: Val, rhs: Val| { - let output: Val = ::bevy::math::Vec3::project_onto_normalized( + let output: Val = bevy::math::Vec3::project_onto_normalized( _self.into_inner(), rhs.into_inner(), ) @@ -1821,7 +1801,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "reject_from_normalized", |_self: Val, rhs: Val| { - let output: Val = ::bevy::math::Vec3::reject_from_normalized( + let output: Val = bevy::math::Vec3::reject_from_normalized( _self.into_inner(), rhs.into_inner(), ) @@ -1832,7 +1812,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "round", |_self: Val| { - let output: Val = ::bevy::math::Vec3::round( + let output: Val = bevy::math::Vec3::round( _self.into_inner(), ) .into(); @@ -1842,7 +1822,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "floor", |_self: Val| { - let output: Val = ::bevy::math::Vec3::floor( + let output: Val = bevy::math::Vec3::floor( _self.into_inner(), ) .into(); @@ -1852,7 +1832,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "ceil", |_self: Val| { - let output: Val = ::bevy::math::Vec3::ceil( + let output: Val = bevy::math::Vec3::ceil( _self.into_inner(), ) .into(); @@ -1862,7 +1842,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "trunc", |_self: Val| { - let output: Val = ::bevy::math::Vec3::trunc( + let output: Val = bevy::math::Vec3::trunc( _self.into_inner(), ) .into(); @@ -1872,7 +1852,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "fract", |_self: Val| { - let output: Val = ::bevy::math::Vec3::fract( + let output: Val = bevy::math::Vec3::fract( _self.into_inner(), ) .into(); @@ -1882,7 +1862,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "fract_gl", |_self: Val| { - let output: Val = ::bevy::math::Vec3::fract_gl( + let output: Val = bevy::math::Vec3::fract_gl( _self.into_inner(), ) .into(); @@ -1892,7 +1872,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "exp", |_self: Val| { - let output: Val = ::bevy::math::Vec3::exp( + let output: Val = bevy::math::Vec3::exp( _self.into_inner(), ) .into(); @@ -1902,7 +1882,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "powf", |_self: Val, n: f32| { - let output: Val = ::bevy::math::Vec3::powf( + let output: Val = bevy::math::Vec3::powf( _self.into_inner(), n, ) @@ -1913,7 +1893,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "recip", |_self: Val| { - let output: Val = ::bevy::math::Vec3::recip( + let output: Val = bevy::math::Vec3::recip( _self.into_inner(), ) .into(); @@ -1923,7 +1903,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "lerp", |_self: Val, rhs: Val, s: f32| { - let output: Val = ::bevy::math::Vec3::lerp( + let output: Val = bevy::math::Vec3::lerp( _self.into_inner(), rhs.into_inner(), s, @@ -1935,7 +1915,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "move_towards", |_self: Ref, rhs: Val, d: f32| { - let output: Val = ::bevy::math::Vec3::move_towards( + let output: Val = bevy::math::Vec3::move_towards( &_self, rhs.into_inner(), d, @@ -1947,7 +1927,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "midpoint", |_self: Val, rhs: Val| { - let output: Val = ::bevy::math::Vec3::midpoint( + let output: Val = bevy::math::Vec3::midpoint( _self.into_inner(), rhs.into_inner(), ) @@ -1962,7 +1942,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { rhs: Val, max_abs_diff: f32| { - let output: bool = ::bevy::math::Vec3::abs_diff_eq( + let output: bool = bevy::math::Vec3::abs_diff_eq( _self.into_inner(), rhs.into_inner(), max_abs_diff, @@ -1974,7 +1954,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "clamp_length", |_self: Val, min: f32, max: f32| { - let output: Val = ::bevy::math::Vec3::clamp_length( + let output: Val = bevy::math::Vec3::clamp_length( _self.into_inner(), min, max, @@ -1986,7 +1966,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "clamp_length_max", |_self: Val, max: f32| { - let output: Val = ::bevy::math::Vec3::clamp_length_max( + let output: Val = bevy::math::Vec3::clamp_length_max( _self.into_inner(), max, ) @@ -1997,7 +1977,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "clamp_length_min", |_self: Val, min: f32| { - let output: Val = ::bevy::math::Vec3::clamp_length_min( + let output: Val = bevy::math::Vec3::clamp_length_min( _self.into_inner(), min, ) @@ -2012,7 +1992,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { a: Val, b: Val| { - let output: Val = ::bevy::math::Vec3::mul_add( + let output: Val = bevy::math::Vec3::mul_add( _self.into_inner(), a.into_inner(), b.into_inner(), @@ -2024,7 +2004,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "reflect", |_self: Val, normal: Val| { - let output: Val = ::bevy::math::Vec3::reflect( + let output: Val = bevy::math::Vec3::reflect( _self.into_inner(), normal.into_inner(), ) @@ -2035,7 +2015,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "refract", |_self: Val, normal: Val, eta: f32| { - let output: Val = ::bevy::math::Vec3::refract( + let output: Val = bevy::math::Vec3::refract( _self.into_inner(), normal.into_inner(), eta, @@ -2047,7 +2027,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "angle_between", |_self: Val, rhs: Val| { - let output: f32 = ::bevy::math::Vec3::angle_between( + let output: f32 = bevy::math::Vec3::angle_between( _self.into_inner(), rhs.into_inner(), ) @@ -2058,7 +2038,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "any_orthogonal_vector", |_self: Ref| { - let output: Val = ::bevy::math::Vec3::any_orthogonal_vector( + let output: Val = bevy::math::Vec3::any_orthogonal_vector( &_self, ) .into(); @@ -2068,7 +2048,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "any_orthonormal_vector", |_self: Ref| { - let output: Val = ::bevy::math::Vec3::any_orthonormal_vector( + let output: Val = bevy::math::Vec3::any_orthonormal_vector( &_self, ) .into(); @@ -2078,7 +2058,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "as_dvec3", |_self: Ref| { - let output: Val = ::bevy::math::Vec3::as_dvec3( + let output: Val = bevy::math::Vec3::as_dvec3( &_self, ) .into(); @@ -2088,7 +2068,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "as_ivec3", |_self: Ref| { - let output: Val = ::bevy::math::Vec3::as_ivec3( + let output: Val = bevy::math::Vec3::as_ivec3( &_self, ) .into(); @@ -2098,7 +2078,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "as_uvec3", |_self: Ref| { - let output: Val = ::bevy::math::Vec3::as_uvec3( + let output: Val = bevy::math::Vec3::as_uvec3( &_self, ) .into(); @@ -2108,7 +2088,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "as_i64vec3", |_self: Ref| { - let output: Val = ::bevy::math::Vec3::as_i64vec3( + let output: Val = bevy::math::Vec3::as_i64vec3( &_self, ) .into(); @@ -2118,7 +2098,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "as_u64vec3", |_self: Ref| { - let output: Val = ::bevy::math::Vec3::as_u64vec3( + let output: Val = bevy::math::Vec3::as_u64vec3( &_self, ) .into(); @@ -2128,7 +2108,9 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "clone", |_self: Ref| { - let output: Val = ::bevy::math::Vec3::clone(&_self) + let output: Val = ::clone( + &_self, + ) .into(); output }, @@ -2136,10 +2118,9 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "add", |_self: Val, rhs: Ref| { - let output: Val = ::bevy::math::Vec3::add( - _self.into_inner(), - &rhs, - ) + let output: Val = >::add(_self.into_inner(), &rhs) .into(); output }, @@ -2147,10 +2128,9 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "sub", |_self: Val, rhs: Val| { - let output: Val = ::bevy::math::Vec3::sub( - _self.into_inner(), - rhs.into_inner(), - ) + let output: Val = >::sub(_self.into_inner(), rhs.into_inner()) .into(); output }, @@ -2158,10 +2138,9 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "div", |_self: Val, rhs: f32| { - let output: Val = ::bevy::math::Vec3::div( - _self.into_inner(), - rhs, - ) + let output: Val = >::div(_self.into_inner(), rhs) .into(); output }, @@ -2169,10 +2148,9 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "div", |_self: Val, rhs: Val| { - let output: Val = ::bevy::math::Vec3::div( - _self.into_inner(), - rhs.into_inner(), - ) + let output: Val = >::div(_self.into_inner(), rhs.into_inner()) .into(); output }, @@ -2180,10 +2158,9 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "rem", |_self: Val, rhs: f32| { - let output: Val = ::bevy::math::Vec3::rem( - _self.into_inner(), - rhs, - ) + let output: Val = >::rem(_self.into_inner(), rhs) .into(); output }, @@ -2191,10 +2168,9 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "mul", |_self: Val, rhs: f32| { - let output: Val = ::bevy::math::Vec3::mul( - _self.into_inner(), - rhs, - ) + let output: Val = >::mul(_self.into_inner(), rhs) .into(); output }, @@ -2202,10 +2178,9 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "rem", |_self: Val, rhs: Val| { - let output: Val = ::bevy::math::Vec3::rem( - _self.into_inner(), - rhs.into_inner(), - ) + let output: Val = >::rem(_self.into_inner(), rhs.into_inner()) .into(); output }, @@ -2213,7 +2188,10 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "eq", |_self: Ref, other: Ref| { - let output: bool = ::bevy::math::Vec3::eq(&_self, &other).into(); + let output: bool = >::eq(&_self, &other) + .into(); output }, ); @@ -2221,10 +2199,9 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "sub", |_self: Val, rhs: i32| { - let output: Val = ::bevy::math::IVec2::sub( - _self.into_inner(), - rhs, - ) + let output: Val = >::sub(_self.into_inner(), rhs) .into(); output }, @@ -2232,10 +2209,9 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "div", |_self: Val, rhs: Ref| { - let output: Val = ::bevy::math::IVec2::div( - _self.into_inner(), - &rhs, - ) + let output: Val = >::div(_self.into_inner(), &rhs) .into(); output }, @@ -2243,10 +2219,9 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "mul", |_self: Val, rhs: Val| { - let output: Val = ::bevy::math::IVec2::mul( - _self.into_inner(), - rhs.into_inner(), - ) + let output: Val = >::mul(_self.into_inner(), rhs.into_inner()) .into(); output }, @@ -2254,7 +2229,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "new", |x: i32, y: i32| { - let output: Val = ::bevy::math::IVec2::new(x, y) + let output: Val = bevy::math::IVec2::new(x, y) .into(); output }, @@ -2262,7 +2237,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "splat", |v: i32| { - let output: Val = ::bevy::math::IVec2::splat(v) + let output: Val = bevy::math::IVec2::splat(v) .into(); output }, @@ -2274,7 +2249,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { if_true: Val, if_false: Val| { - let output: Val = ::bevy::math::IVec2::select( + let output: Val = bevy::math::IVec2::select( mask.into_inner(), if_true.into_inner(), if_false.into_inner(), @@ -2286,9 +2261,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "from_array", |a: [i32; 2]| { - let output: Val = ::bevy::math::IVec2::from_array( - a, - ) + let output: Val = bevy::math::IVec2::from_array(a) .into(); output }, @@ -2296,14 +2269,14 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "to_array", |_self: Ref| { - let output: [i32; 2] = ::bevy::math::IVec2::to_array(&_self).into(); + let output: [i32; 2] = bevy::math::IVec2::to_array(&_self).into(); output }, ) .overwrite_script_function( "extend", |_self: Val, z: i32| { - let output: Val = ::bevy::math::IVec2::extend( + let output: Val = bevy::math::IVec2::extend( _self.into_inner(), z, ) @@ -2314,7 +2287,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "with_x", |_self: Val, x: i32| { - let output: Val = ::bevy::math::IVec2::with_x( + let output: Val = bevy::math::IVec2::with_x( _self.into_inner(), x, ) @@ -2325,7 +2298,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "with_y", |_self: Val, y: i32| { - let output: Val = ::bevy::math::IVec2::with_y( + let output: Val = bevy::math::IVec2::with_y( _self.into_inner(), y, ) @@ -2336,7 +2309,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "dot", |_self: Val, rhs: Val| { - let output: i32 = ::bevy::math::IVec2::dot( + let output: i32 = bevy::math::IVec2::dot( _self.into_inner(), rhs.into_inner(), ) @@ -2347,7 +2320,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "dot_into_vec", |_self: Val, rhs: Val| { - let output: Val = ::bevy::math::IVec2::dot_into_vec( + let output: Val = bevy::math::IVec2::dot_into_vec( _self.into_inner(), rhs.into_inner(), ) @@ -2358,7 +2331,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "min", |_self: Val, rhs: Val| { - let output: Val = ::bevy::math::IVec2::min( + let output: Val = bevy::math::IVec2::min( _self.into_inner(), rhs.into_inner(), ) @@ -2369,7 +2342,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "max", |_self: Val, rhs: Val| { - let output: Val = ::bevy::math::IVec2::max( + let output: Val = bevy::math::IVec2::max( _self.into_inner(), rhs.into_inner(), ) @@ -2384,7 +2357,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { min: Val, max: Val| { - let output: Val = ::bevy::math::IVec2::clamp( + let output: Val = bevy::math::IVec2::clamp( _self.into_inner(), min.into_inner(), max.into_inner(), @@ -2396,9 +2369,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "min_element", |_self: Val| { - let output: i32 = ::bevy::math::IVec2::min_element( - _self.into_inner(), - ) + let output: i32 = bevy::math::IVec2::min_element(_self.into_inner()) .into(); output }, @@ -2406,9 +2377,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "max_element", |_self: Val| { - let output: i32 = ::bevy::math::IVec2::max_element( - _self.into_inner(), - ) + let output: i32 = bevy::math::IVec2::max_element(_self.into_inner()) .into(); output }, @@ -2416,9 +2385,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "element_sum", |_self: Val| { - let output: i32 = ::bevy::math::IVec2::element_sum( - _self.into_inner(), - ) + let output: i32 = bevy::math::IVec2::element_sum(_self.into_inner()) .into(); output }, @@ -2426,7 +2393,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "element_product", |_self: Val| { - let output: i32 = ::bevy::math::IVec2::element_product( + let output: i32 = bevy::math::IVec2::element_product( _self.into_inner(), ) .into(); @@ -2436,7 +2403,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "cmpeq", |_self: Val, rhs: Val| { - let output: Val = ::bevy::math::IVec2::cmpeq( + let output: Val = bevy::math::IVec2::cmpeq( _self.into_inner(), rhs.into_inner(), ) @@ -2447,7 +2414,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "cmpne", |_self: Val, rhs: Val| { - let output: Val = ::bevy::math::IVec2::cmpne( + let output: Val = bevy::math::IVec2::cmpne( _self.into_inner(), rhs.into_inner(), ) @@ -2458,7 +2425,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "cmpge", |_self: Val, rhs: Val| { - let output: Val = ::bevy::math::IVec2::cmpge( + let output: Val = bevy::math::IVec2::cmpge( _self.into_inner(), rhs.into_inner(), ) @@ -2469,7 +2436,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "cmpgt", |_self: Val, rhs: Val| { - let output: Val = ::bevy::math::IVec2::cmpgt( + let output: Val = bevy::math::IVec2::cmpgt( _self.into_inner(), rhs.into_inner(), ) @@ -2480,7 +2447,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "cmple", |_self: Val, rhs: Val| { - let output: Val = ::bevy::math::IVec2::cmple( + let output: Val = bevy::math::IVec2::cmple( _self.into_inner(), rhs.into_inner(), ) @@ -2491,7 +2458,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "cmplt", |_self: Val, rhs: Val| { - let output: Val = ::bevy::math::IVec2::cmplt( + let output: Val = bevy::math::IVec2::cmplt( _self.into_inner(), rhs.into_inner(), ) @@ -2502,7 +2469,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "abs", |_self: Val| { - let output: Val = ::bevy::math::IVec2::abs( + let output: Val = bevy::math::IVec2::abs( _self.into_inner(), ) .into(); @@ -2512,7 +2479,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "signum", |_self: Val| { - let output: Val = ::bevy::math::IVec2::signum( + let output: Val = bevy::math::IVec2::signum( _self.into_inner(), ) .into(); @@ -2522,7 +2489,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "is_negative_bitmask", |_self: Val| { - let output: u32 = ::bevy::math::IVec2::is_negative_bitmask( + let output: u32 = bevy::math::IVec2::is_negative_bitmask( _self.into_inner(), ) .into(); @@ -2532,7 +2499,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "length_squared", |_self: Val| { - let output: i32 = ::bevy::math::IVec2::length_squared( + let output: i32 = bevy::math::IVec2::length_squared( _self.into_inner(), ) .into(); @@ -2542,7 +2509,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "distance_squared", |_self: Val, rhs: Val| { - let output: i32 = ::bevy::math::IVec2::distance_squared( + let output: i32 = bevy::math::IVec2::distance_squared( _self.into_inner(), rhs.into_inner(), ) @@ -2553,7 +2520,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "div_euclid", |_self: Val, rhs: Val| { - let output: Val = ::bevy::math::IVec2::div_euclid( + let output: Val = bevy::math::IVec2::div_euclid( _self.into_inner(), rhs.into_inner(), ) @@ -2564,7 +2531,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "rem_euclid", |_self: Val, rhs: Val| { - let output: Val = ::bevy::math::IVec2::rem_euclid( + let output: Val = bevy::math::IVec2::rem_euclid( _self.into_inner(), rhs.into_inner(), ) @@ -2575,7 +2542,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "perp", |_self: Val| { - let output: Val = ::bevy::math::IVec2::perp( + let output: Val = bevy::math::IVec2::perp( _self.into_inner(), ) .into(); @@ -2585,7 +2552,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "perp_dot", |_self: Val, rhs: Val| { - let output: i32 = ::bevy::math::IVec2::perp_dot( + let output: i32 = bevy::math::IVec2::perp_dot( _self.into_inner(), rhs.into_inner(), ) @@ -2596,7 +2563,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "rotate", |_self: Val, rhs: Val| { - let output: Val = ::bevy::math::IVec2::rotate( + let output: Val = bevy::math::IVec2::rotate( _self.into_inner(), rhs.into_inner(), ) @@ -2607,7 +2574,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "as_vec2", |_self: Ref| { - let output: Val = ::bevy::math::IVec2::as_vec2( + let output: Val = bevy::math::IVec2::as_vec2( &_self, ) .into(); @@ -2617,7 +2584,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "as_dvec2", |_self: Ref| { - let output: Val = ::bevy::math::IVec2::as_dvec2( + let output: Val = bevy::math::IVec2::as_dvec2( &_self, ) .into(); @@ -2627,7 +2594,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "as_uvec2", |_self: Ref| { - let output: Val = ::bevy::math::IVec2::as_uvec2( + let output: Val = bevy::math::IVec2::as_uvec2( &_self, ) .into(); @@ -2637,7 +2604,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "as_i64vec2", |_self: Ref| { - let output: Val = ::bevy::math::IVec2::as_i64vec2( + let output: Val = bevy::math::IVec2::as_i64vec2( &_self, ) .into(); @@ -2647,7 +2614,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "as_u64vec2", |_self: Ref| { - let output: Val = ::bevy::math::IVec2::as_u64vec2( + let output: Val = bevy::math::IVec2::as_u64vec2( &_self, ) .into(); @@ -2657,7 +2624,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "wrapping_add", |_self: Val, rhs: Val| { - let output: Val = ::bevy::math::IVec2::wrapping_add( + let output: Val = bevy::math::IVec2::wrapping_add( _self.into_inner(), rhs.into_inner(), ) @@ -2668,7 +2635,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "wrapping_sub", |_self: Val, rhs: Val| { - let output: Val = ::bevy::math::IVec2::wrapping_sub( + let output: Val = bevy::math::IVec2::wrapping_sub( _self.into_inner(), rhs.into_inner(), ) @@ -2679,7 +2646,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "wrapping_mul", |_self: Val, rhs: Val| { - let output: Val = ::bevy::math::IVec2::wrapping_mul( + let output: Val = bevy::math::IVec2::wrapping_mul( _self.into_inner(), rhs.into_inner(), ) @@ -2690,7 +2657,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "wrapping_div", |_self: Val, rhs: Val| { - let output: Val = ::bevy::math::IVec2::wrapping_div( + let output: Val = bevy::math::IVec2::wrapping_div( _self.into_inner(), rhs.into_inner(), ) @@ -2701,7 +2668,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "saturating_add", |_self: Val, rhs: Val| { - let output: Val = ::bevy::math::IVec2::saturating_add( + let output: Val = bevy::math::IVec2::saturating_add( _self.into_inner(), rhs.into_inner(), ) @@ -2712,7 +2679,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "saturating_sub", |_self: Val, rhs: Val| { - let output: Val = ::bevy::math::IVec2::saturating_sub( + let output: Val = bevy::math::IVec2::saturating_sub( _self.into_inner(), rhs.into_inner(), ) @@ -2723,7 +2690,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "saturating_mul", |_self: Val, rhs: Val| { - let output: Val = ::bevy::math::IVec2::saturating_mul( + let output: Val = bevy::math::IVec2::saturating_mul( _self.into_inner(), rhs.into_inner(), ) @@ -2734,7 +2701,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "saturating_div", |_self: Val, rhs: Val| { - let output: Val = ::bevy::math::IVec2::saturating_div( + let output: Val = bevy::math::IVec2::saturating_div( _self.into_inner(), rhs.into_inner(), ) @@ -2745,7 +2712,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "wrapping_add_unsigned", |_self: Val, rhs: Val| { - let output: Val = ::bevy::math::IVec2::wrapping_add_unsigned( + let output: Val = bevy::math::IVec2::wrapping_add_unsigned( _self.into_inner(), rhs.into_inner(), ) @@ -2756,7 +2723,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "wrapping_sub_unsigned", |_self: Val, rhs: Val| { - let output: Val = ::bevy::math::IVec2::wrapping_sub_unsigned( + let output: Val = bevy::math::IVec2::wrapping_sub_unsigned( _self.into_inner(), rhs.into_inner(), ) @@ -2767,7 +2734,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "saturating_add_unsigned", |_self: Val, rhs: Val| { - let output: Val = ::bevy::math::IVec2::saturating_add_unsigned( + let output: Val = bevy::math::IVec2::saturating_add_unsigned( _self.into_inner(), rhs.into_inner(), ) @@ -2778,7 +2745,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "saturating_sub_unsigned", |_self: Val, rhs: Val| { - let output: Val = ::bevy::math::IVec2::saturating_sub_unsigned( + let output: Val = bevy::math::IVec2::saturating_sub_unsigned( _self.into_inner(), rhs.into_inner(), ) @@ -2789,10 +2756,9 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "rem", |_self: Val, rhs: Val| { - let output: Val = ::bevy::math::IVec2::rem( - _self.into_inner(), - rhs.into_inner(), - ) + let output: Val = >::rem(_self.into_inner(), rhs.into_inner()) .into(); output }, @@ -2800,10 +2766,9 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "mul", |_self: Val, rhs: Ref| { - let output: Val = ::bevy::math::IVec2::mul( - _self.into_inner(), - &rhs, - ) + let output: Val = >::mul(_self.into_inner(), &rhs) .into(); output }, @@ -2811,10 +2776,9 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "sub", |_self: Val, rhs: Ref| { - let output: Val = ::bevy::math::IVec2::sub( - _self.into_inner(), - &rhs, - ) + let output: Val = >::sub(_self.into_inner(), &rhs) .into(); output }, @@ -2822,7 +2786,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "neg", |_self: Val| { - let output: Val = ::bevy::math::IVec2::neg( + let output: Val = ::neg( _self.into_inner(), ) .into(); @@ -2832,10 +2796,9 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "rem", |_self: Val, rhs: Ref| { - let output: Val = ::bevy::math::IVec2::rem( - _self.into_inner(), - &rhs, - ) + let output: Val = >::rem(_self.into_inner(), &rhs) .into(); output }, @@ -2843,10 +2806,9 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "div", |_self: Val, rhs: i32| { - let output: Val = ::bevy::math::IVec2::div( - _self.into_inner(), - rhs, - ) + let output: Val = >::div(_self.into_inner(), rhs) .into(); output }, @@ -2854,10 +2816,9 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "mul", |_self: Val, rhs: i32| { - let output: Val = ::bevy::math::IVec2::mul( - _self.into_inner(), - rhs, - ) + let output: Val = >::mul(_self.into_inner(), rhs) .into(); output }, @@ -2865,10 +2826,9 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "sub", |_self: Val, rhs: Val| { - let output: Val = ::bevy::math::IVec2::sub( - _self.into_inner(), - rhs.into_inner(), - ) + let output: Val = >::sub(_self.into_inner(), rhs.into_inner()) .into(); output }, @@ -2876,10 +2836,9 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "add", |_self: Val, rhs: Ref| { - let output: Val = ::bevy::math::IVec2::add( - _self.into_inner(), - &rhs, - ) + let output: Val = >::add(_self.into_inner(), &rhs) .into(); output }, @@ -2887,10 +2846,9 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "add", |_self: Val, rhs: i32| { - let output: Val = ::bevy::math::IVec2::add( - _self.into_inner(), - rhs, - ) + let output: Val = >::add(_self.into_inner(), rhs) .into(); output }, @@ -2898,10 +2856,9 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "rem", |_self: Val, rhs: i32| { - let output: Val = ::bevy::math::IVec2::rem( - _self.into_inner(), - rhs, - ) + let output: Val = >::rem(_self.into_inner(), rhs) .into(); output }, @@ -2909,10 +2866,9 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "add", |_self: Val, rhs: Val| { - let output: Val = ::bevy::math::IVec2::add( - _self.into_inner(), - rhs.into_inner(), - ) + let output: Val = >::add(_self.into_inner(), rhs.into_inner()) .into(); output }, @@ -2920,17 +2876,19 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "eq", |_self: Ref, other: Ref| { - let output: bool = ::bevy::math::IVec2::eq(&_self, &other).into(); + let output: bool = >::eq(&_self, &other) + .into(); output }, ) .overwrite_script_function( "div", |_self: Val, rhs: Val| { - let output: Val = ::bevy::math::IVec2::div( - _self.into_inner(), - rhs.into_inner(), - ) + let output: Val = >::div(_self.into_inner(), rhs.into_inner()) .into(); output }, @@ -2938,7 +2896,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "clone", |_self: Ref| { - let output: Val = ::bevy::math::IVec2::clone( + let output: Val = ::clone( &_self, ) .into(); @@ -2948,7 +2906,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "assert_receiver_is_total_eq", |_self: Ref| { - let output: () = ::bevy::math::IVec2::assert_receiver_is_total_eq( + let output: () = ::assert_receiver_is_total_eq( &_self, ) .into(); @@ -2959,10 +2917,9 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "sub", |_self: Val, rhs: Ref| { - let output: Val = ::bevy::math::IVec3::sub( - _self.into_inner(), - &rhs, - ) + let output: Val = >::sub(_self.into_inner(), &rhs) .into(); output }, @@ -2970,10 +2927,9 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "div", |_self: Val, rhs: i32| { - let output: Val = ::bevy::math::IVec3::div( - _self.into_inner(), - rhs, - ) + let output: Val = >::div(_self.into_inner(), rhs) .into(); output }, @@ -2981,10 +2937,9 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "rem", |_self: Val, rhs: i32| { - let output: Val = ::bevy::math::IVec3::rem( - _self.into_inner(), - rhs, - ) + let output: Val = >::rem(_self.into_inner(), rhs) .into(); output }, @@ -2992,10 +2947,9 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "mul", |_self: Val, rhs: Val| { - let output: Val = ::bevy::math::IVec3::mul( - _self.into_inner(), - rhs.into_inner(), - ) + let output: Val = >::mul(_self.into_inner(), rhs.into_inner()) .into(); output }, @@ -3003,10 +2957,9 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "rem", |_self: Val, rhs: Val| { - let output: Val = ::bevy::math::IVec3::rem( - _self.into_inner(), - rhs.into_inner(), - ) + let output: Val = >::rem(_self.into_inner(), rhs.into_inner()) .into(); output }, @@ -3014,11 +2967,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "new", |x: i32, y: i32, z: i32| { - let output: Val = ::bevy::math::IVec3::new( - x, - y, - z, - ) + let output: Val = bevy::math::IVec3::new(x, y, z) .into(); output }, @@ -3026,7 +2975,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "splat", |v: i32| { - let output: Val = ::bevy::math::IVec3::splat(v) + let output: Val = bevy::math::IVec3::splat(v) .into(); output }, @@ -3038,7 +2987,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { if_true: Val, if_false: Val| { - let output: Val = ::bevy::math::IVec3::select( + let output: Val = bevy::math::IVec3::select( mask.into_inner(), if_true.into_inner(), if_false.into_inner(), @@ -3050,9 +2999,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "from_array", |a: [i32; 3]| { - let output: Val = ::bevy::math::IVec3::from_array( - a, - ) + let output: Val = bevy::math::IVec3::from_array(a) .into(); output }, @@ -3060,14 +3007,14 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "to_array", |_self: Ref| { - let output: [i32; 3] = ::bevy::math::IVec3::to_array(&_self).into(); + let output: [i32; 3] = bevy::math::IVec3::to_array(&_self).into(); output }, ) .overwrite_script_function( "extend", |_self: Val, w: i32| { - let output: Val = ::bevy::math::IVec3::extend( + let output: Val = bevy::math::IVec3::extend( _self.into_inner(), w, ) @@ -3078,7 +3025,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "truncate", |_self: Val| { - let output: Val = ::bevy::math::IVec3::truncate( + let output: Val = bevy::math::IVec3::truncate( _self.into_inner(), ) .into(); @@ -3088,7 +3035,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "with_x", |_self: Val, x: i32| { - let output: Val = ::bevy::math::IVec3::with_x( + let output: Val = bevy::math::IVec3::with_x( _self.into_inner(), x, ) @@ -3099,7 +3046,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "with_y", |_self: Val, y: i32| { - let output: Val = ::bevy::math::IVec3::with_y( + let output: Val = bevy::math::IVec3::with_y( _self.into_inner(), y, ) @@ -3110,7 +3057,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "with_z", |_self: Val, z: i32| { - let output: Val = ::bevy::math::IVec3::with_z( + let output: Val = bevy::math::IVec3::with_z( _self.into_inner(), z, ) @@ -3121,7 +3068,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "dot", |_self: Val, rhs: Val| { - let output: i32 = ::bevy::math::IVec3::dot( + let output: i32 = bevy::math::IVec3::dot( _self.into_inner(), rhs.into_inner(), ) @@ -3132,7 +3079,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "dot_into_vec", |_self: Val, rhs: Val| { - let output: Val = ::bevy::math::IVec3::dot_into_vec( + let output: Val = bevy::math::IVec3::dot_into_vec( _self.into_inner(), rhs.into_inner(), ) @@ -3143,7 +3090,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "cross", |_self: Val, rhs: Val| { - let output: Val = ::bevy::math::IVec3::cross( + let output: Val = bevy::math::IVec3::cross( _self.into_inner(), rhs.into_inner(), ) @@ -3154,7 +3101,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "min", |_self: Val, rhs: Val| { - let output: Val = ::bevy::math::IVec3::min( + let output: Val = bevy::math::IVec3::min( _self.into_inner(), rhs.into_inner(), ) @@ -3165,7 +3112,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "max", |_self: Val, rhs: Val| { - let output: Val = ::bevy::math::IVec3::max( + let output: Val = bevy::math::IVec3::max( _self.into_inner(), rhs.into_inner(), ) @@ -3180,7 +3127,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { min: Val, max: Val| { - let output: Val = ::bevy::math::IVec3::clamp( + let output: Val = bevy::math::IVec3::clamp( _self.into_inner(), min.into_inner(), max.into_inner(), @@ -3192,9 +3139,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "min_element", |_self: Val| { - let output: i32 = ::bevy::math::IVec3::min_element( - _self.into_inner(), - ) + let output: i32 = bevy::math::IVec3::min_element(_self.into_inner()) .into(); output }, @@ -3202,9 +3147,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "max_element", |_self: Val| { - let output: i32 = ::bevy::math::IVec3::max_element( - _self.into_inner(), - ) + let output: i32 = bevy::math::IVec3::max_element(_self.into_inner()) .into(); output }, @@ -3212,9 +3155,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "element_sum", |_self: Val| { - let output: i32 = ::bevy::math::IVec3::element_sum( - _self.into_inner(), - ) + let output: i32 = bevy::math::IVec3::element_sum(_self.into_inner()) .into(); output }, @@ -3222,7 +3163,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "element_product", |_self: Val| { - let output: i32 = ::bevy::math::IVec3::element_product( + let output: i32 = bevy::math::IVec3::element_product( _self.into_inner(), ) .into(); @@ -3232,7 +3173,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "cmpeq", |_self: Val, rhs: Val| { - let output: Val = ::bevy::math::IVec3::cmpeq( + let output: Val = bevy::math::IVec3::cmpeq( _self.into_inner(), rhs.into_inner(), ) @@ -3243,7 +3184,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "cmpne", |_self: Val, rhs: Val| { - let output: Val = ::bevy::math::IVec3::cmpne( + let output: Val = bevy::math::IVec3::cmpne( _self.into_inner(), rhs.into_inner(), ) @@ -3254,7 +3195,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "cmpge", |_self: Val, rhs: Val| { - let output: Val = ::bevy::math::IVec3::cmpge( + let output: Val = bevy::math::IVec3::cmpge( _self.into_inner(), rhs.into_inner(), ) @@ -3265,7 +3206,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "cmpgt", |_self: Val, rhs: Val| { - let output: Val = ::bevy::math::IVec3::cmpgt( + let output: Val = bevy::math::IVec3::cmpgt( _self.into_inner(), rhs.into_inner(), ) @@ -3276,7 +3217,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "cmple", |_self: Val, rhs: Val| { - let output: Val = ::bevy::math::IVec3::cmple( + let output: Val = bevy::math::IVec3::cmple( _self.into_inner(), rhs.into_inner(), ) @@ -3287,7 +3228,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "cmplt", |_self: Val, rhs: Val| { - let output: Val = ::bevy::math::IVec3::cmplt( + let output: Val = bevy::math::IVec3::cmplt( _self.into_inner(), rhs.into_inner(), ) @@ -3298,7 +3239,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "abs", |_self: Val| { - let output: Val = ::bevy::math::IVec3::abs( + let output: Val = bevy::math::IVec3::abs( _self.into_inner(), ) .into(); @@ -3308,7 +3249,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "signum", |_self: Val| { - let output: Val = ::bevy::math::IVec3::signum( + let output: Val = bevy::math::IVec3::signum( _self.into_inner(), ) .into(); @@ -3318,7 +3259,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "is_negative_bitmask", |_self: Val| { - let output: u32 = ::bevy::math::IVec3::is_negative_bitmask( + let output: u32 = bevy::math::IVec3::is_negative_bitmask( _self.into_inner(), ) .into(); @@ -3328,7 +3269,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "length_squared", |_self: Val| { - let output: i32 = ::bevy::math::IVec3::length_squared( + let output: i32 = bevy::math::IVec3::length_squared( _self.into_inner(), ) .into(); @@ -3338,7 +3279,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "distance_squared", |_self: Val, rhs: Val| { - let output: i32 = ::bevy::math::IVec3::distance_squared( + let output: i32 = bevy::math::IVec3::distance_squared( _self.into_inner(), rhs.into_inner(), ) @@ -3349,7 +3290,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "div_euclid", |_self: Val, rhs: Val| { - let output: Val = ::bevy::math::IVec3::div_euclid( + let output: Val = bevy::math::IVec3::div_euclid( _self.into_inner(), rhs.into_inner(), ) @@ -3360,7 +3301,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "rem_euclid", |_self: Val, rhs: Val| { - let output: Val = ::bevy::math::IVec3::rem_euclid( + let output: Val = bevy::math::IVec3::rem_euclid( _self.into_inner(), rhs.into_inner(), ) @@ -3371,7 +3312,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "as_vec3", |_self: Ref| { - let output: Val = ::bevy::math::IVec3::as_vec3( + let output: Val = bevy::math::IVec3::as_vec3( &_self, ) .into(); @@ -3381,7 +3322,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "as_vec3a", |_self: Ref| { - let output: Val = ::bevy::math::IVec3::as_vec3a( + let output: Val = bevy::math::IVec3::as_vec3a( &_self, ) .into(); @@ -3391,7 +3332,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "as_dvec3", |_self: Ref| { - let output: Val = ::bevy::math::IVec3::as_dvec3( + let output: Val = bevy::math::IVec3::as_dvec3( &_self, ) .into(); @@ -3401,7 +3342,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "as_uvec3", |_self: Ref| { - let output: Val = ::bevy::math::IVec3::as_uvec3( + let output: Val = bevy::math::IVec3::as_uvec3( &_self, ) .into(); @@ -3411,7 +3352,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "as_i64vec3", |_self: Ref| { - let output: Val = ::bevy::math::IVec3::as_i64vec3( + let output: Val = bevy::math::IVec3::as_i64vec3( &_self, ) .into(); @@ -3421,7 +3362,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "as_u64vec3", |_self: Ref| { - let output: Val = ::bevy::math::IVec3::as_u64vec3( + let output: Val = bevy::math::IVec3::as_u64vec3( &_self, ) .into(); @@ -3431,7 +3372,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "wrapping_add", |_self: Val, rhs: Val| { - let output: Val = ::bevy::math::IVec3::wrapping_add( + let output: Val = bevy::math::IVec3::wrapping_add( _self.into_inner(), rhs.into_inner(), ) @@ -3442,7 +3383,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "wrapping_sub", |_self: Val, rhs: Val| { - let output: Val = ::bevy::math::IVec3::wrapping_sub( + let output: Val = bevy::math::IVec3::wrapping_sub( _self.into_inner(), rhs.into_inner(), ) @@ -3453,7 +3394,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "wrapping_mul", |_self: Val, rhs: Val| { - let output: Val = ::bevy::math::IVec3::wrapping_mul( + let output: Val = bevy::math::IVec3::wrapping_mul( _self.into_inner(), rhs.into_inner(), ) @@ -3464,7 +3405,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "wrapping_div", |_self: Val, rhs: Val| { - let output: Val = ::bevy::math::IVec3::wrapping_div( + let output: Val = bevy::math::IVec3::wrapping_div( _self.into_inner(), rhs.into_inner(), ) @@ -3475,7 +3416,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "saturating_add", |_self: Val, rhs: Val| { - let output: Val = ::bevy::math::IVec3::saturating_add( + let output: Val = bevy::math::IVec3::saturating_add( _self.into_inner(), rhs.into_inner(), ) @@ -3486,7 +3427,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "saturating_sub", |_self: Val, rhs: Val| { - let output: Val = ::bevy::math::IVec3::saturating_sub( + let output: Val = bevy::math::IVec3::saturating_sub( _self.into_inner(), rhs.into_inner(), ) @@ -3497,7 +3438,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "saturating_mul", |_self: Val, rhs: Val| { - let output: Val = ::bevy::math::IVec3::saturating_mul( + let output: Val = bevy::math::IVec3::saturating_mul( _self.into_inner(), rhs.into_inner(), ) @@ -3508,7 +3449,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "saturating_div", |_self: Val, rhs: Val| { - let output: Val = ::bevy::math::IVec3::saturating_div( + let output: Val = bevy::math::IVec3::saturating_div( _self.into_inner(), rhs.into_inner(), ) @@ -3519,7 +3460,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "wrapping_add_unsigned", |_self: Val, rhs: Val| { - let output: Val = ::bevy::math::IVec3::wrapping_add_unsigned( + let output: Val = bevy::math::IVec3::wrapping_add_unsigned( _self.into_inner(), rhs.into_inner(), ) @@ -3530,7 +3471,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "wrapping_sub_unsigned", |_self: Val, rhs: Val| { - let output: Val = ::bevy::math::IVec3::wrapping_sub_unsigned( + let output: Val = bevy::math::IVec3::wrapping_sub_unsigned( _self.into_inner(), rhs.into_inner(), ) @@ -3541,7 +3482,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "saturating_add_unsigned", |_self: Val, rhs: Val| { - let output: Val = ::bevy::math::IVec3::saturating_add_unsigned( + let output: Val = bevy::math::IVec3::saturating_add_unsigned( _self.into_inner(), rhs.into_inner(), ) @@ -3552,7 +3493,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "saturating_sub_unsigned", |_self: Val, rhs: Val| { - let output: Val = ::bevy::math::IVec3::saturating_sub_unsigned( + let output: Val = bevy::math::IVec3::saturating_sub_unsigned( _self.into_inner(), rhs.into_inner(), ) @@ -3563,10 +3504,9 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "mul", |_self: Val, rhs: i32| { - let output: Val = ::bevy::math::IVec3::mul( - _self.into_inner(), - rhs, - ) + let output: Val = >::mul(_self.into_inner(), rhs) .into(); output }, @@ -3574,10 +3514,9 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "div", |_self: Val, rhs: Val| { - let output: Val = ::bevy::math::IVec3::div( - _self.into_inner(), - rhs.into_inner(), - ) + let output: Val = >::div(_self.into_inner(), rhs.into_inner()) .into(); output }, @@ -3585,10 +3524,9 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "rem", |_self: Val, rhs: Ref| { - let output: Val = ::bevy::math::IVec3::rem( - _self.into_inner(), - &rhs, - ) + let output: Val = >::rem(_self.into_inner(), &rhs) .into(); output }, @@ -3596,10 +3534,9 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "add", |_self: Val, rhs: Val| { - let output: Val = ::bevy::math::IVec3::add( - _self.into_inner(), - rhs.into_inner(), - ) + let output: Val = >::add(_self.into_inner(), rhs.into_inner()) .into(); output }, @@ -3607,10 +3544,9 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "sub", |_self: Val, rhs: i32| { - let output: Val = ::bevy::math::IVec3::sub( - _self.into_inner(), - rhs, - ) + let output: Val = >::sub(_self.into_inner(), rhs) .into(); output }, @@ -3618,10 +3554,9 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "sub", |_self: Val, rhs: Val| { - let output: Val = ::bevy::math::IVec3::sub( - _self.into_inner(), - rhs.into_inner(), - ) + let output: Val = >::sub(_self.into_inner(), rhs.into_inner()) .into(); output }, @@ -3629,7 +3564,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "clone", |_self: Ref| { - let output: Val = ::bevy::math::IVec3::clone( + let output: Val = ::clone( &_self, ) .into(); @@ -3639,17 +3574,19 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "eq", |_self: Ref, other: Ref| { - let output: bool = ::bevy::math::IVec3::eq(&_self, &other).into(); + let output: bool = >::eq(&_self, &other) + .into(); output }, ) .overwrite_script_function( "add", |_self: Val, rhs: i32| { - let output: Val = ::bevy::math::IVec3::add( - _self.into_inner(), - rhs, - ) + let output: Val = >::add(_self.into_inner(), rhs) .into(); output }, @@ -3657,10 +3594,9 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "add", |_self: Val, rhs: Ref| { - let output: Val = ::bevy::math::IVec3::add( - _self.into_inner(), - &rhs, - ) + let output: Val = >::add(_self.into_inner(), &rhs) .into(); output }, @@ -3668,7 +3604,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "neg", |_self: Val| { - let output: Val = ::bevy::math::IVec3::neg( + let output: Val = ::neg( _self.into_inner(), ) .into(); @@ -3678,10 +3614,9 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "mul", |_self: Val, rhs: Ref| { - let output: Val = ::bevy::math::IVec3::mul( - _self.into_inner(), - &rhs, - ) + let output: Val = >::mul(_self.into_inner(), &rhs) .into(); output }, @@ -3689,7 +3624,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "assert_receiver_is_total_eq", |_self: Ref| { - let output: () = ::bevy::math::IVec3::assert_receiver_is_total_eq( + let output: () = ::assert_receiver_is_total_eq( &_self, ) .into(); @@ -3699,10 +3634,9 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "div", |_self: Val, rhs: Ref| { - let output: Val = ::bevy::math::IVec3::div( - _self.into_inner(), - &rhs, - ) + let output: Val = >::div(_self.into_inner(), &rhs) .into(); output }, @@ -3711,10 +3645,9 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "rem", |_self: Val, rhs: i32| { - let output: Val = ::bevy::math::IVec4::rem( - _self.into_inner(), - rhs, - ) + let output: Val = >::rem(_self.into_inner(), rhs) .into(); output }, @@ -3722,7 +3655,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "neg", |_self: Val| { - let output: Val = ::bevy::math::IVec4::neg( + let output: Val = ::neg( _self.into_inner(), ) .into(); @@ -3732,7 +3665,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "new", |x: i32, y: i32, z: i32, w: i32| { - let output: Val = ::bevy::math::IVec4::new( + let output: Val = bevy::math::IVec4::new( x, y, z, @@ -3745,7 +3678,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "splat", |v: i32| { - let output: Val = ::bevy::math::IVec4::splat(v) + let output: Val = bevy::math::IVec4::splat(v) .into(); output }, @@ -3757,7 +3690,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { if_true: Val, if_false: Val| { - let output: Val = ::bevy::math::IVec4::select( + let output: Val = bevy::math::IVec4::select( mask.into_inner(), if_true.into_inner(), if_false.into_inner(), @@ -3769,9 +3702,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "from_array", |a: [i32; 4]| { - let output: Val = ::bevy::math::IVec4::from_array( - a, - ) + let output: Val = bevy::math::IVec4::from_array(a) .into(); output }, @@ -3779,14 +3710,14 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "to_array", |_self: Ref| { - let output: [i32; 4] = ::bevy::math::IVec4::to_array(&_self).into(); + let output: [i32; 4] = bevy::math::IVec4::to_array(&_self).into(); output }, ) .overwrite_script_function( "truncate", |_self: Val| { - let output: Val = ::bevy::math::IVec4::truncate( + let output: Val = bevy::math::IVec4::truncate( _self.into_inner(), ) .into(); @@ -3796,7 +3727,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "with_x", |_self: Val, x: i32| { - let output: Val = ::bevy::math::IVec4::with_x( + let output: Val = bevy::math::IVec4::with_x( _self.into_inner(), x, ) @@ -3807,7 +3738,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "with_y", |_self: Val, y: i32| { - let output: Val = ::bevy::math::IVec4::with_y( + let output: Val = bevy::math::IVec4::with_y( _self.into_inner(), y, ) @@ -3818,7 +3749,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "with_z", |_self: Val, z: i32| { - let output: Val = ::bevy::math::IVec4::with_z( + let output: Val = bevy::math::IVec4::with_z( _self.into_inner(), z, ) @@ -3829,7 +3760,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "with_w", |_self: Val, w: i32| { - let output: Val = ::bevy::math::IVec4::with_w( + let output: Val = bevy::math::IVec4::with_w( _self.into_inner(), w, ) @@ -3840,7 +3771,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "dot", |_self: Val, rhs: Val| { - let output: i32 = ::bevy::math::IVec4::dot( + let output: i32 = bevy::math::IVec4::dot( _self.into_inner(), rhs.into_inner(), ) @@ -3851,7 +3782,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "dot_into_vec", |_self: Val, rhs: Val| { - let output: Val = ::bevy::math::IVec4::dot_into_vec( + let output: Val = bevy::math::IVec4::dot_into_vec( _self.into_inner(), rhs.into_inner(), ) @@ -3862,7 +3793,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "min", |_self: Val, rhs: Val| { - let output: Val = ::bevy::math::IVec4::min( + let output: Val = bevy::math::IVec4::min( _self.into_inner(), rhs.into_inner(), ) @@ -3873,7 +3804,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "max", |_self: Val, rhs: Val| { - let output: Val = ::bevy::math::IVec4::max( + let output: Val = bevy::math::IVec4::max( _self.into_inner(), rhs.into_inner(), ) @@ -3888,7 +3819,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { min: Val, max: Val| { - let output: Val = ::bevy::math::IVec4::clamp( + let output: Val = bevy::math::IVec4::clamp( _self.into_inner(), min.into_inner(), max.into_inner(), @@ -3900,9 +3831,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "min_element", |_self: Val| { - let output: i32 = ::bevy::math::IVec4::min_element( - _self.into_inner(), - ) + let output: i32 = bevy::math::IVec4::min_element(_self.into_inner()) .into(); output }, @@ -3910,9 +3839,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "max_element", |_self: Val| { - let output: i32 = ::bevy::math::IVec4::max_element( - _self.into_inner(), - ) + let output: i32 = bevy::math::IVec4::max_element(_self.into_inner()) .into(); output }, @@ -3920,9 +3847,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "element_sum", |_self: Val| { - let output: i32 = ::bevy::math::IVec4::element_sum( - _self.into_inner(), - ) + let output: i32 = bevy::math::IVec4::element_sum(_self.into_inner()) .into(); output }, @@ -3930,7 +3855,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "element_product", |_self: Val| { - let output: i32 = ::bevy::math::IVec4::element_product( + let output: i32 = bevy::math::IVec4::element_product( _self.into_inner(), ) .into(); @@ -3940,7 +3865,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "cmpeq", |_self: Val, rhs: Val| { - let output: Val = ::bevy::math::IVec4::cmpeq( + let output: Val = bevy::math::IVec4::cmpeq( _self.into_inner(), rhs.into_inner(), ) @@ -3951,7 +3876,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "cmpne", |_self: Val, rhs: Val| { - let output: Val = ::bevy::math::IVec4::cmpne( + let output: Val = bevy::math::IVec4::cmpne( _self.into_inner(), rhs.into_inner(), ) @@ -3962,7 +3887,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "cmpge", |_self: Val, rhs: Val| { - let output: Val = ::bevy::math::IVec4::cmpge( + let output: Val = bevy::math::IVec4::cmpge( _self.into_inner(), rhs.into_inner(), ) @@ -3973,7 +3898,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "cmpgt", |_self: Val, rhs: Val| { - let output: Val = ::bevy::math::IVec4::cmpgt( + let output: Val = bevy::math::IVec4::cmpgt( _self.into_inner(), rhs.into_inner(), ) @@ -3984,7 +3909,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "cmple", |_self: Val, rhs: Val| { - let output: Val = ::bevy::math::IVec4::cmple( + let output: Val = bevy::math::IVec4::cmple( _self.into_inner(), rhs.into_inner(), ) @@ -3995,7 +3920,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "cmplt", |_self: Val, rhs: Val| { - let output: Val = ::bevy::math::IVec4::cmplt( + let output: Val = bevy::math::IVec4::cmplt( _self.into_inner(), rhs.into_inner(), ) @@ -4006,7 +3931,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "abs", |_self: Val| { - let output: Val = ::bevy::math::IVec4::abs( + let output: Val = bevy::math::IVec4::abs( _self.into_inner(), ) .into(); @@ -4016,7 +3941,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "signum", |_self: Val| { - let output: Val = ::bevy::math::IVec4::signum( + let output: Val = bevy::math::IVec4::signum( _self.into_inner(), ) .into(); @@ -4026,7 +3951,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "is_negative_bitmask", |_self: Val| { - let output: u32 = ::bevy::math::IVec4::is_negative_bitmask( + let output: u32 = bevy::math::IVec4::is_negative_bitmask( _self.into_inner(), ) .into(); @@ -4036,7 +3961,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "length_squared", |_self: Val| { - let output: i32 = ::bevy::math::IVec4::length_squared( + let output: i32 = bevy::math::IVec4::length_squared( _self.into_inner(), ) .into(); @@ -4046,7 +3971,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "distance_squared", |_self: Val, rhs: Val| { - let output: i32 = ::bevy::math::IVec4::distance_squared( + let output: i32 = bevy::math::IVec4::distance_squared( _self.into_inner(), rhs.into_inner(), ) @@ -4057,7 +3982,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "div_euclid", |_self: Val, rhs: Val| { - let output: Val = ::bevy::math::IVec4::div_euclid( + let output: Val = bevy::math::IVec4::div_euclid( _self.into_inner(), rhs.into_inner(), ) @@ -4068,7 +3993,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "rem_euclid", |_self: Val, rhs: Val| { - let output: Val = ::bevy::math::IVec4::rem_euclid( + let output: Val = bevy::math::IVec4::rem_euclid( _self.into_inner(), rhs.into_inner(), ) @@ -4079,7 +4004,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "as_vec4", |_self: Ref| { - let output: Val = ::bevy::math::IVec4::as_vec4( + let output: Val = bevy::math::IVec4::as_vec4( &_self, ) .into(); @@ -4089,7 +4014,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "as_dvec4", |_self: Ref| { - let output: Val = ::bevy::math::IVec4::as_dvec4( + let output: Val = bevy::math::IVec4::as_dvec4( &_self, ) .into(); @@ -4099,7 +4024,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "as_uvec4", |_self: Ref| { - let output: Val = ::bevy::math::IVec4::as_uvec4( + let output: Val = bevy::math::IVec4::as_uvec4( &_self, ) .into(); @@ -4109,7 +4034,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "as_i64vec4", |_self: Ref| { - let output: Val = ::bevy::math::IVec4::as_i64vec4( + let output: Val = bevy::math::IVec4::as_i64vec4( &_self, ) .into(); @@ -4119,7 +4044,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "as_u64vec4", |_self: Ref| { - let output: Val = ::bevy::math::IVec4::as_u64vec4( + let output: Val = bevy::math::IVec4::as_u64vec4( &_self, ) .into(); @@ -4129,7 +4054,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "wrapping_add", |_self: Val, rhs: Val| { - let output: Val = ::bevy::math::IVec4::wrapping_add( + let output: Val = bevy::math::IVec4::wrapping_add( _self.into_inner(), rhs.into_inner(), ) @@ -4140,7 +4065,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "wrapping_sub", |_self: Val, rhs: Val| { - let output: Val = ::bevy::math::IVec4::wrapping_sub( + let output: Val = bevy::math::IVec4::wrapping_sub( _self.into_inner(), rhs.into_inner(), ) @@ -4151,7 +4076,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "wrapping_mul", |_self: Val, rhs: Val| { - let output: Val = ::bevy::math::IVec4::wrapping_mul( + let output: Val = bevy::math::IVec4::wrapping_mul( _self.into_inner(), rhs.into_inner(), ) @@ -4162,7 +4087,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "wrapping_div", |_self: Val, rhs: Val| { - let output: Val = ::bevy::math::IVec4::wrapping_div( + let output: Val = bevy::math::IVec4::wrapping_div( _self.into_inner(), rhs.into_inner(), ) @@ -4173,7 +4098,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "saturating_add", |_self: Val, rhs: Val| { - let output: Val = ::bevy::math::IVec4::saturating_add( + let output: Val = bevy::math::IVec4::saturating_add( _self.into_inner(), rhs.into_inner(), ) @@ -4184,7 +4109,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "saturating_sub", |_self: Val, rhs: Val| { - let output: Val = ::bevy::math::IVec4::saturating_sub( + let output: Val = bevy::math::IVec4::saturating_sub( _self.into_inner(), rhs.into_inner(), ) @@ -4195,7 +4120,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "saturating_mul", |_self: Val, rhs: Val| { - let output: Val = ::bevy::math::IVec4::saturating_mul( + let output: Val = bevy::math::IVec4::saturating_mul( _self.into_inner(), rhs.into_inner(), ) @@ -4206,7 +4131,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "saturating_div", |_self: Val, rhs: Val| { - let output: Val = ::bevy::math::IVec4::saturating_div( + let output: Val = bevy::math::IVec4::saturating_div( _self.into_inner(), rhs.into_inner(), ) @@ -4217,7 +4142,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "wrapping_add_unsigned", |_self: Val, rhs: Val| { - let output: Val = ::bevy::math::IVec4::wrapping_add_unsigned( + let output: Val = bevy::math::IVec4::wrapping_add_unsigned( _self.into_inner(), rhs.into_inner(), ) @@ -4228,7 +4153,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "wrapping_sub_unsigned", |_self: Val, rhs: Val| { - let output: Val = ::bevy::math::IVec4::wrapping_sub_unsigned( + let output: Val = bevy::math::IVec4::wrapping_sub_unsigned( _self.into_inner(), rhs.into_inner(), ) @@ -4239,7 +4164,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "saturating_add_unsigned", |_self: Val, rhs: Val| { - let output: Val = ::bevy::math::IVec4::saturating_add_unsigned( + let output: Val = bevy::math::IVec4::saturating_add_unsigned( _self.into_inner(), rhs.into_inner(), ) @@ -4250,7 +4175,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "saturating_sub_unsigned", |_self: Val, rhs: Val| { - let output: Val = ::bevy::math::IVec4::saturating_sub_unsigned( + let output: Val = bevy::math::IVec4::saturating_sub_unsigned( _self.into_inner(), rhs.into_inner(), ) @@ -4261,10 +4186,9 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "sub", |_self: Val, rhs: i32| { - let output: Val = ::bevy::math::IVec4::sub( - _self.into_inner(), - rhs, - ) + let output: Val = >::sub(_self.into_inner(), rhs) .into(); output }, @@ -4272,7 +4196,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "assert_receiver_is_total_eq", |_self: Ref| { - let output: () = ::bevy::math::IVec4::assert_receiver_is_total_eq( + let output: () = ::assert_receiver_is_total_eq( &_self, ) .into(); @@ -4282,10 +4206,9 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "add", |_self: Val, rhs: Ref| { - let output: Val = ::bevy::math::IVec4::add( - _self.into_inner(), - &rhs, - ) + let output: Val = >::add(_self.into_inner(), &rhs) .into(); output }, @@ -4293,10 +4216,9 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "div", |_self: Val, rhs: i32| { - let output: Val = ::bevy::math::IVec4::div( - _self.into_inner(), - rhs, - ) + let output: Val = >::div(_self.into_inner(), rhs) .into(); output }, @@ -4304,10 +4226,9 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "rem", |_self: Val, rhs: Val| { - let output: Val = ::bevy::math::IVec4::rem( - _self.into_inner(), - rhs.into_inner(), - ) + let output: Val = >::rem(_self.into_inner(), rhs.into_inner()) .into(); output }, @@ -4315,10 +4236,9 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "mul", |_self: Val, rhs: Val| { - let output: Val = ::bevy::math::IVec4::mul( - _self.into_inner(), - rhs.into_inner(), - ) + let output: Val = >::mul(_self.into_inner(), rhs.into_inner()) .into(); output }, @@ -4326,10 +4246,9 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "add", |_self: Val, rhs: Val| { - let output: Val = ::bevy::math::IVec4::add( - _self.into_inner(), - rhs.into_inner(), - ) + let output: Val = >::add(_self.into_inner(), rhs.into_inner()) .into(); output }, @@ -4337,10 +4256,9 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "mul", |_self: Val, rhs: i32| { - let output: Val = ::bevy::math::IVec4::mul( - _self.into_inner(), - rhs, - ) + let output: Val = >::mul(_self.into_inner(), rhs) .into(); output }, @@ -4348,7 +4266,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "clone", |_self: Ref| { - let output: Val = ::bevy::math::IVec4::clone( + let output: Val = ::clone( &_self, ) .into(); @@ -4358,10 +4276,9 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "rem", |_self: Val, rhs: Ref| { - let output: Val = ::bevy::math::IVec4::rem( - _self.into_inner(), - &rhs, - ) + let output: Val = >::rem(_self.into_inner(), &rhs) .into(); output }, @@ -4369,17 +4286,19 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "eq", |_self: Ref, other: Ref| { - let output: bool = ::bevy::math::IVec4::eq(&_self, &other).into(); + let output: bool = >::eq(&_self, &other) + .into(); output }, ) .overwrite_script_function( "mul", |_self: Val, rhs: Ref| { - let output: Val = ::bevy::math::IVec4::mul( - _self.into_inner(), - &rhs, - ) + let output: Val = >::mul(_self.into_inner(), &rhs) .into(); output }, @@ -4387,10 +4306,9 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "add", |_self: Val, rhs: i32| { - let output: Val = ::bevy::math::IVec4::add( - _self.into_inner(), - rhs, - ) + let output: Val = >::add(_self.into_inner(), rhs) .into(); output }, @@ -4398,10 +4316,9 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "sub", |_self: Val, rhs: Val| { - let output: Val = ::bevy::math::IVec4::sub( - _self.into_inner(), - rhs.into_inner(), - ) + let output: Val = >::sub(_self.into_inner(), rhs.into_inner()) .into(); output }, @@ -4409,10 +4326,9 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "div", |_self: Val, rhs: Ref| { - let output: Val = ::bevy::math::IVec4::div( - _self.into_inner(), - &rhs, - ) + let output: Val = >::div(_self.into_inner(), &rhs) .into(); output }, @@ -4420,10 +4336,9 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "sub", |_self: Val, rhs: Ref| { - let output: Val = ::bevy::math::IVec4::sub( - _self.into_inner(), - &rhs, - ) + let output: Val = >::sub(_self.into_inner(), &rhs) .into(); output }, @@ -4431,10 +4346,9 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "div", |_self: Val, rhs: Val| { - let output: Val = ::bevy::math::IVec4::div( - _self.into_inner(), - rhs.into_inner(), - ) + let output: Val = >::div(_self.into_inner(), rhs.into_inner()) .into(); output }, @@ -4443,10 +4357,9 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "sub", |_self: Val, rhs: i64| { - let output: Val = ::bevy::math::I64Vec2::sub( - _self.into_inner(), - rhs, - ) + let output: Val = >::sub(_self.into_inner(), rhs) .into(); output }, @@ -4454,10 +4367,9 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "rem", |_self: Val, rhs: i64| { - let output: Val = ::bevy::math::I64Vec2::rem( - _self.into_inner(), - rhs, - ) + let output: Val = >::rem(_self.into_inner(), rhs) .into(); output }, @@ -4465,10 +4377,9 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "add", |_self: Val, rhs: Ref| { - let output: Val = ::bevy::math::I64Vec2::add( - _self.into_inner(), - &rhs, - ) + let output: Val = >::add(_self.into_inner(), &rhs) .into(); output }, @@ -4476,10 +4387,9 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "div", |_self: Val, rhs: Val| { - let output: Val = ::bevy::math::I64Vec2::div( - _self.into_inner(), - rhs.into_inner(), - ) + let output: Val = >::div(_self.into_inner(), rhs.into_inner()) .into(); output }, @@ -4487,10 +4397,9 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "rem", |_self: Val, rhs: Ref| { - let output: Val = ::bevy::math::I64Vec2::rem( - _self.into_inner(), - &rhs, - ) + let output: Val = >::rem(_self.into_inner(), &rhs) .into(); output }, @@ -4498,10 +4407,9 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "add", |_self: Val, rhs: i64| { - let output: Val = ::bevy::math::I64Vec2::add( - _self.into_inner(), - rhs, - ) + let output: Val = >::add(_self.into_inner(), rhs) .into(); output }, @@ -4509,10 +4417,9 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "mul", |_self: Val, rhs: Ref| { - let output: Val = ::bevy::math::I64Vec2::mul( - _self.into_inner(), - &rhs, - ) + let output: Val = >::mul(_self.into_inner(), &rhs) .into(); output }, @@ -4520,10 +4427,9 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "div", |_self: Val, rhs: Ref| { - let output: Val = ::bevy::math::I64Vec2::div( - _self.into_inner(), - &rhs, - ) + let output: Val = >::div(_self.into_inner(), &rhs) .into(); output }, @@ -4531,7 +4437,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "neg", |_self: Val| { - let output: Val = ::bevy::math::I64Vec2::neg( + let output: Val = ::neg( _self.into_inner(), ) .into(); @@ -4541,10 +4447,9 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "sub", |_self: Val, rhs: Ref| { - let output: Val = ::bevy::math::I64Vec2::sub( - _self.into_inner(), - &rhs, - ) + let output: Val = >::sub(_self.into_inner(), &rhs) .into(); output }, @@ -4552,7 +4457,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "assert_receiver_is_total_eq", |_self: Ref| { - let output: () = ::bevy::math::I64Vec2::assert_receiver_is_total_eq( + let output: () = ::assert_receiver_is_total_eq( &_self, ) .into(); @@ -4562,10 +4467,9 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "sub", |_self: Val, rhs: Val| { - let output: Val = ::bevy::math::I64Vec2::sub( - _self.into_inner(), - rhs.into_inner(), - ) + let output: Val = >::sub(_self.into_inner(), rhs.into_inner()) .into(); output }, @@ -4573,10 +4477,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "new", |x: i64, y: i64| { - let output: Val = ::bevy::math::I64Vec2::new( - x, - y, - ) + let output: Val = bevy::math::I64Vec2::new(x, y) .into(); output }, @@ -4584,9 +4485,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "splat", |v: i64| { - let output: Val = ::bevy::math::I64Vec2::splat( - v, - ) + let output: Val = bevy::math::I64Vec2::splat(v) .into(); output }, @@ -4598,7 +4497,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { if_true: Val, if_false: Val| { - let output: Val = ::bevy::math::I64Vec2::select( + let output: Val = bevy::math::I64Vec2::select( mask.into_inner(), if_true.into_inner(), if_false.into_inner(), @@ -4610,7 +4509,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "from_array", |a: [i64; 2]| { - let output: Val = ::bevy::math::I64Vec2::from_array( + let output: Val = bevy::math::I64Vec2::from_array( a, ) .into(); @@ -4620,15 +4519,14 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "to_array", |_self: Ref| { - let output: [i64; 2] = ::bevy::math::I64Vec2::to_array(&_self) - .into(); + let output: [i64; 2] = bevy::math::I64Vec2::to_array(&_self).into(); output }, ) .overwrite_script_function( "extend", |_self: Val, z: i64| { - let output: Val = ::bevy::math::I64Vec2::extend( + let output: Val = bevy::math::I64Vec2::extend( _self.into_inner(), z, ) @@ -4639,7 +4537,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "with_x", |_self: Val, x: i64| { - let output: Val = ::bevy::math::I64Vec2::with_x( + let output: Val = bevy::math::I64Vec2::with_x( _self.into_inner(), x, ) @@ -4650,7 +4548,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "with_y", |_self: Val, y: i64| { - let output: Val = ::bevy::math::I64Vec2::with_y( + let output: Val = bevy::math::I64Vec2::with_y( _self.into_inner(), y, ) @@ -4661,7 +4559,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "dot", |_self: Val, rhs: Val| { - let output: i64 = ::bevy::math::I64Vec2::dot( + let output: i64 = bevy::math::I64Vec2::dot( _self.into_inner(), rhs.into_inner(), ) @@ -4672,7 +4570,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "dot_into_vec", |_self: Val, rhs: Val| { - let output: Val = ::bevy::math::I64Vec2::dot_into_vec( + let output: Val = bevy::math::I64Vec2::dot_into_vec( _self.into_inner(), rhs.into_inner(), ) @@ -4683,7 +4581,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "min", |_self: Val, rhs: Val| { - let output: Val = ::bevy::math::I64Vec2::min( + let output: Val = bevy::math::I64Vec2::min( _self.into_inner(), rhs.into_inner(), ) @@ -4694,7 +4592,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "max", |_self: Val, rhs: Val| { - let output: Val = ::bevy::math::I64Vec2::max( + let output: Val = bevy::math::I64Vec2::max( _self.into_inner(), rhs.into_inner(), ) @@ -4709,7 +4607,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { min: Val, max: Val| { - let output: Val = ::bevy::math::I64Vec2::clamp( + let output: Val = bevy::math::I64Vec2::clamp( _self.into_inner(), min.into_inner(), max.into_inner(), @@ -4721,7 +4619,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "min_element", |_self: Val| { - let output: i64 = ::bevy::math::I64Vec2::min_element( + let output: i64 = bevy::math::I64Vec2::min_element( _self.into_inner(), ) .into(); @@ -4731,7 +4629,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "max_element", |_self: Val| { - let output: i64 = ::bevy::math::I64Vec2::max_element( + let output: i64 = bevy::math::I64Vec2::max_element( _self.into_inner(), ) .into(); @@ -4741,7 +4639,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "element_sum", |_self: Val| { - let output: i64 = ::bevy::math::I64Vec2::element_sum( + let output: i64 = bevy::math::I64Vec2::element_sum( _self.into_inner(), ) .into(); @@ -4751,7 +4649,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "element_product", |_self: Val| { - let output: i64 = ::bevy::math::I64Vec2::element_product( + let output: i64 = bevy::math::I64Vec2::element_product( _self.into_inner(), ) .into(); @@ -4761,7 +4659,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "cmpeq", |_self: Val, rhs: Val| { - let output: Val = ::bevy::math::I64Vec2::cmpeq( + let output: Val = bevy::math::I64Vec2::cmpeq( _self.into_inner(), rhs.into_inner(), ) @@ -4772,7 +4670,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "cmpne", |_self: Val, rhs: Val| { - let output: Val = ::bevy::math::I64Vec2::cmpne( + let output: Val = bevy::math::I64Vec2::cmpne( _self.into_inner(), rhs.into_inner(), ) @@ -4783,7 +4681,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "cmpge", |_self: Val, rhs: Val| { - let output: Val = ::bevy::math::I64Vec2::cmpge( + let output: Val = bevy::math::I64Vec2::cmpge( _self.into_inner(), rhs.into_inner(), ) @@ -4794,7 +4692,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "cmpgt", |_self: Val, rhs: Val| { - let output: Val = ::bevy::math::I64Vec2::cmpgt( + let output: Val = bevy::math::I64Vec2::cmpgt( _self.into_inner(), rhs.into_inner(), ) @@ -4805,7 +4703,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "cmple", |_self: Val, rhs: Val| { - let output: Val = ::bevy::math::I64Vec2::cmple( + let output: Val = bevy::math::I64Vec2::cmple( _self.into_inner(), rhs.into_inner(), ) @@ -4816,7 +4714,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "cmplt", |_self: Val, rhs: Val| { - let output: Val = ::bevy::math::I64Vec2::cmplt( + let output: Val = bevy::math::I64Vec2::cmplt( _self.into_inner(), rhs.into_inner(), ) @@ -4827,7 +4725,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "abs", |_self: Val| { - let output: Val = ::bevy::math::I64Vec2::abs( + let output: Val = bevy::math::I64Vec2::abs( _self.into_inner(), ) .into(); @@ -4837,7 +4735,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "signum", |_self: Val| { - let output: Val = ::bevy::math::I64Vec2::signum( + let output: Val = bevy::math::I64Vec2::signum( _self.into_inner(), ) .into(); @@ -4847,7 +4745,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "is_negative_bitmask", |_self: Val| { - let output: u32 = ::bevy::math::I64Vec2::is_negative_bitmask( + let output: u32 = bevy::math::I64Vec2::is_negative_bitmask( _self.into_inner(), ) .into(); @@ -4857,7 +4755,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "length_squared", |_self: Val| { - let output: i64 = ::bevy::math::I64Vec2::length_squared( + let output: i64 = bevy::math::I64Vec2::length_squared( _self.into_inner(), ) .into(); @@ -4867,7 +4765,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "distance_squared", |_self: Val, rhs: Val| { - let output: i64 = ::bevy::math::I64Vec2::distance_squared( + let output: i64 = bevy::math::I64Vec2::distance_squared( _self.into_inner(), rhs.into_inner(), ) @@ -4878,7 +4776,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "div_euclid", |_self: Val, rhs: Val| { - let output: Val = ::bevy::math::I64Vec2::div_euclid( + let output: Val = bevy::math::I64Vec2::div_euclid( _self.into_inner(), rhs.into_inner(), ) @@ -4889,7 +4787,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "rem_euclid", |_self: Val, rhs: Val| { - let output: Val = ::bevy::math::I64Vec2::rem_euclid( + let output: Val = bevy::math::I64Vec2::rem_euclid( _self.into_inner(), rhs.into_inner(), ) @@ -4900,7 +4798,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "perp", |_self: Val| { - let output: Val = ::bevy::math::I64Vec2::perp( + let output: Val = bevy::math::I64Vec2::perp( _self.into_inner(), ) .into(); @@ -4910,7 +4808,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "perp_dot", |_self: Val, rhs: Val| { - let output: i64 = ::bevy::math::I64Vec2::perp_dot( + let output: i64 = bevy::math::I64Vec2::perp_dot( _self.into_inner(), rhs.into_inner(), ) @@ -4921,7 +4819,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "rotate", |_self: Val, rhs: Val| { - let output: Val = ::bevy::math::I64Vec2::rotate( + let output: Val = bevy::math::I64Vec2::rotate( _self.into_inner(), rhs.into_inner(), ) @@ -4932,7 +4830,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "as_vec2", |_self: Ref| { - let output: Val = ::bevy::math::I64Vec2::as_vec2( + let output: Val = bevy::math::I64Vec2::as_vec2( &_self, ) .into(); @@ -4942,7 +4840,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "as_dvec2", |_self: Ref| { - let output: Val = ::bevy::math::I64Vec2::as_dvec2( + let output: Val = bevy::math::I64Vec2::as_dvec2( &_self, ) .into(); @@ -4952,7 +4850,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "as_ivec2", |_self: Ref| { - let output: Val = ::bevy::math::I64Vec2::as_ivec2( + let output: Val = bevy::math::I64Vec2::as_ivec2( &_self, ) .into(); @@ -4962,7 +4860,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "as_uvec2", |_self: Ref| { - let output: Val = ::bevy::math::I64Vec2::as_uvec2( + let output: Val = bevy::math::I64Vec2::as_uvec2( &_self, ) .into(); @@ -4972,7 +4870,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "as_u64vec2", |_self: Ref| { - let output: Val = ::bevy::math::I64Vec2::as_u64vec2( + let output: Val = bevy::math::I64Vec2::as_u64vec2( &_self, ) .into(); @@ -4982,7 +4880,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "wrapping_add", |_self: Val, rhs: Val| { - let output: Val = ::bevy::math::I64Vec2::wrapping_add( + let output: Val = bevy::math::I64Vec2::wrapping_add( _self.into_inner(), rhs.into_inner(), ) @@ -4993,7 +4891,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "wrapping_sub", |_self: Val, rhs: Val| { - let output: Val = ::bevy::math::I64Vec2::wrapping_sub( + let output: Val = bevy::math::I64Vec2::wrapping_sub( _self.into_inner(), rhs.into_inner(), ) @@ -5004,7 +4902,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "wrapping_mul", |_self: Val, rhs: Val| { - let output: Val = ::bevy::math::I64Vec2::wrapping_mul( + let output: Val = bevy::math::I64Vec2::wrapping_mul( _self.into_inner(), rhs.into_inner(), ) @@ -5015,7 +4913,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "wrapping_div", |_self: Val, rhs: Val| { - let output: Val = ::bevy::math::I64Vec2::wrapping_div( + let output: Val = bevy::math::I64Vec2::wrapping_div( _self.into_inner(), rhs.into_inner(), ) @@ -5026,7 +4924,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "saturating_add", |_self: Val, rhs: Val| { - let output: Val = ::bevy::math::I64Vec2::saturating_add( + let output: Val = bevy::math::I64Vec2::saturating_add( _self.into_inner(), rhs.into_inner(), ) @@ -5037,7 +4935,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "saturating_sub", |_self: Val, rhs: Val| { - let output: Val = ::bevy::math::I64Vec2::saturating_sub( + let output: Val = bevy::math::I64Vec2::saturating_sub( _self.into_inner(), rhs.into_inner(), ) @@ -5048,7 +4946,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "saturating_mul", |_self: Val, rhs: Val| { - let output: Val = ::bevy::math::I64Vec2::saturating_mul( + let output: Val = bevy::math::I64Vec2::saturating_mul( _self.into_inner(), rhs.into_inner(), ) @@ -5059,7 +4957,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "saturating_div", |_self: Val, rhs: Val| { - let output: Val = ::bevy::math::I64Vec2::saturating_div( + let output: Val = bevy::math::I64Vec2::saturating_div( _self.into_inner(), rhs.into_inner(), ) @@ -5070,7 +4968,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "wrapping_add_unsigned", |_self: Val, rhs: Val| { - let output: Val = ::bevy::math::I64Vec2::wrapping_add_unsigned( + let output: Val = bevy::math::I64Vec2::wrapping_add_unsigned( _self.into_inner(), rhs.into_inner(), ) @@ -5081,7 +4979,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "wrapping_sub_unsigned", |_self: Val, rhs: Val| { - let output: Val = ::bevy::math::I64Vec2::wrapping_sub_unsigned( + let output: Val = bevy::math::I64Vec2::wrapping_sub_unsigned( _self.into_inner(), rhs.into_inner(), ) @@ -5092,7 +4990,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "saturating_add_unsigned", |_self: Val, rhs: Val| { - let output: Val = ::bevy::math::I64Vec2::saturating_add_unsigned( + let output: Val = bevy::math::I64Vec2::saturating_add_unsigned( _self.into_inner(), rhs.into_inner(), ) @@ -5103,7 +5001,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "saturating_sub_unsigned", |_self: Val, rhs: Val| { - let output: Val = ::bevy::math::I64Vec2::saturating_sub_unsigned( + let output: Val = bevy::math::I64Vec2::saturating_sub_unsigned( _self.into_inner(), rhs.into_inner(), ) @@ -5114,10 +5012,9 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "add", |_self: Val, rhs: Val| { - let output: Val = ::bevy::math::I64Vec2::add( - _self.into_inner(), - rhs.into_inner(), - ) + let output: Val = >::add(_self.into_inner(), rhs.into_inner()) .into(); output }, @@ -5125,10 +5022,9 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "rem", |_self: Val, rhs: Val| { - let output: Val = ::bevy::math::I64Vec2::rem( - _self.into_inner(), - rhs.into_inner(), - ) + let output: Val = >::rem(_self.into_inner(), rhs.into_inner()) .into(); output }, @@ -5136,17 +5032,19 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "eq", |_self: Ref, other: Ref| { - let output: bool = ::bevy::math::I64Vec2::eq(&_self, &other).into(); + let output: bool = >::eq(&_self, &other) + .into(); output }, ) .overwrite_script_function( "div", |_self: Val, rhs: i64| { - let output: Val = ::bevy::math::I64Vec2::div( - _self.into_inner(), - rhs, - ) + let output: Val = >::div(_self.into_inner(), rhs) .into(); output }, @@ -5154,10 +5052,9 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "mul", |_self: Val, rhs: i64| { - let output: Val = ::bevy::math::I64Vec2::mul( - _self.into_inner(), - rhs, - ) + let output: Val = >::mul(_self.into_inner(), rhs) .into(); output }, @@ -5165,10 +5062,9 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "mul", |_self: Val, rhs: Val| { - let output: Val = ::bevy::math::I64Vec2::mul( - _self.into_inner(), - rhs.into_inner(), - ) + let output: Val = >::mul(_self.into_inner(), rhs.into_inner()) .into(); output }, @@ -5176,7 +5072,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "clone", |_self: Ref| { - let output: Val = ::bevy::math::I64Vec2::clone( + let output: Val = ::clone( &_self, ) .into(); @@ -5187,10 +5083,9 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "rem", |_self: Val, rhs: i64| { - let output: Val = ::bevy::math::I64Vec3::rem( - _self.into_inner(), - rhs, - ) + let output: Val = >::rem(_self.into_inner(), rhs) .into(); output }, @@ -5198,10 +5093,9 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "sub", |_self: Val, rhs: Ref| { - let output: Val = ::bevy::math::I64Vec3::sub( - _self.into_inner(), - &rhs, - ) + let output: Val = >::sub(_self.into_inner(), &rhs) .into(); output }, @@ -5209,10 +5103,9 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "sub", |_self: Val, rhs: i64| { - let output: Val = ::bevy::math::I64Vec3::sub( - _self.into_inner(), - rhs, - ) + let output: Val = >::sub(_self.into_inner(), rhs) .into(); output }, @@ -5220,10 +5113,9 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "rem", |_self: Val, rhs: Ref| { - let output: Val = ::bevy::math::I64Vec3::rem( - _self.into_inner(), - &rhs, - ) + let output: Val = >::rem(_self.into_inner(), &rhs) .into(); output }, @@ -5231,7 +5123,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "clone", |_self: Ref| { - let output: Val = ::bevy::math::I64Vec3::clone( + let output: Val = ::clone( &_self, ) .into(); @@ -5241,10 +5133,9 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "div", |_self: Val, rhs: Val| { - let output: Val = ::bevy::math::I64Vec3::div( - _self.into_inner(), - rhs.into_inner(), - ) + let output: Val = >::div(_self.into_inner(), rhs.into_inner()) .into(); output }, @@ -5252,7 +5143,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "new", |x: i64, y: i64, z: i64| { - let output: Val = ::bevy::math::I64Vec3::new( + let output: Val = bevy::math::I64Vec3::new( x, y, z, @@ -5264,9 +5155,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "splat", |v: i64| { - let output: Val = ::bevy::math::I64Vec3::splat( - v, - ) + let output: Val = bevy::math::I64Vec3::splat(v) .into(); output }, @@ -5278,7 +5167,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { if_true: Val, if_false: Val| { - let output: Val = ::bevy::math::I64Vec3::select( + let output: Val = bevy::math::I64Vec3::select( mask.into_inner(), if_true.into_inner(), if_false.into_inner(), @@ -5290,7 +5179,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "from_array", |a: [i64; 3]| { - let output: Val = ::bevy::math::I64Vec3::from_array( + let output: Val = bevy::math::I64Vec3::from_array( a, ) .into(); @@ -5300,15 +5189,14 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "to_array", |_self: Ref| { - let output: [i64; 3] = ::bevy::math::I64Vec3::to_array(&_self) - .into(); + let output: [i64; 3] = bevy::math::I64Vec3::to_array(&_self).into(); output }, ) .overwrite_script_function( "extend", |_self: Val, w: i64| { - let output: Val = ::bevy::math::I64Vec3::extend( + let output: Val = bevy::math::I64Vec3::extend( _self.into_inner(), w, ) @@ -5319,7 +5207,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "truncate", |_self: Val| { - let output: Val = ::bevy::math::I64Vec3::truncate( + let output: Val = bevy::math::I64Vec3::truncate( _self.into_inner(), ) .into(); @@ -5329,7 +5217,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "with_x", |_self: Val, x: i64| { - let output: Val = ::bevy::math::I64Vec3::with_x( + let output: Val = bevy::math::I64Vec3::with_x( _self.into_inner(), x, ) @@ -5340,7 +5228,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "with_y", |_self: Val, y: i64| { - let output: Val = ::bevy::math::I64Vec3::with_y( + let output: Val = bevy::math::I64Vec3::with_y( _self.into_inner(), y, ) @@ -5351,7 +5239,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "with_z", |_self: Val, z: i64| { - let output: Val = ::bevy::math::I64Vec3::with_z( + let output: Val = bevy::math::I64Vec3::with_z( _self.into_inner(), z, ) @@ -5362,7 +5250,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "dot", |_self: Val, rhs: Val| { - let output: i64 = ::bevy::math::I64Vec3::dot( + let output: i64 = bevy::math::I64Vec3::dot( _self.into_inner(), rhs.into_inner(), ) @@ -5373,7 +5261,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "dot_into_vec", |_self: Val, rhs: Val| { - let output: Val = ::bevy::math::I64Vec3::dot_into_vec( + let output: Val = bevy::math::I64Vec3::dot_into_vec( _self.into_inner(), rhs.into_inner(), ) @@ -5384,7 +5272,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "cross", |_self: Val, rhs: Val| { - let output: Val = ::bevy::math::I64Vec3::cross( + let output: Val = bevy::math::I64Vec3::cross( _self.into_inner(), rhs.into_inner(), ) @@ -5395,7 +5283,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "min", |_self: Val, rhs: Val| { - let output: Val = ::bevy::math::I64Vec3::min( + let output: Val = bevy::math::I64Vec3::min( _self.into_inner(), rhs.into_inner(), ) @@ -5406,7 +5294,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "max", |_self: Val, rhs: Val| { - let output: Val = ::bevy::math::I64Vec3::max( + let output: Val = bevy::math::I64Vec3::max( _self.into_inner(), rhs.into_inner(), ) @@ -5421,7 +5309,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { min: Val, max: Val| { - let output: Val = ::bevy::math::I64Vec3::clamp( + let output: Val = bevy::math::I64Vec3::clamp( _self.into_inner(), min.into_inner(), max.into_inner(), @@ -5433,7 +5321,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "min_element", |_self: Val| { - let output: i64 = ::bevy::math::I64Vec3::min_element( + let output: i64 = bevy::math::I64Vec3::min_element( _self.into_inner(), ) .into(); @@ -5443,7 +5331,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "max_element", |_self: Val| { - let output: i64 = ::bevy::math::I64Vec3::max_element( + let output: i64 = bevy::math::I64Vec3::max_element( _self.into_inner(), ) .into(); @@ -5453,7 +5341,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "element_sum", |_self: Val| { - let output: i64 = ::bevy::math::I64Vec3::element_sum( + let output: i64 = bevy::math::I64Vec3::element_sum( _self.into_inner(), ) .into(); @@ -5463,7 +5351,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "element_product", |_self: Val| { - let output: i64 = ::bevy::math::I64Vec3::element_product( + let output: i64 = bevy::math::I64Vec3::element_product( _self.into_inner(), ) .into(); @@ -5473,7 +5361,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "cmpeq", |_self: Val, rhs: Val| { - let output: Val = ::bevy::math::I64Vec3::cmpeq( + let output: Val = bevy::math::I64Vec3::cmpeq( _self.into_inner(), rhs.into_inner(), ) @@ -5484,7 +5372,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "cmpne", |_self: Val, rhs: Val| { - let output: Val = ::bevy::math::I64Vec3::cmpne( + let output: Val = bevy::math::I64Vec3::cmpne( _self.into_inner(), rhs.into_inner(), ) @@ -5495,7 +5383,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "cmpge", |_self: Val, rhs: Val| { - let output: Val = ::bevy::math::I64Vec3::cmpge( + let output: Val = bevy::math::I64Vec3::cmpge( _self.into_inner(), rhs.into_inner(), ) @@ -5506,7 +5394,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "cmpgt", |_self: Val, rhs: Val| { - let output: Val = ::bevy::math::I64Vec3::cmpgt( + let output: Val = bevy::math::I64Vec3::cmpgt( _self.into_inner(), rhs.into_inner(), ) @@ -5517,7 +5405,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "cmple", |_self: Val, rhs: Val| { - let output: Val = ::bevy::math::I64Vec3::cmple( + let output: Val = bevy::math::I64Vec3::cmple( _self.into_inner(), rhs.into_inner(), ) @@ -5528,7 +5416,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "cmplt", |_self: Val, rhs: Val| { - let output: Val = ::bevy::math::I64Vec3::cmplt( + let output: Val = bevy::math::I64Vec3::cmplt( _self.into_inner(), rhs.into_inner(), ) @@ -5539,7 +5427,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "abs", |_self: Val| { - let output: Val = ::bevy::math::I64Vec3::abs( + let output: Val = bevy::math::I64Vec3::abs( _self.into_inner(), ) .into(); @@ -5549,7 +5437,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "signum", |_self: Val| { - let output: Val = ::bevy::math::I64Vec3::signum( + let output: Val = bevy::math::I64Vec3::signum( _self.into_inner(), ) .into(); @@ -5559,7 +5447,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "is_negative_bitmask", |_self: Val| { - let output: u32 = ::bevy::math::I64Vec3::is_negative_bitmask( + let output: u32 = bevy::math::I64Vec3::is_negative_bitmask( _self.into_inner(), ) .into(); @@ -5569,7 +5457,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "length_squared", |_self: Val| { - let output: i64 = ::bevy::math::I64Vec3::length_squared( + let output: i64 = bevy::math::I64Vec3::length_squared( _self.into_inner(), ) .into(); @@ -5579,7 +5467,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "distance_squared", |_self: Val, rhs: Val| { - let output: i64 = ::bevy::math::I64Vec3::distance_squared( + let output: i64 = bevy::math::I64Vec3::distance_squared( _self.into_inner(), rhs.into_inner(), ) @@ -5590,7 +5478,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "div_euclid", |_self: Val, rhs: Val| { - let output: Val = ::bevy::math::I64Vec3::div_euclid( + let output: Val = bevy::math::I64Vec3::div_euclid( _self.into_inner(), rhs.into_inner(), ) @@ -5601,7 +5489,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "rem_euclid", |_self: Val, rhs: Val| { - let output: Val = ::bevy::math::I64Vec3::rem_euclid( + let output: Val = bevy::math::I64Vec3::rem_euclid( _self.into_inner(), rhs.into_inner(), ) @@ -5612,7 +5500,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "as_vec3", |_self: Ref| { - let output: Val = ::bevy::math::I64Vec3::as_vec3( + let output: Val = bevy::math::I64Vec3::as_vec3( &_self, ) .into(); @@ -5622,7 +5510,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "as_vec3a", |_self: Ref| { - let output: Val = ::bevy::math::I64Vec3::as_vec3a( + let output: Val = bevy::math::I64Vec3::as_vec3a( &_self, ) .into(); @@ -5632,7 +5520,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "as_dvec3", |_self: Ref| { - let output: Val = ::bevy::math::I64Vec3::as_dvec3( + let output: Val = bevy::math::I64Vec3::as_dvec3( &_self, ) .into(); @@ -5642,7 +5530,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "as_ivec3", |_self: Ref| { - let output: Val = ::bevy::math::I64Vec3::as_ivec3( + let output: Val = bevy::math::I64Vec3::as_ivec3( &_self, ) .into(); @@ -5652,7 +5540,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "as_uvec3", |_self: Ref| { - let output: Val = ::bevy::math::I64Vec3::as_uvec3( + let output: Val = bevy::math::I64Vec3::as_uvec3( &_self, ) .into(); @@ -5662,7 +5550,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "as_u64vec3", |_self: Ref| { - let output: Val = ::bevy::math::I64Vec3::as_u64vec3( + let output: Val = bevy::math::I64Vec3::as_u64vec3( &_self, ) .into(); @@ -5672,7 +5560,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "wrapping_add", |_self: Val, rhs: Val| { - let output: Val = ::bevy::math::I64Vec3::wrapping_add( + let output: Val = bevy::math::I64Vec3::wrapping_add( _self.into_inner(), rhs.into_inner(), ) @@ -5683,7 +5571,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "wrapping_sub", |_self: Val, rhs: Val| { - let output: Val = ::bevy::math::I64Vec3::wrapping_sub( + let output: Val = bevy::math::I64Vec3::wrapping_sub( _self.into_inner(), rhs.into_inner(), ) @@ -5694,7 +5582,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "wrapping_mul", |_self: Val, rhs: Val| { - let output: Val = ::bevy::math::I64Vec3::wrapping_mul( + let output: Val = bevy::math::I64Vec3::wrapping_mul( _self.into_inner(), rhs.into_inner(), ) @@ -5705,7 +5593,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "wrapping_div", |_self: Val, rhs: Val| { - let output: Val = ::bevy::math::I64Vec3::wrapping_div( + let output: Val = bevy::math::I64Vec3::wrapping_div( _self.into_inner(), rhs.into_inner(), ) @@ -5716,7 +5604,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "saturating_add", |_self: Val, rhs: Val| { - let output: Val = ::bevy::math::I64Vec3::saturating_add( + let output: Val = bevy::math::I64Vec3::saturating_add( _self.into_inner(), rhs.into_inner(), ) @@ -5727,7 +5615,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "saturating_sub", |_self: Val, rhs: Val| { - let output: Val = ::bevy::math::I64Vec3::saturating_sub( + let output: Val = bevy::math::I64Vec3::saturating_sub( _self.into_inner(), rhs.into_inner(), ) @@ -5738,7 +5626,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "saturating_mul", |_self: Val, rhs: Val| { - let output: Val = ::bevy::math::I64Vec3::saturating_mul( + let output: Val = bevy::math::I64Vec3::saturating_mul( _self.into_inner(), rhs.into_inner(), ) @@ -5749,7 +5637,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "saturating_div", |_self: Val, rhs: Val| { - let output: Val = ::bevy::math::I64Vec3::saturating_div( + let output: Val = bevy::math::I64Vec3::saturating_div( _self.into_inner(), rhs.into_inner(), ) @@ -5760,7 +5648,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "wrapping_add_unsigned", |_self: Val, rhs: Val| { - let output: Val = ::bevy::math::I64Vec3::wrapping_add_unsigned( + let output: Val = bevy::math::I64Vec3::wrapping_add_unsigned( _self.into_inner(), rhs.into_inner(), ) @@ -5771,7 +5659,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "wrapping_sub_unsigned", |_self: Val, rhs: Val| { - let output: Val = ::bevy::math::I64Vec3::wrapping_sub_unsigned( + let output: Val = bevy::math::I64Vec3::wrapping_sub_unsigned( _self.into_inner(), rhs.into_inner(), ) @@ -5782,7 +5670,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "saturating_add_unsigned", |_self: Val, rhs: Val| { - let output: Val = ::bevy::math::I64Vec3::saturating_add_unsigned( + let output: Val = bevy::math::I64Vec3::saturating_add_unsigned( _self.into_inner(), rhs.into_inner(), ) @@ -5793,7 +5681,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "saturating_sub_unsigned", |_self: Val, rhs: Val| { - let output: Val = ::bevy::math::I64Vec3::saturating_sub_unsigned( + let output: Val = bevy::math::I64Vec3::saturating_sub_unsigned( _self.into_inner(), rhs.into_inner(), ) @@ -5804,10 +5692,9 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "add", |_self: Val, rhs: Ref| { - let output: Val = ::bevy::math::I64Vec3::add( - _self.into_inner(), - &rhs, - ) + let output: Val = >::add(_self.into_inner(), &rhs) .into(); output }, @@ -5815,10 +5702,9 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "add", |_self: Val, rhs: i64| { - let output: Val = ::bevy::math::I64Vec3::add( - _self.into_inner(), - rhs, - ) + let output: Val = >::add(_self.into_inner(), rhs) .into(); output }, @@ -5826,7 +5712,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "assert_receiver_is_total_eq", |_self: Ref| { - let output: () = ::bevy::math::I64Vec3::assert_receiver_is_total_eq( + let output: () = ::assert_receiver_is_total_eq( &_self, ) .into(); @@ -5836,10 +5722,9 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "add", |_self: Val, rhs: Val| { - let output: Val = ::bevy::math::I64Vec3::add( - _self.into_inner(), - rhs.into_inner(), - ) + let output: Val = >::add(_self.into_inner(), rhs.into_inner()) .into(); output }, @@ -5847,10 +5732,9 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "div", |_self: Val, rhs: i64| { - let output: Val = ::bevy::math::I64Vec3::div( - _self.into_inner(), - rhs, - ) + let output: Val = >::div(_self.into_inner(), rhs) .into(); output }, @@ -5858,10 +5742,9 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "div", |_self: Val, rhs: Ref| { - let output: Val = ::bevy::math::I64Vec3::div( - _self.into_inner(), - &rhs, - ) + let output: Val = >::div(_self.into_inner(), &rhs) .into(); output }, @@ -5869,7 +5752,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "neg", |_self: Val| { - let output: Val = ::bevy::math::I64Vec3::neg( + let output: Val = ::neg( _self.into_inner(), ) .into(); @@ -5879,10 +5762,9 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "sub", |_self: Val, rhs: Val| { - let output: Val = ::bevy::math::I64Vec3::sub( - _self.into_inner(), - rhs.into_inner(), - ) + let output: Val = >::sub(_self.into_inner(), rhs.into_inner()) .into(); output }, @@ -5890,10 +5772,9 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "mul", |_self: Val, rhs: Ref| { - let output: Val = ::bevy::math::I64Vec3::mul( - _self.into_inner(), - &rhs, - ) + let output: Val = >::mul(_self.into_inner(), &rhs) .into(); output }, @@ -5901,10 +5782,9 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "mul", |_self: Val, rhs: Val| { - let output: Val = ::bevy::math::I64Vec3::mul( - _self.into_inner(), - rhs.into_inner(), - ) + let output: Val = >::mul(_self.into_inner(), rhs.into_inner()) .into(); output }, @@ -5912,10 +5792,9 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "rem", |_self: Val, rhs: Val| { - let output: Val = ::bevy::math::I64Vec3::rem( - _self.into_inner(), - rhs.into_inner(), - ) + let output: Val = >::rem(_self.into_inner(), rhs.into_inner()) .into(); output }, @@ -5923,10 +5802,9 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "mul", |_self: Val, rhs: i64| { - let output: Val = ::bevy::math::I64Vec3::mul( - _self.into_inner(), - rhs, - ) + let output: Val = >::mul(_self.into_inner(), rhs) .into(); output }, @@ -5934,7 +5812,10 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "eq", |_self: Ref, other: Ref| { - let output: bool = ::bevy::math::I64Vec3::eq(&_self, &other).into(); + let output: bool = >::eq(&_self, &other) + .into(); output }, ); @@ -5942,17 +5823,19 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "eq", |_self: Ref, other: Ref| { - let output: bool = ::bevy::math::I64Vec4::eq(&_self, &other).into(); + let output: bool = >::eq(&_self, &other) + .into(); output }, ) .overwrite_script_function( "div", |_self: Val, rhs: Ref| { - let output: Val = ::bevy::math::I64Vec4::div( - _self.into_inner(), - &rhs, - ) + let output: Val = >::div(_self.into_inner(), &rhs) .into(); output }, @@ -5960,10 +5843,9 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "div", |_self: Val, rhs: i64| { - let output: Val = ::bevy::math::I64Vec4::div( - _self.into_inner(), - rhs, - ) + let output: Val = >::div(_self.into_inner(), rhs) .into(); output }, @@ -5971,10 +5853,9 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "rem", |_self: Val, rhs: Ref| { - let output: Val = ::bevy::math::I64Vec4::rem( - _self.into_inner(), - &rhs, - ) + let output: Val = >::rem(_self.into_inner(), &rhs) .into(); output }, @@ -5982,10 +5863,9 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "rem", |_self: Val, rhs: Val| { - let output: Val = ::bevy::math::I64Vec4::rem( - _self.into_inner(), - rhs.into_inner(), - ) + let output: Val = >::rem(_self.into_inner(), rhs.into_inner()) .into(); output }, @@ -5993,10 +5873,9 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "add", |_self: Val, rhs: i64| { - let output: Val = ::bevy::math::I64Vec4::add( - _self.into_inner(), - rhs, - ) + let output: Val = >::add(_self.into_inner(), rhs) .into(); output }, @@ -6004,7 +5883,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "clone", |_self: Ref| { - let output: Val = ::bevy::math::I64Vec4::clone( + let output: Val = ::clone( &_self, ) .into(); @@ -6014,10 +5893,9 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "sub", |_self: Val, rhs: Val| { - let output: Val = ::bevy::math::I64Vec4::sub( - _self.into_inner(), - rhs.into_inner(), - ) + let output: Val = >::sub(_self.into_inner(), rhs.into_inner()) .into(); output }, @@ -6025,10 +5903,9 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "rem", |_self: Val, rhs: i64| { - let output: Val = ::bevy::math::I64Vec4::rem( - _self.into_inner(), - rhs, - ) + let output: Val = >::rem(_self.into_inner(), rhs) .into(); output }, @@ -6036,10 +5913,9 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "div", |_self: Val, rhs: Val| { - let output: Val = ::bevy::math::I64Vec4::div( - _self.into_inner(), - rhs.into_inner(), - ) + let output: Val = >::div(_self.into_inner(), rhs.into_inner()) .into(); output }, @@ -6047,10 +5923,9 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "add", |_self: Val, rhs: Val| { - let output: Val = ::bevy::math::I64Vec4::add( - _self.into_inner(), - rhs.into_inner(), - ) + let output: Val = >::add(_self.into_inner(), rhs.into_inner()) .into(); output }, @@ -6058,10 +5933,9 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "sub", |_self: Val, rhs: i64| { - let output: Val = ::bevy::math::I64Vec4::sub( - _self.into_inner(), - rhs, - ) + let output: Val = >::sub(_self.into_inner(), rhs) .into(); output }, @@ -6069,10 +5943,9 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "mul", |_self: Val, rhs: i64| { - let output: Val = ::bevy::math::I64Vec4::mul( - _self.into_inner(), - rhs, - ) + let output: Val = >::mul(_self.into_inner(), rhs) .into(); output }, @@ -6080,10 +5953,9 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "add", |_self: Val, rhs: Ref| { - let output: Val = ::bevy::math::I64Vec4::add( - _self.into_inner(), - &rhs, - ) + let output: Val = >::add(_self.into_inner(), &rhs) .into(); output }, @@ -6091,10 +5963,9 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "sub", |_self: Val, rhs: Ref| { - let output: Val = ::bevy::math::I64Vec4::sub( - _self.into_inner(), - &rhs, - ) + let output: Val = >::sub(_self.into_inner(), &rhs) .into(); output }, @@ -6102,10 +5973,9 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "mul", |_self: Val, rhs: Ref| { - let output: Val = ::bevy::math::I64Vec4::mul( - _self.into_inner(), - &rhs, - ) + let output: Val = >::mul(_self.into_inner(), &rhs) .into(); output }, @@ -6113,7 +5983,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "assert_receiver_is_total_eq", |_self: Ref| { - let output: () = ::bevy::math::I64Vec4::assert_receiver_is_total_eq( + let output: () = ::assert_receiver_is_total_eq( &_self, ) .into(); @@ -6123,7 +5993,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "new", |x: i64, y: i64, z: i64, w: i64| { - let output: Val = ::bevy::math::I64Vec4::new( + let output: Val = bevy::math::I64Vec4::new( x, y, z, @@ -6136,9 +6006,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "splat", |v: i64| { - let output: Val = ::bevy::math::I64Vec4::splat( - v, - ) + let output: Val = bevy::math::I64Vec4::splat(v) .into(); output }, @@ -6150,7 +6018,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { if_true: Val, if_false: Val| { - let output: Val = ::bevy::math::I64Vec4::select( + let output: Val = bevy::math::I64Vec4::select( mask.into_inner(), if_true.into_inner(), if_false.into_inner(), @@ -6162,7 +6030,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "from_array", |a: [i64; 4]| { - let output: Val = ::bevy::math::I64Vec4::from_array( + let output: Val = bevy::math::I64Vec4::from_array( a, ) .into(); @@ -6172,15 +6040,14 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "to_array", |_self: Ref| { - let output: [i64; 4] = ::bevy::math::I64Vec4::to_array(&_self) - .into(); + let output: [i64; 4] = bevy::math::I64Vec4::to_array(&_self).into(); output }, ) .overwrite_script_function( "truncate", |_self: Val| { - let output: Val = ::bevy::math::I64Vec4::truncate( + let output: Val = bevy::math::I64Vec4::truncate( _self.into_inner(), ) .into(); @@ -6190,7 +6057,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "with_x", |_self: Val, x: i64| { - let output: Val = ::bevy::math::I64Vec4::with_x( + let output: Val = bevy::math::I64Vec4::with_x( _self.into_inner(), x, ) @@ -6201,7 +6068,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "with_y", |_self: Val, y: i64| { - let output: Val = ::bevy::math::I64Vec4::with_y( + let output: Val = bevy::math::I64Vec4::with_y( _self.into_inner(), y, ) @@ -6212,7 +6079,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "with_z", |_self: Val, z: i64| { - let output: Val = ::bevy::math::I64Vec4::with_z( + let output: Val = bevy::math::I64Vec4::with_z( _self.into_inner(), z, ) @@ -6223,7 +6090,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "with_w", |_self: Val, w: i64| { - let output: Val = ::bevy::math::I64Vec4::with_w( + let output: Val = bevy::math::I64Vec4::with_w( _self.into_inner(), w, ) @@ -6234,7 +6101,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "dot", |_self: Val, rhs: Val| { - let output: i64 = ::bevy::math::I64Vec4::dot( + let output: i64 = bevy::math::I64Vec4::dot( _self.into_inner(), rhs.into_inner(), ) @@ -6245,7 +6112,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "dot_into_vec", |_self: Val, rhs: Val| { - let output: Val = ::bevy::math::I64Vec4::dot_into_vec( + let output: Val = bevy::math::I64Vec4::dot_into_vec( _self.into_inner(), rhs.into_inner(), ) @@ -6256,7 +6123,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "min", |_self: Val, rhs: Val| { - let output: Val = ::bevy::math::I64Vec4::min( + let output: Val = bevy::math::I64Vec4::min( _self.into_inner(), rhs.into_inner(), ) @@ -6267,7 +6134,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "max", |_self: Val, rhs: Val| { - let output: Val = ::bevy::math::I64Vec4::max( + let output: Val = bevy::math::I64Vec4::max( _self.into_inner(), rhs.into_inner(), ) @@ -6282,7 +6149,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { min: Val, max: Val| { - let output: Val = ::bevy::math::I64Vec4::clamp( + let output: Val = bevy::math::I64Vec4::clamp( _self.into_inner(), min.into_inner(), max.into_inner(), @@ -6294,7 +6161,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "min_element", |_self: Val| { - let output: i64 = ::bevy::math::I64Vec4::min_element( + let output: i64 = bevy::math::I64Vec4::min_element( _self.into_inner(), ) .into(); @@ -6304,7 +6171,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "max_element", |_self: Val| { - let output: i64 = ::bevy::math::I64Vec4::max_element( + let output: i64 = bevy::math::I64Vec4::max_element( _self.into_inner(), ) .into(); @@ -6314,7 +6181,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "element_sum", |_self: Val| { - let output: i64 = ::bevy::math::I64Vec4::element_sum( + let output: i64 = bevy::math::I64Vec4::element_sum( _self.into_inner(), ) .into(); @@ -6324,7 +6191,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "element_product", |_self: Val| { - let output: i64 = ::bevy::math::I64Vec4::element_product( + let output: i64 = bevy::math::I64Vec4::element_product( _self.into_inner(), ) .into(); @@ -6334,7 +6201,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "cmpeq", |_self: Val, rhs: Val| { - let output: Val = ::bevy::math::I64Vec4::cmpeq( + let output: Val = bevy::math::I64Vec4::cmpeq( _self.into_inner(), rhs.into_inner(), ) @@ -6345,7 +6212,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "cmpne", |_self: Val, rhs: Val| { - let output: Val = ::bevy::math::I64Vec4::cmpne( + let output: Val = bevy::math::I64Vec4::cmpne( _self.into_inner(), rhs.into_inner(), ) @@ -6356,7 +6223,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "cmpge", |_self: Val, rhs: Val| { - let output: Val = ::bevy::math::I64Vec4::cmpge( + let output: Val = bevy::math::I64Vec4::cmpge( _self.into_inner(), rhs.into_inner(), ) @@ -6367,7 +6234,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "cmpgt", |_self: Val, rhs: Val| { - let output: Val = ::bevy::math::I64Vec4::cmpgt( + let output: Val = bevy::math::I64Vec4::cmpgt( _self.into_inner(), rhs.into_inner(), ) @@ -6378,7 +6245,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "cmple", |_self: Val, rhs: Val| { - let output: Val = ::bevy::math::I64Vec4::cmple( + let output: Val = bevy::math::I64Vec4::cmple( _self.into_inner(), rhs.into_inner(), ) @@ -6389,7 +6256,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "cmplt", |_self: Val, rhs: Val| { - let output: Val = ::bevy::math::I64Vec4::cmplt( + let output: Val = bevy::math::I64Vec4::cmplt( _self.into_inner(), rhs.into_inner(), ) @@ -6400,7 +6267,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "abs", |_self: Val| { - let output: Val = ::bevy::math::I64Vec4::abs( + let output: Val = bevy::math::I64Vec4::abs( _self.into_inner(), ) .into(); @@ -6410,7 +6277,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "signum", |_self: Val| { - let output: Val = ::bevy::math::I64Vec4::signum( + let output: Val = bevy::math::I64Vec4::signum( _self.into_inner(), ) .into(); @@ -6420,7 +6287,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "is_negative_bitmask", |_self: Val| { - let output: u32 = ::bevy::math::I64Vec4::is_negative_bitmask( + let output: u32 = bevy::math::I64Vec4::is_negative_bitmask( _self.into_inner(), ) .into(); @@ -6430,7 +6297,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "length_squared", |_self: Val| { - let output: i64 = ::bevy::math::I64Vec4::length_squared( + let output: i64 = bevy::math::I64Vec4::length_squared( _self.into_inner(), ) .into(); @@ -6440,7 +6307,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "distance_squared", |_self: Val, rhs: Val| { - let output: i64 = ::bevy::math::I64Vec4::distance_squared( + let output: i64 = bevy::math::I64Vec4::distance_squared( _self.into_inner(), rhs.into_inner(), ) @@ -6451,7 +6318,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "div_euclid", |_self: Val, rhs: Val| { - let output: Val = ::bevy::math::I64Vec4::div_euclid( + let output: Val = bevy::math::I64Vec4::div_euclid( _self.into_inner(), rhs.into_inner(), ) @@ -6462,7 +6329,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "rem_euclid", |_self: Val, rhs: Val| { - let output: Val = ::bevy::math::I64Vec4::rem_euclid( + let output: Val = bevy::math::I64Vec4::rem_euclid( _self.into_inner(), rhs.into_inner(), ) @@ -6473,7 +6340,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "as_vec4", |_self: Ref| { - let output: Val = ::bevy::math::I64Vec4::as_vec4( + let output: Val = bevy::math::I64Vec4::as_vec4( &_self, ) .into(); @@ -6483,7 +6350,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "as_dvec4", |_self: Ref| { - let output: Val = ::bevy::math::I64Vec4::as_dvec4( + let output: Val = bevy::math::I64Vec4::as_dvec4( &_self, ) .into(); @@ -6493,7 +6360,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "as_ivec4", |_self: Ref| { - let output: Val = ::bevy::math::I64Vec4::as_ivec4( + let output: Val = bevy::math::I64Vec4::as_ivec4( &_self, ) .into(); @@ -6503,7 +6370,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "as_uvec4", |_self: Ref| { - let output: Val = ::bevy::math::I64Vec4::as_uvec4( + let output: Val = bevy::math::I64Vec4::as_uvec4( &_self, ) .into(); @@ -6513,7 +6380,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "as_u64vec4", |_self: Ref| { - let output: Val = ::bevy::math::I64Vec4::as_u64vec4( + let output: Val = bevy::math::I64Vec4::as_u64vec4( &_self, ) .into(); @@ -6523,7 +6390,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "wrapping_add", |_self: Val, rhs: Val| { - let output: Val = ::bevy::math::I64Vec4::wrapping_add( + let output: Val = bevy::math::I64Vec4::wrapping_add( _self.into_inner(), rhs.into_inner(), ) @@ -6534,7 +6401,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "wrapping_sub", |_self: Val, rhs: Val| { - let output: Val = ::bevy::math::I64Vec4::wrapping_sub( + let output: Val = bevy::math::I64Vec4::wrapping_sub( _self.into_inner(), rhs.into_inner(), ) @@ -6545,7 +6412,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "wrapping_mul", |_self: Val, rhs: Val| { - let output: Val = ::bevy::math::I64Vec4::wrapping_mul( + let output: Val = bevy::math::I64Vec4::wrapping_mul( _self.into_inner(), rhs.into_inner(), ) @@ -6556,7 +6423,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "wrapping_div", |_self: Val, rhs: Val| { - let output: Val = ::bevy::math::I64Vec4::wrapping_div( + let output: Val = bevy::math::I64Vec4::wrapping_div( _self.into_inner(), rhs.into_inner(), ) @@ -6567,7 +6434,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "saturating_add", |_self: Val, rhs: Val| { - let output: Val = ::bevy::math::I64Vec4::saturating_add( + let output: Val = bevy::math::I64Vec4::saturating_add( _self.into_inner(), rhs.into_inner(), ) @@ -6578,7 +6445,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "saturating_sub", |_self: Val, rhs: Val| { - let output: Val = ::bevy::math::I64Vec4::saturating_sub( + let output: Val = bevy::math::I64Vec4::saturating_sub( _self.into_inner(), rhs.into_inner(), ) @@ -6589,7 +6456,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "saturating_mul", |_self: Val, rhs: Val| { - let output: Val = ::bevy::math::I64Vec4::saturating_mul( + let output: Val = bevy::math::I64Vec4::saturating_mul( _self.into_inner(), rhs.into_inner(), ) @@ -6600,7 +6467,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "saturating_div", |_self: Val, rhs: Val| { - let output: Val = ::bevy::math::I64Vec4::saturating_div( + let output: Val = bevy::math::I64Vec4::saturating_div( _self.into_inner(), rhs.into_inner(), ) @@ -6611,7 +6478,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "wrapping_add_unsigned", |_self: Val, rhs: Val| { - let output: Val = ::bevy::math::I64Vec4::wrapping_add_unsigned( + let output: Val = bevy::math::I64Vec4::wrapping_add_unsigned( _self.into_inner(), rhs.into_inner(), ) @@ -6622,7 +6489,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "wrapping_sub_unsigned", |_self: Val, rhs: Val| { - let output: Val = ::bevy::math::I64Vec4::wrapping_sub_unsigned( + let output: Val = bevy::math::I64Vec4::wrapping_sub_unsigned( _self.into_inner(), rhs.into_inner(), ) @@ -6633,7 +6500,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "saturating_add_unsigned", |_self: Val, rhs: Val| { - let output: Val = ::bevy::math::I64Vec4::saturating_add_unsigned( + let output: Val = bevy::math::I64Vec4::saturating_add_unsigned( _self.into_inner(), rhs.into_inner(), ) @@ -6644,7 +6511,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "saturating_sub_unsigned", |_self: Val, rhs: Val| { - let output: Val = ::bevy::math::I64Vec4::saturating_sub_unsigned( + let output: Val = bevy::math::I64Vec4::saturating_sub_unsigned( _self.into_inner(), rhs.into_inner(), ) @@ -6655,10 +6522,9 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "mul", |_self: Val, rhs: Val| { - let output: Val = ::bevy::math::I64Vec4::mul( - _self.into_inner(), - rhs.into_inner(), - ) + let output: Val = >::mul(_self.into_inner(), rhs.into_inner()) .into(); output }, @@ -6666,7 +6532,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "neg", |_self: Val| { - let output: Val = ::bevy::math::I64Vec4::neg( + let output: Val = ::neg( _self.into_inner(), ) .into(); @@ -6677,17 +6543,19 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "eq", |_self: Ref, other: Ref| { - let output: bool = ::bevy::math::UVec2::eq(&_self, &other).into(); + let output: bool = >::eq(&_self, &other) + .into(); output }, ) .overwrite_script_function( "div", |_self: Val, rhs: Ref| { - let output: Val = ::bevy::math::UVec2::div( - _self.into_inner(), - &rhs, - ) + let output: Val = >::div(_self.into_inner(), &rhs) .into(); output }, @@ -6695,10 +6563,9 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "div", |_self: Val, rhs: u32| { - let output: Val = ::bevy::math::UVec2::div( - _self.into_inner(), - rhs, - ) + let output: Val = >::div(_self.into_inner(), rhs) .into(); output }, @@ -6706,7 +6573,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "clone", |_self: Ref| { - let output: Val = ::bevy::math::UVec2::clone( + let output: Val = ::clone( &_self, ) .into(); @@ -6716,10 +6583,9 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "div", |_self: Val, rhs: Val| { - let output: Val = ::bevy::math::UVec2::div( - _self.into_inner(), - rhs.into_inner(), - ) + let output: Val = >::div(_self.into_inner(), rhs.into_inner()) .into(); output }, @@ -6727,10 +6593,9 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "sub", |_self: Val, rhs: Ref| { - let output: Val = ::bevy::math::UVec2::sub( - _self.into_inner(), - &rhs, - ) + let output: Val = >::sub(_self.into_inner(), &rhs) .into(); output }, @@ -6738,10 +6603,9 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "rem", |_self: Val, rhs: Ref| { - let output: Val = ::bevy::math::UVec2::rem( - _self.into_inner(), - &rhs, - ) + let output: Val = >::rem(_self.into_inner(), &rhs) .into(); output }, @@ -6749,10 +6613,9 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "rem", |_self: Val, rhs: Val| { - let output: Val = ::bevy::math::UVec2::rem( - _self.into_inner(), - rhs.into_inner(), - ) + let output: Val = >::rem(_self.into_inner(), rhs.into_inner()) .into(); output }, @@ -6760,10 +6623,9 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "mul", |_self: Val, rhs: Val| { - let output: Val = ::bevy::math::UVec2::mul( - _self.into_inner(), - rhs.into_inner(), - ) + let output: Val = >::mul(_self.into_inner(), rhs.into_inner()) .into(); output }, @@ -6771,10 +6633,9 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "add", |_self: Val, rhs: Ref| { - let output: Val = ::bevy::math::UVec2::add( - _self.into_inner(), - &rhs, - ) + let output: Val = >::add(_self.into_inner(), &rhs) .into(); output }, @@ -6782,10 +6643,9 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "mul", |_self: Val, rhs: u32| { - let output: Val = ::bevy::math::UVec2::mul( - _self.into_inner(), - rhs, - ) + let output: Val = >::mul(_self.into_inner(), rhs) .into(); output }, @@ -6793,10 +6653,9 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "rem", |_self: Val, rhs: u32| { - let output: Val = ::bevy::math::UVec2::rem( - _self.into_inner(), - rhs, - ) + let output: Val = >::rem(_self.into_inner(), rhs) .into(); output }, @@ -6804,10 +6663,9 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "add", |_self: Val, rhs: Val| { - let output: Val = ::bevy::math::UVec2::add( - _self.into_inner(), - rhs.into_inner(), - ) + let output: Val = >::add(_self.into_inner(), rhs.into_inner()) .into(); output }, @@ -6815,10 +6673,9 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "mul", |_self: Val, rhs: Ref| { - let output: Val = ::bevy::math::UVec2::mul( - _self.into_inner(), - &rhs, - ) + let output: Val = >::mul(_self.into_inner(), &rhs) .into(); output }, @@ -6826,10 +6683,9 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "add", |_self: Val, rhs: u32| { - let output: Val = ::bevy::math::UVec2::add( - _self.into_inner(), - rhs, - ) + let output: Val = >::add(_self.into_inner(), rhs) .into(); output }, @@ -6837,7 +6693,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "assert_receiver_is_total_eq", |_self: Ref| { - let output: () = ::bevy::math::UVec2::assert_receiver_is_total_eq( + let output: () = ::assert_receiver_is_total_eq( &_self, ) .into(); @@ -6847,10 +6703,9 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "sub", |_self: Val, rhs: u32| { - let output: Val = ::bevy::math::UVec2::sub( - _self.into_inner(), - rhs, - ) + let output: Val = >::sub(_self.into_inner(), rhs) .into(); output }, @@ -6858,10 +6713,9 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "sub", |_self: Val, rhs: Val| { - let output: Val = ::bevy::math::UVec2::sub( - _self.into_inner(), - rhs.into_inner(), - ) + let output: Val = >::sub(_self.into_inner(), rhs.into_inner()) .into(); output }, @@ -6869,7 +6723,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "new", |x: u32, y: u32| { - let output: Val = ::bevy::math::UVec2::new(x, y) + let output: Val = bevy::math::UVec2::new(x, y) .into(); output }, @@ -6877,7 +6731,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "splat", |v: u32| { - let output: Val = ::bevy::math::UVec2::splat(v) + let output: Val = bevy::math::UVec2::splat(v) .into(); output }, @@ -6889,7 +6743,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { if_true: Val, if_false: Val| { - let output: Val = ::bevy::math::UVec2::select( + let output: Val = bevy::math::UVec2::select( mask.into_inner(), if_true.into_inner(), if_false.into_inner(), @@ -6901,9 +6755,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "from_array", |a: [u32; 2]| { - let output: Val = ::bevy::math::UVec2::from_array( - a, - ) + let output: Val = bevy::math::UVec2::from_array(a) .into(); output }, @@ -6911,14 +6763,14 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "to_array", |_self: Ref| { - let output: [u32; 2] = ::bevy::math::UVec2::to_array(&_self).into(); + let output: [u32; 2] = bevy::math::UVec2::to_array(&_self).into(); output }, ) .overwrite_script_function( "extend", |_self: Val, z: u32| { - let output: Val = ::bevy::math::UVec2::extend( + let output: Val = bevy::math::UVec2::extend( _self.into_inner(), z, ) @@ -6929,7 +6781,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "with_x", |_self: Val, x: u32| { - let output: Val = ::bevy::math::UVec2::with_x( + let output: Val = bevy::math::UVec2::with_x( _self.into_inner(), x, ) @@ -6940,7 +6792,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "with_y", |_self: Val, y: u32| { - let output: Val = ::bevy::math::UVec2::with_y( + let output: Val = bevy::math::UVec2::with_y( _self.into_inner(), y, ) @@ -6951,7 +6803,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "dot", |_self: Val, rhs: Val| { - let output: u32 = ::bevy::math::UVec2::dot( + let output: u32 = bevy::math::UVec2::dot( _self.into_inner(), rhs.into_inner(), ) @@ -6962,7 +6814,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "dot_into_vec", |_self: Val, rhs: Val| { - let output: Val = ::bevy::math::UVec2::dot_into_vec( + let output: Val = bevy::math::UVec2::dot_into_vec( _self.into_inner(), rhs.into_inner(), ) @@ -6973,7 +6825,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "min", |_self: Val, rhs: Val| { - let output: Val = ::bevy::math::UVec2::min( + let output: Val = bevy::math::UVec2::min( _self.into_inner(), rhs.into_inner(), ) @@ -6984,7 +6836,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "max", |_self: Val, rhs: Val| { - let output: Val = ::bevy::math::UVec2::max( + let output: Val = bevy::math::UVec2::max( _self.into_inner(), rhs.into_inner(), ) @@ -6999,7 +6851,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { min: Val, max: Val| { - let output: Val = ::bevy::math::UVec2::clamp( + let output: Val = bevy::math::UVec2::clamp( _self.into_inner(), min.into_inner(), max.into_inner(), @@ -7011,9 +6863,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "min_element", |_self: Val| { - let output: u32 = ::bevy::math::UVec2::min_element( - _self.into_inner(), - ) + let output: u32 = bevy::math::UVec2::min_element(_self.into_inner()) .into(); output }, @@ -7021,9 +6871,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "max_element", |_self: Val| { - let output: u32 = ::bevy::math::UVec2::max_element( - _self.into_inner(), - ) + let output: u32 = bevy::math::UVec2::max_element(_self.into_inner()) .into(); output }, @@ -7031,9 +6879,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "element_sum", |_self: Val| { - let output: u32 = ::bevy::math::UVec2::element_sum( - _self.into_inner(), - ) + let output: u32 = bevy::math::UVec2::element_sum(_self.into_inner()) .into(); output }, @@ -7041,7 +6887,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "element_product", |_self: Val| { - let output: u32 = ::bevy::math::UVec2::element_product( + let output: u32 = bevy::math::UVec2::element_product( _self.into_inner(), ) .into(); @@ -7051,7 +6897,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "cmpeq", |_self: Val, rhs: Val| { - let output: Val = ::bevy::math::UVec2::cmpeq( + let output: Val = bevy::math::UVec2::cmpeq( _self.into_inner(), rhs.into_inner(), ) @@ -7062,7 +6908,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "cmpne", |_self: Val, rhs: Val| { - let output: Val = ::bevy::math::UVec2::cmpne( + let output: Val = bevy::math::UVec2::cmpne( _self.into_inner(), rhs.into_inner(), ) @@ -7073,7 +6919,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "cmpge", |_self: Val, rhs: Val| { - let output: Val = ::bevy::math::UVec2::cmpge( + let output: Val = bevy::math::UVec2::cmpge( _self.into_inner(), rhs.into_inner(), ) @@ -7084,7 +6930,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "cmpgt", |_self: Val, rhs: Val| { - let output: Val = ::bevy::math::UVec2::cmpgt( + let output: Val = bevy::math::UVec2::cmpgt( _self.into_inner(), rhs.into_inner(), ) @@ -7095,7 +6941,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "cmple", |_self: Val, rhs: Val| { - let output: Val = ::bevy::math::UVec2::cmple( + let output: Val = bevy::math::UVec2::cmple( _self.into_inner(), rhs.into_inner(), ) @@ -7106,7 +6952,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "cmplt", |_self: Val, rhs: Val| { - let output: Val = ::bevy::math::UVec2::cmplt( + let output: Val = bevy::math::UVec2::cmplt( _self.into_inner(), rhs.into_inner(), ) @@ -7117,7 +6963,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "length_squared", |_self: Val| { - let output: u32 = ::bevy::math::UVec2::length_squared( + let output: u32 = bevy::math::UVec2::length_squared( _self.into_inner(), ) .into(); @@ -7127,7 +6973,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "as_vec2", |_self: Ref| { - let output: Val = ::bevy::math::UVec2::as_vec2( + let output: Val = bevy::math::UVec2::as_vec2( &_self, ) .into(); @@ -7137,7 +6983,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "as_dvec2", |_self: Ref| { - let output: Val = ::bevy::math::UVec2::as_dvec2( + let output: Val = bevy::math::UVec2::as_dvec2( &_self, ) .into(); @@ -7147,7 +6993,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "as_ivec2", |_self: Ref| { - let output: Val = ::bevy::math::UVec2::as_ivec2( + let output: Val = bevy::math::UVec2::as_ivec2( &_self, ) .into(); @@ -7157,7 +7003,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "as_i64vec2", |_self: Ref| { - let output: Val = ::bevy::math::UVec2::as_i64vec2( + let output: Val = bevy::math::UVec2::as_i64vec2( &_self, ) .into(); @@ -7167,7 +7013,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "as_u64vec2", |_self: Ref| { - let output: Val = ::bevy::math::UVec2::as_u64vec2( + let output: Val = bevy::math::UVec2::as_u64vec2( &_self, ) .into(); @@ -7177,7 +7023,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "wrapping_add", |_self: Val, rhs: Val| { - let output: Val = ::bevy::math::UVec2::wrapping_add( + let output: Val = bevy::math::UVec2::wrapping_add( _self.into_inner(), rhs.into_inner(), ) @@ -7188,7 +7034,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "wrapping_sub", |_self: Val, rhs: Val| { - let output: Val = ::bevy::math::UVec2::wrapping_sub( + let output: Val = bevy::math::UVec2::wrapping_sub( _self.into_inner(), rhs.into_inner(), ) @@ -7199,7 +7045,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "wrapping_mul", |_self: Val, rhs: Val| { - let output: Val = ::bevy::math::UVec2::wrapping_mul( + let output: Val = bevy::math::UVec2::wrapping_mul( _self.into_inner(), rhs.into_inner(), ) @@ -7210,7 +7056,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "wrapping_div", |_self: Val, rhs: Val| { - let output: Val = ::bevy::math::UVec2::wrapping_div( + let output: Val = bevy::math::UVec2::wrapping_div( _self.into_inner(), rhs.into_inner(), ) @@ -7221,7 +7067,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "saturating_add", |_self: Val, rhs: Val| { - let output: Val = ::bevy::math::UVec2::saturating_add( + let output: Val = bevy::math::UVec2::saturating_add( _self.into_inner(), rhs.into_inner(), ) @@ -7232,7 +7078,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "saturating_sub", |_self: Val, rhs: Val| { - let output: Val = ::bevy::math::UVec2::saturating_sub( + let output: Val = bevy::math::UVec2::saturating_sub( _self.into_inner(), rhs.into_inner(), ) @@ -7243,7 +7089,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "saturating_mul", |_self: Val, rhs: Val| { - let output: Val = ::bevy::math::UVec2::saturating_mul( + let output: Val = bevy::math::UVec2::saturating_mul( _self.into_inner(), rhs.into_inner(), ) @@ -7254,7 +7100,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "saturating_div", |_self: Val, rhs: Val| { - let output: Val = ::bevy::math::UVec2::saturating_div( + let output: Val = bevy::math::UVec2::saturating_div( _self.into_inner(), rhs.into_inner(), ) @@ -7265,7 +7111,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "wrapping_add_signed", |_self: Val, rhs: Val| { - let output: Val = ::bevy::math::UVec2::wrapping_add_signed( + let output: Val = bevy::math::UVec2::wrapping_add_signed( _self.into_inner(), rhs.into_inner(), ) @@ -7276,7 +7122,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "saturating_add_signed", |_self: Val, rhs: Val| { - let output: Val = ::bevy::math::UVec2::saturating_add_signed( + let output: Val = bevy::math::UVec2::saturating_add_signed( _self.into_inner(), rhs.into_inner(), ) @@ -7288,10 +7134,9 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "add", |_self: Val, rhs: Ref| { - let output: Val = ::bevy::math::UVec3::add( - _self.into_inner(), - &rhs, - ) + let output: Val = >::add(_self.into_inner(), &rhs) .into(); output }, @@ -7299,7 +7144,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "assert_receiver_is_total_eq", |_self: Ref| { - let output: () = ::bevy::math::UVec3::assert_receiver_is_total_eq( + let output: () = ::assert_receiver_is_total_eq( &_self, ) .into(); @@ -7309,10 +7154,9 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "sub", |_self: Val, rhs: Val| { - let output: Val = ::bevy::math::UVec3::sub( - _self.into_inner(), - rhs.into_inner(), - ) + let output: Val = >::sub(_self.into_inner(), rhs.into_inner()) .into(); output }, @@ -7320,10 +7164,9 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "add", |_self: Val, rhs: Val| { - let output: Val = ::bevy::math::UVec3::add( - _self.into_inner(), - rhs.into_inner(), - ) + let output: Val = >::add(_self.into_inner(), rhs.into_inner()) .into(); output }, @@ -7331,7 +7174,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "clone", |_self: Ref| { - let output: Val = ::bevy::math::UVec3::clone( + let output: Val = ::clone( &_self, ) .into(); @@ -7341,10 +7184,9 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "mul", |_self: Val, rhs: Val| { - let output: Val = ::bevy::math::UVec3::mul( - _self.into_inner(), - rhs.into_inner(), - ) + let output: Val = >::mul(_self.into_inner(), rhs.into_inner()) .into(); output }, @@ -7352,10 +7194,9 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "mul", |_self: Val, rhs: Ref| { - let output: Val = ::bevy::math::UVec3::mul( - _self.into_inner(), - &rhs, - ) + let output: Val = >::mul(_self.into_inner(), &rhs) .into(); output }, @@ -7363,10 +7204,9 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "mul", |_self: Val, rhs: u32| { - let output: Val = ::bevy::math::UVec3::mul( - _self.into_inner(), - rhs, - ) + let output: Val = >::mul(_self.into_inner(), rhs) .into(); output }, @@ -7374,11 +7214,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "new", |x: u32, y: u32, z: u32| { - let output: Val = ::bevy::math::UVec3::new( - x, - y, - z, - ) + let output: Val = bevy::math::UVec3::new(x, y, z) .into(); output }, @@ -7386,7 +7222,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "splat", |v: u32| { - let output: Val = ::bevy::math::UVec3::splat(v) + let output: Val = bevy::math::UVec3::splat(v) .into(); output }, @@ -7398,7 +7234,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { if_true: Val, if_false: Val| { - let output: Val = ::bevy::math::UVec3::select( + let output: Val = bevy::math::UVec3::select( mask.into_inner(), if_true.into_inner(), if_false.into_inner(), @@ -7410,9 +7246,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "from_array", |a: [u32; 3]| { - let output: Val = ::bevy::math::UVec3::from_array( - a, - ) + let output: Val = bevy::math::UVec3::from_array(a) .into(); output }, @@ -7420,14 +7254,14 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "to_array", |_self: Ref| { - let output: [u32; 3] = ::bevy::math::UVec3::to_array(&_self).into(); + let output: [u32; 3] = bevy::math::UVec3::to_array(&_self).into(); output }, ) .overwrite_script_function( "extend", |_self: Val, w: u32| { - let output: Val = ::bevy::math::UVec3::extend( + let output: Val = bevy::math::UVec3::extend( _self.into_inner(), w, ) @@ -7438,7 +7272,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "truncate", |_self: Val| { - let output: Val = ::bevy::math::UVec3::truncate( + let output: Val = bevy::math::UVec3::truncate( _self.into_inner(), ) .into(); @@ -7448,7 +7282,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "with_x", |_self: Val, x: u32| { - let output: Val = ::bevy::math::UVec3::with_x( + let output: Val = bevy::math::UVec3::with_x( _self.into_inner(), x, ) @@ -7459,7 +7293,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "with_y", |_self: Val, y: u32| { - let output: Val = ::bevy::math::UVec3::with_y( + let output: Val = bevy::math::UVec3::with_y( _self.into_inner(), y, ) @@ -7470,7 +7304,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "with_z", |_self: Val, z: u32| { - let output: Val = ::bevy::math::UVec3::with_z( + let output: Val = bevy::math::UVec3::with_z( _self.into_inner(), z, ) @@ -7481,7 +7315,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "dot", |_self: Val, rhs: Val| { - let output: u32 = ::bevy::math::UVec3::dot( + let output: u32 = bevy::math::UVec3::dot( _self.into_inner(), rhs.into_inner(), ) @@ -7492,7 +7326,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "dot_into_vec", |_self: Val, rhs: Val| { - let output: Val = ::bevy::math::UVec3::dot_into_vec( + let output: Val = bevy::math::UVec3::dot_into_vec( _self.into_inner(), rhs.into_inner(), ) @@ -7503,7 +7337,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "cross", |_self: Val, rhs: Val| { - let output: Val = ::bevy::math::UVec3::cross( + let output: Val = bevy::math::UVec3::cross( _self.into_inner(), rhs.into_inner(), ) @@ -7514,7 +7348,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "min", |_self: Val, rhs: Val| { - let output: Val = ::bevy::math::UVec3::min( + let output: Val = bevy::math::UVec3::min( _self.into_inner(), rhs.into_inner(), ) @@ -7525,7 +7359,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "max", |_self: Val, rhs: Val| { - let output: Val = ::bevy::math::UVec3::max( + let output: Val = bevy::math::UVec3::max( _self.into_inner(), rhs.into_inner(), ) @@ -7540,7 +7374,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { min: Val, max: Val| { - let output: Val = ::bevy::math::UVec3::clamp( + let output: Val = bevy::math::UVec3::clamp( _self.into_inner(), min.into_inner(), max.into_inner(), @@ -7552,9 +7386,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "min_element", |_self: Val| { - let output: u32 = ::bevy::math::UVec3::min_element( - _self.into_inner(), - ) + let output: u32 = bevy::math::UVec3::min_element(_self.into_inner()) .into(); output }, @@ -7562,9 +7394,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "max_element", |_self: Val| { - let output: u32 = ::bevy::math::UVec3::max_element( - _self.into_inner(), - ) + let output: u32 = bevy::math::UVec3::max_element(_self.into_inner()) .into(); output }, @@ -7572,9 +7402,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "element_sum", |_self: Val| { - let output: u32 = ::bevy::math::UVec3::element_sum( - _self.into_inner(), - ) + let output: u32 = bevy::math::UVec3::element_sum(_self.into_inner()) .into(); output }, @@ -7582,7 +7410,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "element_product", |_self: Val| { - let output: u32 = ::bevy::math::UVec3::element_product( + let output: u32 = bevy::math::UVec3::element_product( _self.into_inner(), ) .into(); @@ -7592,7 +7420,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "cmpeq", |_self: Val, rhs: Val| { - let output: Val = ::bevy::math::UVec3::cmpeq( + let output: Val = bevy::math::UVec3::cmpeq( _self.into_inner(), rhs.into_inner(), ) @@ -7603,7 +7431,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "cmpne", |_self: Val, rhs: Val| { - let output: Val = ::bevy::math::UVec3::cmpne( + let output: Val = bevy::math::UVec3::cmpne( _self.into_inner(), rhs.into_inner(), ) @@ -7614,7 +7442,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "cmpge", |_self: Val, rhs: Val| { - let output: Val = ::bevy::math::UVec3::cmpge( + let output: Val = bevy::math::UVec3::cmpge( _self.into_inner(), rhs.into_inner(), ) @@ -7625,7 +7453,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "cmpgt", |_self: Val, rhs: Val| { - let output: Val = ::bevy::math::UVec3::cmpgt( + let output: Val = bevy::math::UVec3::cmpgt( _self.into_inner(), rhs.into_inner(), ) @@ -7636,7 +7464,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "cmple", |_self: Val, rhs: Val| { - let output: Val = ::bevy::math::UVec3::cmple( + let output: Val = bevy::math::UVec3::cmple( _self.into_inner(), rhs.into_inner(), ) @@ -7647,7 +7475,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "cmplt", |_self: Val, rhs: Val| { - let output: Val = ::bevy::math::UVec3::cmplt( + let output: Val = bevy::math::UVec3::cmplt( _self.into_inner(), rhs.into_inner(), ) @@ -7658,7 +7486,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "length_squared", |_self: Val| { - let output: u32 = ::bevy::math::UVec3::length_squared( + let output: u32 = bevy::math::UVec3::length_squared( _self.into_inner(), ) .into(); @@ -7668,7 +7496,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "as_vec3", |_self: Ref| { - let output: Val = ::bevy::math::UVec3::as_vec3( + let output: Val = bevy::math::UVec3::as_vec3( &_self, ) .into(); @@ -7678,7 +7506,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "as_vec3a", |_self: Ref| { - let output: Val = ::bevy::math::UVec3::as_vec3a( + let output: Val = bevy::math::UVec3::as_vec3a( &_self, ) .into(); @@ -7688,7 +7516,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "as_dvec3", |_self: Ref| { - let output: Val = ::bevy::math::UVec3::as_dvec3( + let output: Val = bevy::math::UVec3::as_dvec3( &_self, ) .into(); @@ -7698,7 +7526,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "as_ivec3", |_self: Ref| { - let output: Val = ::bevy::math::UVec3::as_ivec3( + let output: Val = bevy::math::UVec3::as_ivec3( &_self, ) .into(); @@ -7708,7 +7536,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "as_i64vec3", |_self: Ref| { - let output: Val = ::bevy::math::UVec3::as_i64vec3( + let output: Val = bevy::math::UVec3::as_i64vec3( &_self, ) .into(); @@ -7718,7 +7546,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "as_u64vec3", |_self: Ref| { - let output: Val = ::bevy::math::UVec3::as_u64vec3( + let output: Val = bevy::math::UVec3::as_u64vec3( &_self, ) .into(); @@ -7728,7 +7556,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "wrapping_add", |_self: Val, rhs: Val| { - let output: Val = ::bevy::math::UVec3::wrapping_add( + let output: Val = bevy::math::UVec3::wrapping_add( _self.into_inner(), rhs.into_inner(), ) @@ -7739,7 +7567,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "wrapping_sub", |_self: Val, rhs: Val| { - let output: Val = ::bevy::math::UVec3::wrapping_sub( + let output: Val = bevy::math::UVec3::wrapping_sub( _self.into_inner(), rhs.into_inner(), ) @@ -7750,7 +7578,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "wrapping_mul", |_self: Val, rhs: Val| { - let output: Val = ::bevy::math::UVec3::wrapping_mul( + let output: Val = bevy::math::UVec3::wrapping_mul( _self.into_inner(), rhs.into_inner(), ) @@ -7761,7 +7589,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "wrapping_div", |_self: Val, rhs: Val| { - let output: Val = ::bevy::math::UVec3::wrapping_div( + let output: Val = bevy::math::UVec3::wrapping_div( _self.into_inner(), rhs.into_inner(), ) @@ -7772,7 +7600,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "saturating_add", |_self: Val, rhs: Val| { - let output: Val = ::bevy::math::UVec3::saturating_add( + let output: Val = bevy::math::UVec3::saturating_add( _self.into_inner(), rhs.into_inner(), ) @@ -7783,7 +7611,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "saturating_sub", |_self: Val, rhs: Val| { - let output: Val = ::bevy::math::UVec3::saturating_sub( + let output: Val = bevy::math::UVec3::saturating_sub( _self.into_inner(), rhs.into_inner(), ) @@ -7794,7 +7622,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "saturating_mul", |_self: Val, rhs: Val| { - let output: Val = ::bevy::math::UVec3::saturating_mul( + let output: Val = bevy::math::UVec3::saturating_mul( _self.into_inner(), rhs.into_inner(), ) @@ -7805,7 +7633,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "saturating_div", |_self: Val, rhs: Val| { - let output: Val = ::bevy::math::UVec3::saturating_div( + let output: Val = bevy::math::UVec3::saturating_div( _self.into_inner(), rhs.into_inner(), ) @@ -7816,7 +7644,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "wrapping_add_signed", |_self: Val, rhs: Val| { - let output: Val = ::bevy::math::UVec3::wrapping_add_signed( + let output: Val = bevy::math::UVec3::wrapping_add_signed( _self.into_inner(), rhs.into_inner(), ) @@ -7827,7 +7655,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "saturating_add_signed", |_self: Val, rhs: Val| { - let output: Val = ::bevy::math::UVec3::saturating_add_signed( + let output: Val = bevy::math::UVec3::saturating_add_signed( _self.into_inner(), rhs.into_inner(), ) @@ -7838,10 +7666,9 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "sub", |_self: Val, rhs: u32| { - let output: Val = ::bevy::math::UVec3::sub( - _self.into_inner(), - rhs, - ) + let output: Val = >::sub(_self.into_inner(), rhs) .into(); output }, @@ -7849,10 +7676,9 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "rem", |_self: Val, rhs: Val| { - let output: Val = ::bevy::math::UVec3::rem( - _self.into_inner(), - rhs.into_inner(), - ) + let output: Val = >::rem(_self.into_inner(), rhs.into_inner()) .into(); output }, @@ -7860,10 +7686,9 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "rem", |_self: Val, rhs: Ref| { - let output: Val = ::bevy::math::UVec3::rem( - _self.into_inner(), - &rhs, - ) + let output: Val = >::rem(_self.into_inner(), &rhs) .into(); output }, @@ -7871,17 +7696,19 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "eq", |_self: Ref, other: Ref| { - let output: bool = ::bevy::math::UVec3::eq(&_self, &other).into(); + let output: bool = >::eq(&_self, &other) + .into(); output }, ) .overwrite_script_function( "div", |_self: Val, rhs: Val| { - let output: Val = ::bevy::math::UVec3::div( - _self.into_inner(), - rhs.into_inner(), - ) + let output: Val = >::div(_self.into_inner(), rhs.into_inner()) .into(); output }, @@ -7889,10 +7716,9 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "div", |_self: Val, rhs: u32| { - let output: Val = ::bevy::math::UVec3::div( - _self.into_inner(), - rhs, - ) + let output: Val = >::div(_self.into_inner(), rhs) .into(); output }, @@ -7900,10 +7726,9 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "rem", |_self: Val, rhs: u32| { - let output: Val = ::bevy::math::UVec3::rem( - _self.into_inner(), - rhs, - ) + let output: Val = >::rem(_self.into_inner(), rhs) .into(); output }, @@ -7911,10 +7736,9 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "sub", |_self: Val, rhs: Ref| { - let output: Val = ::bevy::math::UVec3::sub( - _self.into_inner(), - &rhs, - ) + let output: Val = >::sub(_self.into_inner(), &rhs) .into(); output }, @@ -7922,10 +7746,9 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "add", |_self: Val, rhs: u32| { - let output: Val = ::bevy::math::UVec3::add( - _self.into_inner(), - rhs, - ) + let output: Val = >::add(_self.into_inner(), rhs) .into(); output }, @@ -7933,10 +7756,9 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "div", |_self: Val, rhs: Ref| { - let output: Val = ::bevy::math::UVec3::div( - _self.into_inner(), - &rhs, - ) + let output: Val = >::div(_self.into_inner(), &rhs) .into(); output }, @@ -7945,10 +7767,9 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "sub", |_self: Val, rhs: Ref| { - let output: Val = ::bevy::math::UVec4::sub( - _self.into_inner(), - &rhs, - ) + let output: Val = >::sub(_self.into_inner(), &rhs) .into(); output }, @@ -7956,10 +7777,9 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "sub", |_self: Val, rhs: Val| { - let output: Val = ::bevy::math::UVec4::sub( - _self.into_inner(), - rhs.into_inner(), - ) + let output: Val = >::sub(_self.into_inner(), rhs.into_inner()) .into(); output }, @@ -7967,10 +7787,9 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "div", |_self: Val, rhs: u32| { - let output: Val = ::bevy::math::UVec4::div( - _self.into_inner(), - rhs, - ) + let output: Val = >::div(_self.into_inner(), rhs) .into(); output }, @@ -7978,7 +7797,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "clone", |_self: Ref| { - let output: Val = ::bevy::math::UVec4::clone( + let output: Val = ::clone( &_self, ) .into(); @@ -7988,10 +7807,9 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "add", |_self: Val, rhs: Ref| { - let output: Val = ::bevy::math::UVec4::add( - _self.into_inner(), - &rhs, - ) + let output: Val = >::add(_self.into_inner(), &rhs) .into(); output }, @@ -7999,10 +7817,9 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "mul", |_self: Val, rhs: Val| { - let output: Val = ::bevy::math::UVec4::mul( - _self.into_inner(), - rhs.into_inner(), - ) + let output: Val = >::mul(_self.into_inner(), rhs.into_inner()) .into(); output }, @@ -8010,10 +7827,9 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "rem", |_self: Val, rhs: Val| { - let output: Val = ::bevy::math::UVec4::rem( - _self.into_inner(), - rhs.into_inner(), - ) + let output: Val = >::rem(_self.into_inner(), rhs.into_inner()) .into(); output }, @@ -8021,10 +7837,9 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "mul", |_self: Val, rhs: Ref| { - let output: Val = ::bevy::math::UVec4::mul( - _self.into_inner(), - &rhs, - ) + let output: Val = >::mul(_self.into_inner(), &rhs) .into(); output }, @@ -8032,7 +7847,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "new", |x: u32, y: u32, z: u32, w: u32| { - let output: Val = ::bevy::math::UVec4::new( + let output: Val = bevy::math::UVec4::new( x, y, z, @@ -8045,7 +7860,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "splat", |v: u32| { - let output: Val = ::bevy::math::UVec4::splat(v) + let output: Val = bevy::math::UVec4::splat(v) .into(); output }, @@ -8057,7 +7872,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { if_true: Val, if_false: Val| { - let output: Val = ::bevy::math::UVec4::select( + let output: Val = bevy::math::UVec4::select( mask.into_inner(), if_true.into_inner(), if_false.into_inner(), @@ -8069,9 +7884,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "from_array", |a: [u32; 4]| { - let output: Val = ::bevy::math::UVec4::from_array( - a, - ) + let output: Val = bevy::math::UVec4::from_array(a) .into(); output }, @@ -8079,14 +7892,14 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "to_array", |_self: Ref| { - let output: [u32; 4] = ::bevy::math::UVec4::to_array(&_self).into(); + let output: [u32; 4] = bevy::math::UVec4::to_array(&_self).into(); output }, ) .overwrite_script_function( "truncate", |_self: Val| { - let output: Val = ::bevy::math::UVec4::truncate( + let output: Val = bevy::math::UVec4::truncate( _self.into_inner(), ) .into(); @@ -8096,7 +7909,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "with_x", |_self: Val, x: u32| { - let output: Val = ::bevy::math::UVec4::with_x( + let output: Val = bevy::math::UVec4::with_x( _self.into_inner(), x, ) @@ -8107,7 +7920,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "with_y", |_self: Val, y: u32| { - let output: Val = ::bevy::math::UVec4::with_y( + let output: Val = bevy::math::UVec4::with_y( _self.into_inner(), y, ) @@ -8118,7 +7931,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "with_z", |_self: Val, z: u32| { - let output: Val = ::bevy::math::UVec4::with_z( + let output: Val = bevy::math::UVec4::with_z( _self.into_inner(), z, ) @@ -8129,7 +7942,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "with_w", |_self: Val, w: u32| { - let output: Val = ::bevy::math::UVec4::with_w( + let output: Val = bevy::math::UVec4::with_w( _self.into_inner(), w, ) @@ -8140,7 +7953,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "dot", |_self: Val, rhs: Val| { - let output: u32 = ::bevy::math::UVec4::dot( + let output: u32 = bevy::math::UVec4::dot( _self.into_inner(), rhs.into_inner(), ) @@ -8151,7 +7964,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "dot_into_vec", |_self: Val, rhs: Val| { - let output: Val = ::bevy::math::UVec4::dot_into_vec( + let output: Val = bevy::math::UVec4::dot_into_vec( _self.into_inner(), rhs.into_inner(), ) @@ -8162,7 +7975,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "min", |_self: Val, rhs: Val| { - let output: Val = ::bevy::math::UVec4::min( + let output: Val = bevy::math::UVec4::min( _self.into_inner(), rhs.into_inner(), ) @@ -8173,7 +7986,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "max", |_self: Val, rhs: Val| { - let output: Val = ::bevy::math::UVec4::max( + let output: Val = bevy::math::UVec4::max( _self.into_inner(), rhs.into_inner(), ) @@ -8188,7 +8001,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { min: Val, max: Val| { - let output: Val = ::bevy::math::UVec4::clamp( + let output: Val = bevy::math::UVec4::clamp( _self.into_inner(), min.into_inner(), max.into_inner(), @@ -8199,10 +8012,8 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { ) .overwrite_script_function( "min_element", - |_self: Val| { - let output: u32 = ::bevy::math::UVec4::min_element( - _self.into_inner(), - ) + |_self: Val| { + let output: u32 = bevy::math::UVec4::min_element(_self.into_inner()) .into(); output }, @@ -8210,9 +8021,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "max_element", |_self: Val| { - let output: u32 = ::bevy::math::UVec4::max_element( - _self.into_inner(), - ) + let output: u32 = bevy::math::UVec4::max_element(_self.into_inner()) .into(); output }, @@ -8220,9 +8029,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "element_sum", |_self: Val| { - let output: u32 = ::bevy::math::UVec4::element_sum( - _self.into_inner(), - ) + let output: u32 = bevy::math::UVec4::element_sum(_self.into_inner()) .into(); output }, @@ -8230,7 +8037,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "element_product", |_self: Val| { - let output: u32 = ::bevy::math::UVec4::element_product( + let output: u32 = bevy::math::UVec4::element_product( _self.into_inner(), ) .into(); @@ -8240,7 +8047,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "cmpeq", |_self: Val, rhs: Val| { - let output: Val = ::bevy::math::UVec4::cmpeq( + let output: Val = bevy::math::UVec4::cmpeq( _self.into_inner(), rhs.into_inner(), ) @@ -8251,7 +8058,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "cmpne", |_self: Val, rhs: Val| { - let output: Val = ::bevy::math::UVec4::cmpne( + let output: Val = bevy::math::UVec4::cmpne( _self.into_inner(), rhs.into_inner(), ) @@ -8262,7 +8069,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "cmpge", |_self: Val, rhs: Val| { - let output: Val = ::bevy::math::UVec4::cmpge( + let output: Val = bevy::math::UVec4::cmpge( _self.into_inner(), rhs.into_inner(), ) @@ -8273,7 +8080,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "cmpgt", |_self: Val, rhs: Val| { - let output: Val = ::bevy::math::UVec4::cmpgt( + let output: Val = bevy::math::UVec4::cmpgt( _self.into_inner(), rhs.into_inner(), ) @@ -8284,7 +8091,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "cmple", |_self: Val, rhs: Val| { - let output: Val = ::bevy::math::UVec4::cmple( + let output: Val = bevy::math::UVec4::cmple( _self.into_inner(), rhs.into_inner(), ) @@ -8295,7 +8102,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "cmplt", |_self: Val, rhs: Val| { - let output: Val = ::bevy::math::UVec4::cmplt( + let output: Val = bevy::math::UVec4::cmplt( _self.into_inner(), rhs.into_inner(), ) @@ -8306,7 +8113,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "length_squared", |_self: Val| { - let output: u32 = ::bevy::math::UVec4::length_squared( + let output: u32 = bevy::math::UVec4::length_squared( _self.into_inner(), ) .into(); @@ -8316,7 +8123,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "as_vec4", |_self: Ref| { - let output: Val = ::bevy::math::UVec4::as_vec4( + let output: Val = bevy::math::UVec4::as_vec4( &_self, ) .into(); @@ -8326,7 +8133,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "as_dvec4", |_self: Ref| { - let output: Val = ::bevy::math::UVec4::as_dvec4( + let output: Val = bevy::math::UVec4::as_dvec4( &_self, ) .into(); @@ -8336,7 +8143,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "as_ivec4", |_self: Ref| { - let output: Val = ::bevy::math::UVec4::as_ivec4( + let output: Val = bevy::math::UVec4::as_ivec4( &_self, ) .into(); @@ -8346,7 +8153,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "as_i64vec4", |_self: Ref| { - let output: Val = ::bevy::math::UVec4::as_i64vec4( + let output: Val = bevy::math::UVec4::as_i64vec4( &_self, ) .into(); @@ -8356,7 +8163,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "as_u64vec4", |_self: Ref| { - let output: Val = ::bevy::math::UVec4::as_u64vec4( + let output: Val = bevy::math::UVec4::as_u64vec4( &_self, ) .into(); @@ -8366,7 +8173,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "wrapping_add", |_self: Val, rhs: Val| { - let output: Val = ::bevy::math::UVec4::wrapping_add( + let output: Val = bevy::math::UVec4::wrapping_add( _self.into_inner(), rhs.into_inner(), ) @@ -8377,7 +8184,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "wrapping_sub", |_self: Val, rhs: Val| { - let output: Val = ::bevy::math::UVec4::wrapping_sub( + let output: Val = bevy::math::UVec4::wrapping_sub( _self.into_inner(), rhs.into_inner(), ) @@ -8388,7 +8195,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "wrapping_mul", |_self: Val, rhs: Val| { - let output: Val = ::bevy::math::UVec4::wrapping_mul( + let output: Val = bevy::math::UVec4::wrapping_mul( _self.into_inner(), rhs.into_inner(), ) @@ -8399,7 +8206,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "wrapping_div", |_self: Val, rhs: Val| { - let output: Val = ::bevy::math::UVec4::wrapping_div( + let output: Val = bevy::math::UVec4::wrapping_div( _self.into_inner(), rhs.into_inner(), ) @@ -8410,7 +8217,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "saturating_add", |_self: Val, rhs: Val| { - let output: Val = ::bevy::math::UVec4::saturating_add( + let output: Val = bevy::math::UVec4::saturating_add( _self.into_inner(), rhs.into_inner(), ) @@ -8421,7 +8228,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "saturating_sub", |_self: Val, rhs: Val| { - let output: Val = ::bevy::math::UVec4::saturating_sub( + let output: Val = bevy::math::UVec4::saturating_sub( _self.into_inner(), rhs.into_inner(), ) @@ -8432,7 +8239,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "saturating_mul", |_self: Val, rhs: Val| { - let output: Val = ::bevy::math::UVec4::saturating_mul( + let output: Val = bevy::math::UVec4::saturating_mul( _self.into_inner(), rhs.into_inner(), ) @@ -8443,7 +8250,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "saturating_div", |_self: Val, rhs: Val| { - let output: Val = ::bevy::math::UVec4::saturating_div( + let output: Val = bevy::math::UVec4::saturating_div( _self.into_inner(), rhs.into_inner(), ) @@ -8454,7 +8261,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "wrapping_add_signed", |_self: Val, rhs: Val| { - let output: Val = ::bevy::math::UVec4::wrapping_add_signed( + let output: Val = bevy::math::UVec4::wrapping_add_signed( _self.into_inner(), rhs.into_inner(), ) @@ -8465,7 +8272,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "saturating_add_signed", |_self: Val, rhs: Val| { - let output: Val = ::bevy::math::UVec4::saturating_add_signed( + let output: Val = bevy::math::UVec4::saturating_add_signed( _self.into_inner(), rhs.into_inner(), ) @@ -8476,17 +8283,19 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "eq", |_self: Ref, other: Ref| { - let output: bool = ::bevy::math::UVec4::eq(&_self, &other).into(); + let output: bool = >::eq(&_self, &other) + .into(); output }, ) .overwrite_script_function( "sub", |_self: Val, rhs: u32| { - let output: Val = ::bevy::math::UVec4::sub( - _self.into_inner(), - rhs, - ) + let output: Val = >::sub(_self.into_inner(), rhs) .into(); output }, @@ -8494,10 +8303,9 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "div", |_self: Val, rhs: Val| { - let output: Val = ::bevy::math::UVec4::div( - _self.into_inner(), - rhs.into_inner(), - ) + let output: Val = >::div(_self.into_inner(), rhs.into_inner()) .into(); output }, @@ -8505,10 +8313,9 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "mul", |_self: Val, rhs: u32| { - let output: Val = ::bevy::math::UVec4::mul( - _self.into_inner(), - rhs, - ) + let output: Val = >::mul(_self.into_inner(), rhs) .into(); output }, @@ -8516,10 +8323,9 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "rem", |_self: Val, rhs: Ref| { - let output: Val = ::bevy::math::UVec4::rem( - _self.into_inner(), - &rhs, - ) + let output: Val = >::rem(_self.into_inner(), &rhs) .into(); output }, @@ -8527,10 +8333,9 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "div", |_self: Val, rhs: Ref| { - let output: Val = ::bevy::math::UVec4::div( - _self.into_inner(), - &rhs, - ) + let output: Val = >::div(_self.into_inner(), &rhs) .into(); output }, @@ -8538,7 +8343,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "assert_receiver_is_total_eq", |_self: Ref| { - let output: () = ::bevy::math::UVec4::assert_receiver_is_total_eq( + let output: () = ::assert_receiver_is_total_eq( &_self, ) .into(); @@ -8548,10 +8353,9 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "rem", |_self: Val, rhs: u32| { - let output: Val = ::bevy::math::UVec4::rem( - _self.into_inner(), - rhs, - ) + let output: Val = >::rem(_self.into_inner(), rhs) .into(); output }, @@ -8559,10 +8363,9 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "add", |_self: Val, rhs: Val| { - let output: Val = ::bevy::math::UVec4::add( - _self.into_inner(), - rhs.into_inner(), - ) + let output: Val = >::add(_self.into_inner(), rhs.into_inner()) .into(); output }, @@ -8570,10 +8373,9 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "add", |_self: Val, rhs: u32| { - let output: Val = ::bevy::math::UVec4::add( - _self.into_inner(), - rhs, - ) + let output: Val = >::add(_self.into_inner(), rhs) .into(); output }, @@ -8582,10 +8384,9 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "mul", |_self: Val, rhs: u64| { - let output: Val = ::bevy::math::U64Vec2::mul( - _self.into_inner(), - rhs, - ) + let output: Val = >::mul(_self.into_inner(), rhs) .into(); output }, @@ -8593,10 +8394,9 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "rem", |_self: Val, rhs: Val| { - let output: Val = ::bevy::math::U64Vec2::rem( - _self.into_inner(), - rhs.into_inner(), - ) + let output: Val = >::rem(_self.into_inner(), rhs.into_inner()) .into(); output }, @@ -8604,10 +8404,9 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "add", |_self: Val, rhs: Val| { - let output: Val = ::bevy::math::U64Vec2::add( - _self.into_inner(), - rhs.into_inner(), - ) + let output: Val = >::add(_self.into_inner(), rhs.into_inner()) .into(); output }, @@ -8615,10 +8414,9 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "sub", |_self: Val, rhs: Ref| { - let output: Val = ::bevy::math::U64Vec2::sub( - _self.into_inner(), - &rhs, - ) + let output: Val = >::sub(_self.into_inner(), &rhs) .into(); output }, @@ -8626,10 +8424,9 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "mul", |_self: Val, rhs: Ref| { - let output: Val = ::bevy::math::U64Vec2::mul( - _self.into_inner(), - &rhs, - ) + let output: Val = >::mul(_self.into_inner(), &rhs) .into(); output }, @@ -8637,10 +8434,9 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "div", |_self: Val, rhs: u64| { - let output: Val = ::bevy::math::U64Vec2::div( - _self.into_inner(), - rhs, - ) + let output: Val = >::div(_self.into_inner(), rhs) .into(); output }, @@ -8648,7 +8444,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "clone", |_self: Ref| { - let output: Val = ::bevy::math::U64Vec2::clone( + let output: Val = ::clone( &_self, ) .into(); @@ -8658,10 +8454,9 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "sub", |_self: Val, rhs: u64| { - let output: Val = ::bevy::math::U64Vec2::sub( - _self.into_inner(), - rhs, - ) + let output: Val = >::sub(_self.into_inner(), rhs) .into(); output }, @@ -8669,10 +8464,9 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "rem", |_self: Val, rhs: Ref| { - let output: Val = ::bevy::math::U64Vec2::rem( - _self.into_inner(), - &rhs, - ) + let output: Val = >::rem(_self.into_inner(), &rhs) .into(); output }, @@ -8680,10 +8474,9 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "add", |_self: Val, rhs: u64| { - let output: Val = ::bevy::math::U64Vec2::add( - _self.into_inner(), - rhs, - ) + let output: Val = >::add(_self.into_inner(), rhs) .into(); output }, @@ -8691,10 +8484,9 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "div", |_self: Val, rhs: Ref| { - let output: Val = ::bevy::math::U64Vec2::div( - _self.into_inner(), - &rhs, - ) + let output: Val = >::div(_self.into_inner(), &rhs) .into(); output }, @@ -8702,10 +8494,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "new", |x: u64, y: u64| { - let output: Val = ::bevy::math::U64Vec2::new( - x, - y, - ) + let output: Val = bevy::math::U64Vec2::new(x, y) .into(); output }, @@ -8713,9 +8502,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "splat", |v: u64| { - let output: Val = ::bevy::math::U64Vec2::splat( - v, - ) + let output: Val = bevy::math::U64Vec2::splat(v) .into(); output }, @@ -8727,7 +8514,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { if_true: Val, if_false: Val| { - let output: Val = ::bevy::math::U64Vec2::select( + let output: Val = bevy::math::U64Vec2::select( mask.into_inner(), if_true.into_inner(), if_false.into_inner(), @@ -8739,7 +8526,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "from_array", |a: [u64; 2]| { - let output: Val = ::bevy::math::U64Vec2::from_array( + let output: Val = bevy::math::U64Vec2::from_array( a, ) .into(); @@ -8749,15 +8536,14 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "to_array", |_self: Ref| { - let output: [u64; 2] = ::bevy::math::U64Vec2::to_array(&_self) - .into(); + let output: [u64; 2] = bevy::math::U64Vec2::to_array(&_self).into(); output }, ) .overwrite_script_function( "extend", |_self: Val, z: u64| { - let output: Val = ::bevy::math::U64Vec2::extend( + let output: Val = bevy::math::U64Vec2::extend( _self.into_inner(), z, ) @@ -8768,7 +8554,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "with_x", |_self: Val, x: u64| { - let output: Val = ::bevy::math::U64Vec2::with_x( + let output: Val = bevy::math::U64Vec2::with_x( _self.into_inner(), x, ) @@ -8779,7 +8565,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "with_y", |_self: Val, y: u64| { - let output: Val = ::bevy::math::U64Vec2::with_y( + let output: Val = bevy::math::U64Vec2::with_y( _self.into_inner(), y, ) @@ -8790,7 +8576,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "dot", |_self: Val, rhs: Val| { - let output: u64 = ::bevy::math::U64Vec2::dot( + let output: u64 = bevy::math::U64Vec2::dot( _self.into_inner(), rhs.into_inner(), ) @@ -8801,7 +8587,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "dot_into_vec", |_self: Val, rhs: Val| { - let output: Val = ::bevy::math::U64Vec2::dot_into_vec( + let output: Val = bevy::math::U64Vec2::dot_into_vec( _self.into_inner(), rhs.into_inner(), ) @@ -8812,7 +8598,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "min", |_self: Val, rhs: Val| { - let output: Val = ::bevy::math::U64Vec2::min( + let output: Val = bevy::math::U64Vec2::min( _self.into_inner(), rhs.into_inner(), ) @@ -8823,7 +8609,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "max", |_self: Val, rhs: Val| { - let output: Val = ::bevy::math::U64Vec2::max( + let output: Val = bevy::math::U64Vec2::max( _self.into_inner(), rhs.into_inner(), ) @@ -8838,7 +8624,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { min: Val, max: Val| { - let output: Val = ::bevy::math::U64Vec2::clamp( + let output: Val = bevy::math::U64Vec2::clamp( _self.into_inner(), min.into_inner(), max.into_inner(), @@ -8850,7 +8636,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "min_element", |_self: Val| { - let output: u64 = ::bevy::math::U64Vec2::min_element( + let output: u64 = bevy::math::U64Vec2::min_element( _self.into_inner(), ) .into(); @@ -8860,7 +8646,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "max_element", |_self: Val| { - let output: u64 = ::bevy::math::U64Vec2::max_element( + let output: u64 = bevy::math::U64Vec2::max_element( _self.into_inner(), ) .into(); @@ -8870,7 +8656,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "element_sum", |_self: Val| { - let output: u64 = ::bevy::math::U64Vec2::element_sum( + let output: u64 = bevy::math::U64Vec2::element_sum( _self.into_inner(), ) .into(); @@ -8880,7 +8666,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "element_product", |_self: Val| { - let output: u64 = ::bevy::math::U64Vec2::element_product( + let output: u64 = bevy::math::U64Vec2::element_product( _self.into_inner(), ) .into(); @@ -8890,7 +8676,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "cmpeq", |_self: Val, rhs: Val| { - let output: Val = ::bevy::math::U64Vec2::cmpeq( + let output: Val = bevy::math::U64Vec2::cmpeq( _self.into_inner(), rhs.into_inner(), ) @@ -8901,7 +8687,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "cmpne", |_self: Val, rhs: Val| { - let output: Val = ::bevy::math::U64Vec2::cmpne( + let output: Val = bevy::math::U64Vec2::cmpne( _self.into_inner(), rhs.into_inner(), ) @@ -8912,7 +8698,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "cmpge", |_self: Val, rhs: Val| { - let output: Val = ::bevy::math::U64Vec2::cmpge( + let output: Val = bevy::math::U64Vec2::cmpge( _self.into_inner(), rhs.into_inner(), ) @@ -8923,7 +8709,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "cmpgt", |_self: Val, rhs: Val| { - let output: Val = ::bevy::math::U64Vec2::cmpgt( + let output: Val = bevy::math::U64Vec2::cmpgt( _self.into_inner(), rhs.into_inner(), ) @@ -8934,7 +8720,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "cmple", |_self: Val, rhs: Val| { - let output: Val = ::bevy::math::U64Vec2::cmple( + let output: Val = bevy::math::U64Vec2::cmple( _self.into_inner(), rhs.into_inner(), ) @@ -8945,7 +8731,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "cmplt", |_self: Val, rhs: Val| { - let output: Val = ::bevy::math::U64Vec2::cmplt( + let output: Val = bevy::math::U64Vec2::cmplt( _self.into_inner(), rhs.into_inner(), ) @@ -8956,7 +8742,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "length_squared", |_self: Val| { - let output: u64 = ::bevy::math::U64Vec2::length_squared( + let output: u64 = bevy::math::U64Vec2::length_squared( _self.into_inner(), ) .into(); @@ -8966,7 +8752,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "as_vec2", |_self: Ref| { - let output: Val = ::bevy::math::U64Vec2::as_vec2( + let output: Val = bevy::math::U64Vec2::as_vec2( &_self, ) .into(); @@ -8976,7 +8762,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "as_dvec2", |_self: Ref| { - let output: Val = ::bevy::math::U64Vec2::as_dvec2( + let output: Val = bevy::math::U64Vec2::as_dvec2( &_self, ) .into(); @@ -8986,7 +8772,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "as_ivec2", |_self: Ref| { - let output: Val = ::bevy::math::U64Vec2::as_ivec2( + let output: Val = bevy::math::U64Vec2::as_ivec2( &_self, ) .into(); @@ -8996,7 +8782,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "as_uvec2", |_self: Ref| { - let output: Val = ::bevy::math::U64Vec2::as_uvec2( + let output: Val = bevy::math::U64Vec2::as_uvec2( &_self, ) .into(); @@ -9006,7 +8792,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "as_i64vec2", |_self: Ref| { - let output: Val = ::bevy::math::U64Vec2::as_i64vec2( + let output: Val = bevy::math::U64Vec2::as_i64vec2( &_self, ) .into(); @@ -9016,7 +8802,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "wrapping_add", |_self: Val, rhs: Val| { - let output: Val = ::bevy::math::U64Vec2::wrapping_add( + let output: Val = bevy::math::U64Vec2::wrapping_add( _self.into_inner(), rhs.into_inner(), ) @@ -9027,7 +8813,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "wrapping_sub", |_self: Val, rhs: Val| { - let output: Val = ::bevy::math::U64Vec2::wrapping_sub( + let output: Val = bevy::math::U64Vec2::wrapping_sub( _self.into_inner(), rhs.into_inner(), ) @@ -9038,7 +8824,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "wrapping_mul", |_self: Val, rhs: Val| { - let output: Val = ::bevy::math::U64Vec2::wrapping_mul( + let output: Val = bevy::math::U64Vec2::wrapping_mul( _self.into_inner(), rhs.into_inner(), ) @@ -9049,7 +8835,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "wrapping_div", |_self: Val, rhs: Val| { - let output: Val = ::bevy::math::U64Vec2::wrapping_div( + let output: Val = bevy::math::U64Vec2::wrapping_div( _self.into_inner(), rhs.into_inner(), ) @@ -9060,7 +8846,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "saturating_add", |_self: Val, rhs: Val| { - let output: Val = ::bevy::math::U64Vec2::saturating_add( + let output: Val = bevy::math::U64Vec2::saturating_add( _self.into_inner(), rhs.into_inner(), ) @@ -9071,7 +8857,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "saturating_sub", |_self: Val, rhs: Val| { - let output: Val = ::bevy::math::U64Vec2::saturating_sub( + let output: Val = bevy::math::U64Vec2::saturating_sub( _self.into_inner(), rhs.into_inner(), ) @@ -9082,7 +8868,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "saturating_mul", |_self: Val, rhs: Val| { - let output: Val = ::bevy::math::U64Vec2::saturating_mul( + let output: Val = bevy::math::U64Vec2::saturating_mul( _self.into_inner(), rhs.into_inner(), ) @@ -9093,7 +8879,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "saturating_div", |_self: Val, rhs: Val| { - let output: Val = ::bevy::math::U64Vec2::saturating_div( + let output: Val = bevy::math::U64Vec2::saturating_div( _self.into_inner(), rhs.into_inner(), ) @@ -9104,7 +8890,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "wrapping_add_signed", |_self: Val, rhs: Val| { - let output: Val = ::bevy::math::U64Vec2::wrapping_add_signed( + let output: Val = bevy::math::U64Vec2::wrapping_add_signed( _self.into_inner(), rhs.into_inner(), ) @@ -9115,7 +8901,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "saturating_add_signed", |_self: Val, rhs: Val| { - let output: Val = ::bevy::math::U64Vec2::saturating_add_signed( + let output: Val = bevy::math::U64Vec2::saturating_add_signed( _self.into_inner(), rhs.into_inner(), ) @@ -9126,10 +8912,9 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "add", |_self: Val, rhs: Ref| { - let output: Val = ::bevy::math::U64Vec2::add( - _self.into_inner(), - &rhs, - ) + let output: Val = >::add(_self.into_inner(), &rhs) .into(); output }, @@ -9137,10 +8922,9 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "div", |_self: Val, rhs: Val| { - let output: Val = ::bevy::math::U64Vec2::div( - _self.into_inner(), - rhs.into_inner(), - ) + let output: Val = >::div(_self.into_inner(), rhs.into_inner()) .into(); output }, @@ -9148,17 +8932,19 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "eq", |_self: Ref, other: Ref| { - let output: bool = ::bevy::math::U64Vec2::eq(&_self, &other).into(); + let output: bool = >::eq(&_self, &other) + .into(); output }, ) .overwrite_script_function( "rem", |_self: Val, rhs: u64| { - let output: Val = ::bevy::math::U64Vec2::rem( - _self.into_inner(), - rhs, - ) + let output: Val = >::rem(_self.into_inner(), rhs) .into(); output }, @@ -9166,10 +8952,9 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "mul", |_self: Val, rhs: Val| { - let output: Val = ::bevy::math::U64Vec2::mul( - _self.into_inner(), - rhs.into_inner(), - ) + let output: Val = >::mul(_self.into_inner(), rhs.into_inner()) .into(); output }, @@ -9177,7 +8962,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "assert_receiver_is_total_eq", |_self: Ref| { - let output: () = ::bevy::math::U64Vec2::assert_receiver_is_total_eq( + let output: () = ::assert_receiver_is_total_eq( &_self, ) .into(); @@ -9187,10 +8972,9 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "sub", |_self: Val, rhs: Val| { - let output: Val = ::bevy::math::U64Vec2::sub( - _self.into_inner(), - rhs.into_inner(), - ) + let output: Val = >::sub(_self.into_inner(), rhs.into_inner()) .into(); output }, @@ -9199,10 +8983,9 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "mul", |_self: Val, rhs: u64| { - let output: Val = ::bevy::math::U64Vec3::mul( - _self.into_inner(), - rhs, - ) + let output: Val = >::mul(_self.into_inner(), rhs) .into(); output }, @@ -9210,10 +8993,9 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "sub", |_self: Val, rhs: u64| { - let output: Val = ::bevy::math::U64Vec3::sub( - _self.into_inner(), - rhs, - ) + let output: Val = >::sub(_self.into_inner(), rhs) .into(); output }, @@ -9221,7 +9003,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "new", |x: u64, y: u64, z: u64| { - let output: Val = ::bevy::math::U64Vec3::new( + let output: Val = bevy::math::U64Vec3::new( x, y, z, @@ -9233,9 +9015,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "splat", |v: u64| { - let output: Val = ::bevy::math::U64Vec3::splat( - v, - ) + let output: Val = bevy::math::U64Vec3::splat(v) .into(); output }, @@ -9247,7 +9027,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { if_true: Val, if_false: Val| { - let output: Val = ::bevy::math::U64Vec3::select( + let output: Val = bevy::math::U64Vec3::select( mask.into_inner(), if_true.into_inner(), if_false.into_inner(), @@ -9259,7 +9039,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "from_array", |a: [u64; 3]| { - let output: Val = ::bevy::math::U64Vec3::from_array( + let output: Val = bevy::math::U64Vec3::from_array( a, ) .into(); @@ -9269,15 +9049,14 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "to_array", |_self: Ref| { - let output: [u64; 3] = ::bevy::math::U64Vec3::to_array(&_self) - .into(); + let output: [u64; 3] = bevy::math::U64Vec3::to_array(&_self).into(); output }, ) .overwrite_script_function( "extend", |_self: Val, w: u64| { - let output: Val = ::bevy::math::U64Vec3::extend( + let output: Val = bevy::math::U64Vec3::extend( _self.into_inner(), w, ) @@ -9288,7 +9067,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "truncate", |_self: Val| { - let output: Val = ::bevy::math::U64Vec3::truncate( + let output: Val = bevy::math::U64Vec3::truncate( _self.into_inner(), ) .into(); @@ -9298,7 +9077,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "with_x", |_self: Val, x: u64| { - let output: Val = ::bevy::math::U64Vec3::with_x( + let output: Val = bevy::math::U64Vec3::with_x( _self.into_inner(), x, ) @@ -9309,7 +9088,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "with_y", |_self: Val, y: u64| { - let output: Val = ::bevy::math::U64Vec3::with_y( + let output: Val = bevy::math::U64Vec3::with_y( _self.into_inner(), y, ) @@ -9320,7 +9099,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "with_z", |_self: Val, z: u64| { - let output: Val = ::bevy::math::U64Vec3::with_z( + let output: Val = bevy::math::U64Vec3::with_z( _self.into_inner(), z, ) @@ -9331,7 +9110,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "dot", |_self: Val, rhs: Val| { - let output: u64 = ::bevy::math::U64Vec3::dot( + let output: u64 = bevy::math::U64Vec3::dot( _self.into_inner(), rhs.into_inner(), ) @@ -9342,7 +9121,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "dot_into_vec", |_self: Val, rhs: Val| { - let output: Val = ::bevy::math::U64Vec3::dot_into_vec( + let output: Val = bevy::math::U64Vec3::dot_into_vec( _self.into_inner(), rhs.into_inner(), ) @@ -9353,7 +9132,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "cross", |_self: Val, rhs: Val| { - let output: Val = ::bevy::math::U64Vec3::cross( + let output: Val = bevy::math::U64Vec3::cross( _self.into_inner(), rhs.into_inner(), ) @@ -9364,7 +9143,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "min", |_self: Val, rhs: Val| { - let output: Val = ::bevy::math::U64Vec3::min( + let output: Val = bevy::math::U64Vec3::min( _self.into_inner(), rhs.into_inner(), ) @@ -9375,7 +9154,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "max", |_self: Val, rhs: Val| { - let output: Val = ::bevy::math::U64Vec3::max( + let output: Val = bevy::math::U64Vec3::max( _self.into_inner(), rhs.into_inner(), ) @@ -9390,7 +9169,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { min: Val, max: Val| { - let output: Val = ::bevy::math::U64Vec3::clamp( + let output: Val = bevy::math::U64Vec3::clamp( _self.into_inner(), min.into_inner(), max.into_inner(), @@ -9402,7 +9181,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "min_element", |_self: Val| { - let output: u64 = ::bevy::math::U64Vec3::min_element( + let output: u64 = bevy::math::U64Vec3::min_element( _self.into_inner(), ) .into(); @@ -9412,7 +9191,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "max_element", |_self: Val| { - let output: u64 = ::bevy::math::U64Vec3::max_element( + let output: u64 = bevy::math::U64Vec3::max_element( _self.into_inner(), ) .into(); @@ -9422,7 +9201,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "element_sum", |_self: Val| { - let output: u64 = ::bevy::math::U64Vec3::element_sum( + let output: u64 = bevy::math::U64Vec3::element_sum( _self.into_inner(), ) .into(); @@ -9432,7 +9211,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "element_product", |_self: Val| { - let output: u64 = ::bevy::math::U64Vec3::element_product( + let output: u64 = bevy::math::U64Vec3::element_product( _self.into_inner(), ) .into(); @@ -9442,7 +9221,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "cmpeq", |_self: Val, rhs: Val| { - let output: Val = ::bevy::math::U64Vec3::cmpeq( + let output: Val = bevy::math::U64Vec3::cmpeq( _self.into_inner(), rhs.into_inner(), ) @@ -9453,7 +9232,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "cmpne", |_self: Val, rhs: Val| { - let output: Val = ::bevy::math::U64Vec3::cmpne( + let output: Val = bevy::math::U64Vec3::cmpne( _self.into_inner(), rhs.into_inner(), ) @@ -9464,7 +9243,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "cmpge", |_self: Val, rhs: Val| { - let output: Val = ::bevy::math::U64Vec3::cmpge( + let output: Val = bevy::math::U64Vec3::cmpge( _self.into_inner(), rhs.into_inner(), ) @@ -9475,7 +9254,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "cmpgt", |_self: Val, rhs: Val| { - let output: Val = ::bevy::math::U64Vec3::cmpgt( + let output: Val = bevy::math::U64Vec3::cmpgt( _self.into_inner(), rhs.into_inner(), ) @@ -9486,7 +9265,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "cmple", |_self: Val, rhs: Val| { - let output: Val = ::bevy::math::U64Vec3::cmple( + let output: Val = bevy::math::U64Vec3::cmple( _self.into_inner(), rhs.into_inner(), ) @@ -9497,7 +9276,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "cmplt", |_self: Val, rhs: Val| { - let output: Val = ::bevy::math::U64Vec3::cmplt( + let output: Val = bevy::math::U64Vec3::cmplt( _self.into_inner(), rhs.into_inner(), ) @@ -9508,7 +9287,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "length_squared", |_self: Val| { - let output: u64 = ::bevy::math::U64Vec3::length_squared( + let output: u64 = bevy::math::U64Vec3::length_squared( _self.into_inner(), ) .into(); @@ -9518,7 +9297,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "as_vec3", |_self: Ref| { - let output: Val = ::bevy::math::U64Vec3::as_vec3( + let output: Val = bevy::math::U64Vec3::as_vec3( &_self, ) .into(); @@ -9528,7 +9307,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "as_vec3a", |_self: Ref| { - let output: Val = ::bevy::math::U64Vec3::as_vec3a( + let output: Val = bevy::math::U64Vec3::as_vec3a( &_self, ) .into(); @@ -9538,7 +9317,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "as_dvec3", |_self: Ref| { - let output: Val = ::bevy::math::U64Vec3::as_dvec3( + let output: Val = bevy::math::U64Vec3::as_dvec3( &_self, ) .into(); @@ -9548,7 +9327,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "as_ivec3", |_self: Ref| { - let output: Val = ::bevy::math::U64Vec3::as_ivec3( + let output: Val = bevy::math::U64Vec3::as_ivec3( &_self, ) .into(); @@ -9558,7 +9337,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "as_uvec3", |_self: Ref| { - let output: Val = ::bevy::math::U64Vec3::as_uvec3( + let output: Val = bevy::math::U64Vec3::as_uvec3( &_self, ) .into(); @@ -9568,7 +9347,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "as_i64vec3", |_self: Ref| { - let output: Val = ::bevy::math::U64Vec3::as_i64vec3( + let output: Val = bevy::math::U64Vec3::as_i64vec3( &_self, ) .into(); @@ -9578,7 +9357,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "wrapping_add", |_self: Val, rhs: Val| { - let output: Val = ::bevy::math::U64Vec3::wrapping_add( + let output: Val = bevy::math::U64Vec3::wrapping_add( _self.into_inner(), rhs.into_inner(), ) @@ -9589,7 +9368,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "wrapping_sub", |_self: Val, rhs: Val| { - let output: Val = ::bevy::math::U64Vec3::wrapping_sub( + let output: Val = bevy::math::U64Vec3::wrapping_sub( _self.into_inner(), rhs.into_inner(), ) @@ -9600,7 +9379,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "wrapping_mul", |_self: Val, rhs: Val| { - let output: Val = ::bevy::math::U64Vec3::wrapping_mul( + let output: Val = bevy::math::U64Vec3::wrapping_mul( _self.into_inner(), rhs.into_inner(), ) @@ -9611,7 +9390,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "wrapping_div", |_self: Val, rhs: Val| { - let output: Val = ::bevy::math::U64Vec3::wrapping_div( + let output: Val = bevy::math::U64Vec3::wrapping_div( _self.into_inner(), rhs.into_inner(), ) @@ -9622,7 +9401,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "saturating_add", |_self: Val, rhs: Val| { - let output: Val = ::bevy::math::U64Vec3::saturating_add( + let output: Val = bevy::math::U64Vec3::saturating_add( _self.into_inner(), rhs.into_inner(), ) @@ -9633,7 +9412,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "saturating_sub", |_self: Val, rhs: Val| { - let output: Val = ::bevy::math::U64Vec3::saturating_sub( + let output: Val = bevy::math::U64Vec3::saturating_sub( _self.into_inner(), rhs.into_inner(), ) @@ -9644,7 +9423,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "saturating_mul", |_self: Val, rhs: Val| { - let output: Val = ::bevy::math::U64Vec3::saturating_mul( + let output: Val = bevy::math::U64Vec3::saturating_mul( _self.into_inner(), rhs.into_inner(), ) @@ -9655,7 +9434,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "saturating_div", |_self: Val, rhs: Val| { - let output: Val = ::bevy::math::U64Vec3::saturating_div( + let output: Val = bevy::math::U64Vec3::saturating_div( _self.into_inner(), rhs.into_inner(), ) @@ -9666,7 +9445,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "wrapping_add_signed", |_self: Val, rhs: Val| { - let output: Val = ::bevy::math::U64Vec3::wrapping_add_signed( + let output: Val = bevy::math::U64Vec3::wrapping_add_signed( _self.into_inner(), rhs.into_inner(), ) @@ -9677,7 +9456,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "saturating_add_signed", |_self: Val, rhs: Val| { - let output: Val = ::bevy::math::U64Vec3::saturating_add_signed( + let output: Val = bevy::math::U64Vec3::saturating_add_signed( _self.into_inner(), rhs.into_inner(), ) @@ -9688,10 +9467,9 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "add", |_self: Val, rhs: Ref| { - let output: Val = ::bevy::math::U64Vec3::add( - _self.into_inner(), - &rhs, - ) + let output: Val = >::add(_self.into_inner(), &rhs) .into(); output }, @@ -9699,10 +9477,9 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "mul", |_self: Val, rhs: Val| { - let output: Val = ::bevy::math::U64Vec3::mul( - _self.into_inner(), - rhs.into_inner(), - ) + let output: Val = >::mul(_self.into_inner(), rhs.into_inner()) .into(); output }, @@ -9710,10 +9487,9 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "rem", |_self: Val, rhs: Ref| { - let output: Val = ::bevy::math::U64Vec3::rem( - _self.into_inner(), - &rhs, - ) + let output: Val = >::rem(_self.into_inner(), &rhs) .into(); output }, @@ -9721,10 +9497,9 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "rem", |_self: Val, rhs: u64| { - let output: Val = ::bevy::math::U64Vec3::rem( - _self.into_inner(), - rhs, - ) + let output: Val = >::rem(_self.into_inner(), rhs) .into(); output }, @@ -9732,7 +9507,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "assert_receiver_is_total_eq", |_self: Ref| { - let output: () = ::bevy::math::U64Vec3::assert_receiver_is_total_eq( + let output: () = ::assert_receiver_is_total_eq( &_self, ) .into(); @@ -9742,10 +9517,9 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "div", |_self: Val, rhs: Ref| { - let output: Val = ::bevy::math::U64Vec3::div( - _self.into_inner(), - &rhs, - ) + let output: Val = >::div(_self.into_inner(), &rhs) .into(); output }, @@ -9753,10 +9527,9 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "div", |_self: Val, rhs: Val| { - let output: Val = ::bevy::math::U64Vec3::div( - _self.into_inner(), - rhs.into_inner(), - ) + let output: Val = >::div(_self.into_inner(), rhs.into_inner()) .into(); output }, @@ -9764,10 +9537,9 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "div", |_self: Val, rhs: u64| { - let output: Val = ::bevy::math::U64Vec3::div( - _self.into_inner(), - rhs, - ) + let output: Val = >::div(_self.into_inner(), rhs) .into(); output }, @@ -9775,7 +9547,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "clone", |_self: Ref| { - let output: Val = ::bevy::math::U64Vec3::clone( + let output: Val = ::clone( &_self, ) .into(); @@ -9785,10 +9557,9 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "rem", |_self: Val, rhs: Val| { - let output: Val = ::bevy::math::U64Vec3::rem( - _self.into_inner(), - rhs.into_inner(), - ) + let output: Val = >::rem(_self.into_inner(), rhs.into_inner()) .into(); output }, @@ -9796,10 +9567,9 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "sub", |_self: Val, rhs: Val| { - let output: Val = ::bevy::math::U64Vec3::sub( - _self.into_inner(), - rhs.into_inner(), - ) + let output: Val = >::sub(_self.into_inner(), rhs.into_inner()) .into(); output }, @@ -9807,10 +9577,9 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "add", |_self: Val, rhs: u64| { - let output: Val = ::bevy::math::U64Vec3::add( - _self.into_inner(), - rhs, - ) + let output: Val = >::add(_self.into_inner(), rhs) .into(); output }, @@ -9818,17 +9587,19 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "eq", |_self: Ref, other: Ref| { - let output: bool = ::bevy::math::U64Vec3::eq(&_self, &other).into(); + let output: bool = >::eq(&_self, &other) + .into(); output }, ) .overwrite_script_function( "mul", |_self: Val, rhs: Ref| { - let output: Val = ::bevy::math::U64Vec3::mul( - _self.into_inner(), - &rhs, - ) + let output: Val = >::mul(_self.into_inner(), &rhs) .into(); output }, @@ -9836,10 +9607,9 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "add", |_self: Val, rhs: Val| { - let output: Val = ::bevy::math::U64Vec3::add( - _self.into_inner(), - rhs.into_inner(), - ) + let output: Val = >::add(_self.into_inner(), rhs.into_inner()) .into(); output }, @@ -9847,10 +9617,9 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "sub", |_self: Val, rhs: Ref| { - let output: Val = ::bevy::math::U64Vec3::sub( - _self.into_inner(), - &rhs, - ) + let output: Val = >::sub(_self.into_inner(), &rhs) .into(); output }, @@ -9859,7 +9628,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "assert_receiver_is_total_eq", |_self: Ref| { - let output: () = ::bevy::math::U64Vec4::assert_receiver_is_total_eq( + let output: () = ::assert_receiver_is_total_eq( &_self, ) .into(); @@ -9869,10 +9638,9 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "sub", |_self: Val, rhs: Val| { - let output: Val = ::bevy::math::U64Vec4::sub( - _self.into_inner(), - rhs.into_inner(), - ) + let output: Val = >::sub(_self.into_inner(), rhs.into_inner()) .into(); output }, @@ -9880,10 +9648,9 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "rem", |_self: Val, rhs: Ref| { - let output: Val = ::bevy::math::U64Vec4::rem( - _self.into_inner(), - &rhs, - ) + let output: Val = >::rem(_self.into_inner(), &rhs) .into(); output }, @@ -9891,10 +9658,9 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "div", |_self: Val, rhs: u64| { - let output: Val = ::bevy::math::U64Vec4::div( - _self.into_inner(), - rhs, - ) + let output: Val = >::div(_self.into_inner(), rhs) .into(); output }, @@ -9902,10 +9668,9 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "div", |_self: Val, rhs: Ref| { - let output: Val = ::bevy::math::U64Vec4::div( - _self.into_inner(), - &rhs, - ) + let output: Val = >::div(_self.into_inner(), &rhs) .into(); output }, @@ -9913,10 +9678,9 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "mul", |_self: Val, rhs: Val| { - let output: Val = ::bevy::math::U64Vec4::mul( - _self.into_inner(), - rhs.into_inner(), - ) + let output: Val = >::mul(_self.into_inner(), rhs.into_inner()) .into(); output }, @@ -9924,10 +9688,9 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "add", |_self: Val, rhs: Val| { - let output: Val = ::bevy::math::U64Vec4::add( - _self.into_inner(), - rhs.into_inner(), - ) + let output: Val = >::add(_self.into_inner(), rhs.into_inner()) .into(); output }, @@ -9935,10 +9698,9 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "rem", |_self: Val, rhs: Val| { - let output: Val = ::bevy::math::U64Vec4::rem( - _self.into_inner(), - rhs.into_inner(), - ) + let output: Val = >::rem(_self.into_inner(), rhs.into_inner()) .into(); output }, @@ -9946,10 +9708,9 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "sub", |_self: Val, rhs: Ref| { - let output: Val = ::bevy::math::U64Vec4::sub( - _self.into_inner(), - &rhs, - ) + let output: Val = >::sub(_self.into_inner(), &rhs) .into(); output }, @@ -9957,10 +9718,9 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "mul", |_self: Val, rhs: u64| { - let output: Val = ::bevy::math::U64Vec4::mul( - _self.into_inner(), - rhs, - ) + let output: Val = >::mul(_self.into_inner(), rhs) .into(); output }, @@ -9968,10 +9728,9 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "add", |_self: Val, rhs: u64| { - let output: Val = ::bevy::math::U64Vec4::add( - _self.into_inner(), - rhs, - ) + let output: Val = >::add(_self.into_inner(), rhs) .into(); output }, @@ -9979,10 +9738,9 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "add", |_self: Val, rhs: Ref| { - let output: Val = ::bevy::math::U64Vec4::add( - _self.into_inner(), - &rhs, - ) + let output: Val = >::add(_self.into_inner(), &rhs) .into(); output }, @@ -9990,10 +9748,9 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "mul", |_self: Val, rhs: Ref| { - let output: Val = ::bevy::math::U64Vec4::mul( - _self.into_inner(), - &rhs, - ) + let output: Val = >::mul(_self.into_inner(), &rhs) .into(); output }, @@ -10001,10 +9758,9 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "div", |_self: Val, rhs: Val| { - let output: Val = ::bevy::math::U64Vec4::div( - _self.into_inner(), - rhs.into_inner(), - ) + let output: Val = >::div(_self.into_inner(), rhs.into_inner()) .into(); output }, @@ -10012,7 +9768,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "clone", |_self: Ref| { - let output: Val = ::bevy::math::U64Vec4::clone( + let output: Val = ::clone( &_self, ) .into(); @@ -10022,7 +9778,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "new", |x: u64, y: u64, z: u64, w: u64| { - let output: Val = ::bevy::math::U64Vec4::new( + let output: Val = bevy::math::U64Vec4::new( x, y, z, @@ -10035,9 +9791,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "splat", |v: u64| { - let output: Val = ::bevy::math::U64Vec4::splat( - v, - ) + let output: Val = bevy::math::U64Vec4::splat(v) .into(); output }, @@ -10049,7 +9803,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { if_true: Val, if_false: Val| { - let output: Val = ::bevy::math::U64Vec4::select( + let output: Val = bevy::math::U64Vec4::select( mask.into_inner(), if_true.into_inner(), if_false.into_inner(), @@ -10061,7 +9815,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "from_array", |a: [u64; 4]| { - let output: Val = ::bevy::math::U64Vec4::from_array( + let output: Val = bevy::math::U64Vec4::from_array( a, ) .into(); @@ -10071,15 +9825,14 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "to_array", |_self: Ref| { - let output: [u64; 4] = ::bevy::math::U64Vec4::to_array(&_self) - .into(); + let output: [u64; 4] = bevy::math::U64Vec4::to_array(&_self).into(); output }, ) .overwrite_script_function( "truncate", |_self: Val| { - let output: Val = ::bevy::math::U64Vec4::truncate( + let output: Val = bevy::math::U64Vec4::truncate( _self.into_inner(), ) .into(); @@ -10089,7 +9842,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "with_x", |_self: Val, x: u64| { - let output: Val = ::bevy::math::U64Vec4::with_x( + let output: Val = bevy::math::U64Vec4::with_x( _self.into_inner(), x, ) @@ -10100,7 +9853,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "with_y", |_self: Val, y: u64| { - let output: Val = ::bevy::math::U64Vec4::with_y( + let output: Val = bevy::math::U64Vec4::with_y( _self.into_inner(), y, ) @@ -10111,7 +9864,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "with_z", |_self: Val, z: u64| { - let output: Val = ::bevy::math::U64Vec4::with_z( + let output: Val = bevy::math::U64Vec4::with_z( _self.into_inner(), z, ) @@ -10122,7 +9875,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "with_w", |_self: Val, w: u64| { - let output: Val = ::bevy::math::U64Vec4::with_w( + let output: Val = bevy::math::U64Vec4::with_w( _self.into_inner(), w, ) @@ -10133,7 +9886,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "dot", |_self: Val, rhs: Val| { - let output: u64 = ::bevy::math::U64Vec4::dot( + let output: u64 = bevy::math::U64Vec4::dot( _self.into_inner(), rhs.into_inner(), ) @@ -10144,7 +9897,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "dot_into_vec", |_self: Val, rhs: Val| { - let output: Val = ::bevy::math::U64Vec4::dot_into_vec( + let output: Val = bevy::math::U64Vec4::dot_into_vec( _self.into_inner(), rhs.into_inner(), ) @@ -10155,7 +9908,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "min", |_self: Val, rhs: Val| { - let output: Val = ::bevy::math::U64Vec4::min( + let output: Val = bevy::math::U64Vec4::min( _self.into_inner(), rhs.into_inner(), ) @@ -10166,7 +9919,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "max", |_self: Val, rhs: Val| { - let output: Val = ::bevy::math::U64Vec4::max( + let output: Val = bevy::math::U64Vec4::max( _self.into_inner(), rhs.into_inner(), ) @@ -10181,7 +9934,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { min: Val, max: Val| { - let output: Val = ::bevy::math::U64Vec4::clamp( + let output: Val = bevy::math::U64Vec4::clamp( _self.into_inner(), min.into_inner(), max.into_inner(), @@ -10193,7 +9946,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "min_element", |_self: Val| { - let output: u64 = ::bevy::math::U64Vec4::min_element( + let output: u64 = bevy::math::U64Vec4::min_element( _self.into_inner(), ) .into(); @@ -10203,7 +9956,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "max_element", |_self: Val| { - let output: u64 = ::bevy::math::U64Vec4::max_element( + let output: u64 = bevy::math::U64Vec4::max_element( _self.into_inner(), ) .into(); @@ -10213,7 +9966,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "element_sum", |_self: Val| { - let output: u64 = ::bevy::math::U64Vec4::element_sum( + let output: u64 = bevy::math::U64Vec4::element_sum( _self.into_inner(), ) .into(); @@ -10223,7 +9976,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "element_product", |_self: Val| { - let output: u64 = ::bevy::math::U64Vec4::element_product( + let output: u64 = bevy::math::U64Vec4::element_product( _self.into_inner(), ) .into(); @@ -10233,7 +9986,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "cmpeq", |_self: Val, rhs: Val| { - let output: Val = ::bevy::math::U64Vec4::cmpeq( + let output: Val = bevy::math::U64Vec4::cmpeq( _self.into_inner(), rhs.into_inner(), ) @@ -10244,7 +9997,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "cmpne", |_self: Val, rhs: Val| { - let output: Val = ::bevy::math::U64Vec4::cmpne( + let output: Val = bevy::math::U64Vec4::cmpne( _self.into_inner(), rhs.into_inner(), ) @@ -10255,7 +10008,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "cmpge", |_self: Val, rhs: Val| { - let output: Val = ::bevy::math::U64Vec4::cmpge( + let output: Val = bevy::math::U64Vec4::cmpge( _self.into_inner(), rhs.into_inner(), ) @@ -10266,7 +10019,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "cmpgt", |_self: Val, rhs: Val| { - let output: Val = ::bevy::math::U64Vec4::cmpgt( + let output: Val = bevy::math::U64Vec4::cmpgt( _self.into_inner(), rhs.into_inner(), ) @@ -10277,7 +10030,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "cmple", |_self: Val, rhs: Val| { - let output: Val = ::bevy::math::U64Vec4::cmple( + let output: Val = bevy::math::U64Vec4::cmple( _self.into_inner(), rhs.into_inner(), ) @@ -10288,7 +10041,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "cmplt", |_self: Val, rhs: Val| { - let output: Val = ::bevy::math::U64Vec4::cmplt( + let output: Val = bevy::math::U64Vec4::cmplt( _self.into_inner(), rhs.into_inner(), ) @@ -10299,7 +10052,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "length_squared", |_self: Val| { - let output: u64 = ::bevy::math::U64Vec4::length_squared( + let output: u64 = bevy::math::U64Vec4::length_squared( _self.into_inner(), ) .into(); @@ -10309,7 +10062,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "as_vec4", |_self: Ref| { - let output: Val = ::bevy::math::U64Vec4::as_vec4( + let output: Val = bevy::math::U64Vec4::as_vec4( &_self, ) .into(); @@ -10319,7 +10072,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "as_dvec4", |_self: Ref| { - let output: Val = ::bevy::math::U64Vec4::as_dvec4( + let output: Val = bevy::math::U64Vec4::as_dvec4( &_self, ) .into(); @@ -10329,7 +10082,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "as_ivec4", |_self: Ref| { - let output: Val = ::bevy::math::U64Vec4::as_ivec4( + let output: Val = bevy::math::U64Vec4::as_ivec4( &_self, ) .into(); @@ -10339,7 +10092,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "as_uvec4", |_self: Ref| { - let output: Val = ::bevy::math::U64Vec4::as_uvec4( + let output: Val = bevy::math::U64Vec4::as_uvec4( &_self, ) .into(); @@ -10349,7 +10102,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "as_i64vec4", |_self: Ref| { - let output: Val = ::bevy::math::U64Vec4::as_i64vec4( + let output: Val = bevy::math::U64Vec4::as_i64vec4( &_self, ) .into(); @@ -10359,7 +10112,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "wrapping_add", |_self: Val, rhs: Val| { - let output: Val = ::bevy::math::U64Vec4::wrapping_add( + let output: Val = bevy::math::U64Vec4::wrapping_add( _self.into_inner(), rhs.into_inner(), ) @@ -10370,7 +10123,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "wrapping_sub", |_self: Val, rhs: Val| { - let output: Val = ::bevy::math::U64Vec4::wrapping_sub( + let output: Val = bevy::math::U64Vec4::wrapping_sub( _self.into_inner(), rhs.into_inner(), ) @@ -10381,7 +10134,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "wrapping_mul", |_self: Val, rhs: Val| { - let output: Val = ::bevy::math::U64Vec4::wrapping_mul( + let output: Val = bevy::math::U64Vec4::wrapping_mul( _self.into_inner(), rhs.into_inner(), ) @@ -10392,7 +10145,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "wrapping_div", |_self: Val, rhs: Val| { - let output: Val = ::bevy::math::U64Vec4::wrapping_div( + let output: Val = bevy::math::U64Vec4::wrapping_div( _self.into_inner(), rhs.into_inner(), ) @@ -10403,7 +10156,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "saturating_add", |_self: Val, rhs: Val| { - let output: Val = ::bevy::math::U64Vec4::saturating_add( + let output: Val = bevy::math::U64Vec4::saturating_add( _self.into_inner(), rhs.into_inner(), ) @@ -10414,7 +10167,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "saturating_sub", |_self: Val, rhs: Val| { - let output: Val = ::bevy::math::U64Vec4::saturating_sub( + let output: Val = bevy::math::U64Vec4::saturating_sub( _self.into_inner(), rhs.into_inner(), ) @@ -10425,7 +10178,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "saturating_mul", |_self: Val, rhs: Val| { - let output: Val = ::bevy::math::U64Vec4::saturating_mul( + let output: Val = bevy::math::U64Vec4::saturating_mul( _self.into_inner(), rhs.into_inner(), ) @@ -10436,7 +10189,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "saturating_div", |_self: Val, rhs: Val| { - let output: Val = ::bevy::math::U64Vec4::saturating_div( + let output: Val = bevy::math::U64Vec4::saturating_div( _self.into_inner(), rhs.into_inner(), ) @@ -10447,7 +10200,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "wrapping_add_signed", |_self: Val, rhs: Val| { - let output: Val = ::bevy::math::U64Vec4::wrapping_add_signed( + let output: Val = bevy::math::U64Vec4::wrapping_add_signed( _self.into_inner(), rhs.into_inner(), ) @@ -10458,7 +10211,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "saturating_add_signed", |_self: Val, rhs: Val| { - let output: Val = ::bevy::math::U64Vec4::saturating_add_signed( + let output: Val = bevy::math::U64Vec4::saturating_add_signed( _self.into_inner(), rhs.into_inner(), ) @@ -10469,10 +10222,9 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "rem", |_self: Val, rhs: u64| { - let output: Val = ::bevy::math::U64Vec4::rem( - _self.into_inner(), - rhs, - ) + let output: Val = >::rem(_self.into_inner(), rhs) .into(); output }, @@ -10480,17 +10232,19 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "eq", |_self: Ref, other: Ref| { - let output: bool = ::bevy::math::U64Vec4::eq(&_self, &other).into(); + let output: bool = >::eq(&_self, &other) + .into(); output }, ) .overwrite_script_function( "sub", |_self: Val, rhs: u64| { - let output: Val = ::bevy::math::U64Vec4::sub( - _self.into_inner(), - rhs, - ) + let output: Val = >::sub(_self.into_inner(), rhs) .into(); output }, @@ -10499,10 +10253,9 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "div", |_self: Val, rhs: Ref| { - let output: Val = ::bevy::math::Vec2::div( - _self.into_inner(), - &rhs, - ) + let output: Val = >::div(_self.into_inner(), &rhs) .into(); output }, @@ -10510,10 +10263,9 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "add", |_self: Val, rhs: Val| { - let output: Val = ::bevy::math::Vec2::add( - _self.into_inner(), - rhs.into_inner(), - ) + let output: Val = >::add(_self.into_inner(), rhs.into_inner()) .into(); output }, @@ -10521,10 +10273,9 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "mul", |_self: Val, rhs: Ref| { - let output: Val = ::bevy::math::Vec2::mul( - _self.into_inner(), - &rhs, - ) + let output: Val = >::mul(_self.into_inner(), &rhs) .into(); output }, @@ -10532,10 +10283,9 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "sub", |_self: Val, rhs: Ref| { - let output: Val = ::bevy::math::Vec2::sub( - _self.into_inner(), - &rhs, - ) + let output: Val = >::sub(_self.into_inner(), &rhs) .into(); output }, @@ -10543,14 +10293,17 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "eq", |_self: Ref, other: Ref| { - let output: bool = ::bevy::math::Vec2::eq(&_self, &other).into(); + let output: bool = >::eq(&_self, &other) + .into(); output }, ) .overwrite_script_function( "neg", |_self: Val| { - let output: Val = ::bevy::math::Vec2::neg( + let output: Val = ::neg( _self.into_inner(), ) .into(); @@ -10560,10 +10313,9 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "div", |_self: Val, rhs: f32| { - let output: Val = ::bevy::math::Vec2::div( - _self.into_inner(), - rhs, - ) + let output: Val = >::div(_self.into_inner(), rhs) .into(); output }, @@ -10571,7 +10323,9 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "clone", |_self: Ref| { - let output: Val = ::bevy::math::Vec2::clone(&_self) + let output: Val = ::clone( + &_self, + ) .into(); output }, @@ -10579,7 +10333,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "new", |x: f32, y: f32| { - let output: Val = ::bevy::math::Vec2::new(x, y) + let output: Val = bevy::math::Vec2::new(x, y) .into(); output }, @@ -10587,7 +10341,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "splat", |v: f32| { - let output: Val = ::bevy::math::Vec2::splat(v) + let output: Val = bevy::math::Vec2::splat(v) .into(); output }, @@ -10599,7 +10353,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { if_true: Val, if_false: Val| { - let output: Val = ::bevy::math::Vec2::select( + let output: Val = bevy::math::Vec2::select( mask.into_inner(), if_true.into_inner(), if_false.into_inner(), @@ -10611,7 +10365,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "from_array", |a: [f32; 2]| { - let output: Val = ::bevy::math::Vec2::from_array(a) + let output: Val = bevy::math::Vec2::from_array(a) .into(); output }, @@ -10619,14 +10373,14 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "to_array", |_self: Ref| { - let output: [f32; 2] = ::bevy::math::Vec2::to_array(&_self).into(); + let output: [f32; 2] = bevy::math::Vec2::to_array(&_self).into(); output }, ) .overwrite_script_function( "extend", |_self: Val, z: f32| { - let output: Val = ::bevy::math::Vec2::extend( + let output: Val = bevy::math::Vec2::extend( _self.into_inner(), z, ) @@ -10637,7 +10391,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "with_x", |_self: Val, x: f32| { - let output: Val = ::bevy::math::Vec2::with_x( + let output: Val = bevy::math::Vec2::with_x( _self.into_inner(), x, ) @@ -10648,7 +10402,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "with_y", |_self: Val, y: f32| { - let output: Val = ::bevy::math::Vec2::with_y( + let output: Val = bevy::math::Vec2::with_y( _self.into_inner(), y, ) @@ -10659,7 +10413,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "dot", |_self: Val, rhs: Val| { - let output: f32 = ::bevy::math::Vec2::dot( + let output: f32 = bevy::math::Vec2::dot( _self.into_inner(), rhs.into_inner(), ) @@ -10670,7 +10424,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "dot_into_vec", |_self: Val, rhs: Val| { - let output: Val = ::bevy::math::Vec2::dot_into_vec( + let output: Val = bevy::math::Vec2::dot_into_vec( _self.into_inner(), rhs.into_inner(), ) @@ -10681,7 +10435,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "min", |_self: Val, rhs: Val| { - let output: Val = ::bevy::math::Vec2::min( + let output: Val = bevy::math::Vec2::min( _self.into_inner(), rhs.into_inner(), ) @@ -10692,7 +10446,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "max", |_self: Val, rhs: Val| { - let output: Val = ::bevy::math::Vec2::max( + let output: Val = bevy::math::Vec2::max( _self.into_inner(), rhs.into_inner(), ) @@ -10707,7 +10461,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { min: Val, max: Val| { - let output: Val = ::bevy::math::Vec2::clamp( + let output: Val = bevy::math::Vec2::clamp( _self.into_inner(), min.into_inner(), max.into_inner(), @@ -10719,7 +10473,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "min_element", |_self: Val| { - let output: f32 = ::bevy::math::Vec2::min_element(_self.into_inner()) + let output: f32 = bevy::math::Vec2::min_element(_self.into_inner()) .into(); output }, @@ -10727,7 +10481,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "max_element", |_self: Val| { - let output: f32 = ::bevy::math::Vec2::max_element(_self.into_inner()) + let output: f32 = bevy::math::Vec2::max_element(_self.into_inner()) .into(); output }, @@ -10735,7 +10489,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "element_sum", |_self: Val| { - let output: f32 = ::bevy::math::Vec2::element_sum(_self.into_inner()) + let output: f32 = bevy::math::Vec2::element_sum(_self.into_inner()) .into(); output }, @@ -10743,7 +10497,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "element_product", |_self: Val| { - let output: f32 = ::bevy::math::Vec2::element_product( + let output: f32 = bevy::math::Vec2::element_product( _self.into_inner(), ) .into(); @@ -10753,7 +10507,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "cmpeq", |_self: Val, rhs: Val| { - let output: Val = ::bevy::math::Vec2::cmpeq( + let output: Val = bevy::math::Vec2::cmpeq( _self.into_inner(), rhs.into_inner(), ) @@ -10764,7 +10518,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "cmpne", |_self: Val, rhs: Val| { - let output: Val = ::bevy::math::Vec2::cmpne( + let output: Val = bevy::math::Vec2::cmpne( _self.into_inner(), rhs.into_inner(), ) @@ -10775,7 +10529,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "cmpge", |_self: Val, rhs: Val| { - let output: Val = ::bevy::math::Vec2::cmpge( + let output: Val = bevy::math::Vec2::cmpge( _self.into_inner(), rhs.into_inner(), ) @@ -10786,7 +10540,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "cmpgt", |_self: Val, rhs: Val| { - let output: Val = ::bevy::math::Vec2::cmpgt( + let output: Val = bevy::math::Vec2::cmpgt( _self.into_inner(), rhs.into_inner(), ) @@ -10797,7 +10551,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "cmple", |_self: Val, rhs: Val| { - let output: Val = ::bevy::math::Vec2::cmple( + let output: Val = bevy::math::Vec2::cmple( _self.into_inner(), rhs.into_inner(), ) @@ -10808,7 +10562,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "cmplt", |_self: Val, rhs: Val| { - let output: Val = ::bevy::math::Vec2::cmplt( + let output: Val = bevy::math::Vec2::cmplt( _self.into_inner(), rhs.into_inner(), ) @@ -10819,7 +10573,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "abs", |_self: Val| { - let output: Val = ::bevy::math::Vec2::abs( + let output: Val = bevy::math::Vec2::abs( _self.into_inner(), ) .into(); @@ -10829,7 +10583,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "signum", |_self: Val| { - let output: Val = ::bevy::math::Vec2::signum( + let output: Val = bevy::math::Vec2::signum( _self.into_inner(), ) .into(); @@ -10839,7 +10593,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "copysign", |_self: Val, rhs: Val| { - let output: Val = ::bevy::math::Vec2::copysign( + let output: Val = bevy::math::Vec2::copysign( _self.into_inner(), rhs.into_inner(), ) @@ -10850,7 +10604,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "is_negative_bitmask", |_self: Val| { - let output: u32 = ::bevy::math::Vec2::is_negative_bitmask( + let output: u32 = bevy::math::Vec2::is_negative_bitmask( _self.into_inner(), ) .into(); @@ -10860,7 +10614,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "is_finite", |_self: Val| { - let output: bool = ::bevy::math::Vec2::is_finite(_self.into_inner()) + let output: bool = bevy::math::Vec2::is_finite(_self.into_inner()) .into(); output }, @@ -10868,7 +10622,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "is_finite_mask", |_self: Val| { - let output: Val = ::bevy::math::Vec2::is_finite_mask( + let output: Val = bevy::math::Vec2::is_finite_mask( _self.into_inner(), ) .into(); @@ -10878,7 +10632,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "is_nan", |_self: Val| { - let output: bool = ::bevy::math::Vec2::is_nan(_self.into_inner()) + let output: bool = bevy::math::Vec2::is_nan(_self.into_inner()) .into(); output }, @@ -10886,7 +10640,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "is_nan_mask", |_self: Val| { - let output: Val = ::bevy::math::Vec2::is_nan_mask( + let output: Val = bevy::math::Vec2::is_nan_mask( _self.into_inner(), ) .into(); @@ -10896,7 +10650,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "length", |_self: Val| { - let output: f32 = ::bevy::math::Vec2::length(_self.into_inner()) + let output: f32 = bevy::math::Vec2::length(_self.into_inner()) .into(); output }, @@ -10904,7 +10658,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "length_squared", |_self: Val| { - let output: f32 = ::bevy::math::Vec2::length_squared( + let output: f32 = bevy::math::Vec2::length_squared( _self.into_inner(), ) .into(); @@ -10914,9 +10668,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "length_recip", |_self: Val| { - let output: f32 = ::bevy::math::Vec2::length_recip( - _self.into_inner(), - ) + let output: f32 = bevy::math::Vec2::length_recip(_self.into_inner()) .into(); output }, @@ -10924,7 +10676,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "distance", |_self: Val, rhs: Val| { - let output: f32 = ::bevy::math::Vec2::distance( + let output: f32 = bevy::math::Vec2::distance( _self.into_inner(), rhs.into_inner(), ) @@ -10935,7 +10687,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "distance_squared", |_self: Val, rhs: Val| { - let output: f32 = ::bevy::math::Vec2::distance_squared( + let output: f32 = bevy::math::Vec2::distance_squared( _self.into_inner(), rhs.into_inner(), ) @@ -10946,7 +10698,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "div_euclid", |_self: Val, rhs: Val| { - let output: Val = ::bevy::math::Vec2::div_euclid( + let output: Val = bevy::math::Vec2::div_euclid( _self.into_inner(), rhs.into_inner(), ) @@ -10957,7 +10709,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "rem_euclid", |_self: Val, rhs: Val| { - let output: Val = ::bevy::math::Vec2::rem_euclid( + let output: Val = bevy::math::Vec2::rem_euclid( _self.into_inner(), rhs.into_inner(), ) @@ -10968,7 +10720,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "normalize", |_self: Val| { - let output: Val = ::bevy::math::Vec2::normalize( + let output: Val = bevy::math::Vec2::normalize( _self.into_inner(), ) .into(); @@ -10978,7 +10730,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "normalize_or", |_self: Val, fallback: Val| { - let output: Val = ::bevy::math::Vec2::normalize_or( + let output: Val = bevy::math::Vec2::normalize_or( _self.into_inner(), fallback.into_inner(), ) @@ -10989,7 +10741,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "normalize_or_zero", |_self: Val| { - let output: Val = ::bevy::math::Vec2::normalize_or_zero( + let output: Val = bevy::math::Vec2::normalize_or_zero( _self.into_inner(), ) .into(); @@ -10999,7 +10751,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "is_normalized", |_self: Val| { - let output: bool = ::bevy::math::Vec2::is_normalized( + let output: bool = bevy::math::Vec2::is_normalized( _self.into_inner(), ) .into(); @@ -11009,7 +10761,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "project_onto", |_self: Val, rhs: Val| { - let output: Val = ::bevy::math::Vec2::project_onto( + let output: Val = bevy::math::Vec2::project_onto( _self.into_inner(), rhs.into_inner(), ) @@ -11020,7 +10772,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "reject_from", |_self: Val, rhs: Val| { - let output: Val = ::bevy::math::Vec2::reject_from( + let output: Val = bevy::math::Vec2::reject_from( _self.into_inner(), rhs.into_inner(), ) @@ -11031,7 +10783,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "project_onto_normalized", |_self: Val, rhs: Val| { - let output: Val = ::bevy::math::Vec2::project_onto_normalized( + let output: Val = bevy::math::Vec2::project_onto_normalized( _self.into_inner(), rhs.into_inner(), ) @@ -11042,7 +10794,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "reject_from_normalized", |_self: Val, rhs: Val| { - let output: Val = ::bevy::math::Vec2::reject_from_normalized( + let output: Val = bevy::math::Vec2::reject_from_normalized( _self.into_inner(), rhs.into_inner(), ) @@ -11053,7 +10805,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "round", |_self: Val| { - let output: Val = ::bevy::math::Vec2::round( + let output: Val = bevy::math::Vec2::round( _self.into_inner(), ) .into(); @@ -11063,7 +10815,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "floor", |_self: Val| { - let output: Val = ::bevy::math::Vec2::floor( + let output: Val = bevy::math::Vec2::floor( _self.into_inner(), ) .into(); @@ -11073,7 +10825,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "ceil", |_self: Val| { - let output: Val = ::bevy::math::Vec2::ceil( + let output: Val = bevy::math::Vec2::ceil( _self.into_inner(), ) .into(); @@ -11083,7 +10835,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "trunc", |_self: Val| { - let output: Val = ::bevy::math::Vec2::trunc( + let output: Val = bevy::math::Vec2::trunc( _self.into_inner(), ) .into(); @@ -11093,7 +10845,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "fract", |_self: Val| { - let output: Val = ::bevy::math::Vec2::fract( + let output: Val = bevy::math::Vec2::fract( _self.into_inner(), ) .into(); @@ -11103,7 +10855,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "fract_gl", |_self: Val| { - let output: Val = ::bevy::math::Vec2::fract_gl( + let output: Val = bevy::math::Vec2::fract_gl( _self.into_inner(), ) .into(); @@ -11113,7 +10865,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "exp", |_self: Val| { - let output: Val = ::bevy::math::Vec2::exp( + let output: Val = bevy::math::Vec2::exp( _self.into_inner(), ) .into(); @@ -11123,7 +10875,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "powf", |_self: Val, n: f32| { - let output: Val = ::bevy::math::Vec2::powf( + let output: Val = bevy::math::Vec2::powf( _self.into_inner(), n, ) @@ -11134,7 +10886,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "recip", |_self: Val| { - let output: Val = ::bevy::math::Vec2::recip( + let output: Val = bevy::math::Vec2::recip( _self.into_inner(), ) .into(); @@ -11144,7 +10896,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "lerp", |_self: Val, rhs: Val, s: f32| { - let output: Val = ::bevy::math::Vec2::lerp( + let output: Val = bevy::math::Vec2::lerp( _self.into_inner(), rhs.into_inner(), s, @@ -11156,7 +10908,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "move_towards", |_self: Ref, rhs: Val, d: f32| { - let output: Val = ::bevy::math::Vec2::move_towards( + let output: Val = bevy::math::Vec2::move_towards( &_self, rhs.into_inner(), d, @@ -11168,7 +10920,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "midpoint", |_self: Val, rhs: Val| { - let output: Val = ::bevy::math::Vec2::midpoint( + let output: Val = bevy::math::Vec2::midpoint( _self.into_inner(), rhs.into_inner(), ) @@ -11183,7 +10935,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { rhs: Val, max_abs_diff: f32| { - let output: bool = ::bevy::math::Vec2::abs_diff_eq( + let output: bool = bevy::math::Vec2::abs_diff_eq( _self.into_inner(), rhs.into_inner(), max_abs_diff, @@ -11195,7 +10947,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "clamp_length", |_self: Val, min: f32, max: f32| { - let output: Val = ::bevy::math::Vec2::clamp_length( + let output: Val = bevy::math::Vec2::clamp_length( _self.into_inner(), min, max, @@ -11207,7 +10959,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "clamp_length_max", |_self: Val, max: f32| { - let output: Val = ::bevy::math::Vec2::clamp_length_max( + let output: Val = bevy::math::Vec2::clamp_length_max( _self.into_inner(), max, ) @@ -11218,7 +10970,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "clamp_length_min", |_self: Val, min: f32| { - let output: Val = ::bevy::math::Vec2::clamp_length_min( + let output: Val = bevy::math::Vec2::clamp_length_min( _self.into_inner(), min, ) @@ -11233,7 +10985,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { a: Val, b: Val| { - let output: Val = ::bevy::math::Vec2::mul_add( + let output: Val = bevy::math::Vec2::mul_add( _self.into_inner(), a.into_inner(), b.into_inner(), @@ -11245,7 +10997,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "reflect", |_self: Val, normal: Val| { - let output: Val = ::bevy::math::Vec2::reflect( + let output: Val = bevy::math::Vec2::reflect( _self.into_inner(), normal.into_inner(), ) @@ -11256,7 +11008,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "refract", |_self: Val, normal: Val, eta: f32| { - let output: Val = ::bevy::math::Vec2::refract( + let output: Val = bevy::math::Vec2::refract( _self.into_inner(), normal.into_inner(), eta, @@ -11268,7 +11020,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "from_angle", |angle: f32| { - let output: Val = ::bevy::math::Vec2::from_angle( + let output: Val = bevy::math::Vec2::from_angle( angle, ) .into(); @@ -11278,7 +11030,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "to_angle", |_self: Val| { - let output: f32 = ::bevy::math::Vec2::to_angle(_self.into_inner()) + let output: f32 = bevy::math::Vec2::to_angle(_self.into_inner()) .into(); output }, @@ -11286,7 +11038,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "angle_between", |_self: Val, rhs: Val| { - let output: f32 = ::bevy::math::Vec2::angle_between( + let output: f32 = bevy::math::Vec2::angle_between( _self.into_inner(), rhs.into_inner(), ) @@ -11297,7 +11049,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "angle_to", |_self: Val, rhs: Val| { - let output: f32 = ::bevy::math::Vec2::angle_to( + let output: f32 = bevy::math::Vec2::angle_to( _self.into_inner(), rhs.into_inner(), ) @@ -11308,7 +11060,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "perp", |_self: Val| { - let output: Val = ::bevy::math::Vec2::perp( + let output: Val = bevy::math::Vec2::perp( _self.into_inner(), ) .into(); @@ -11318,7 +11070,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "perp_dot", |_self: Val, rhs: Val| { - let output: f32 = ::bevy::math::Vec2::perp_dot( + let output: f32 = bevy::math::Vec2::perp_dot( _self.into_inner(), rhs.into_inner(), ) @@ -11329,7 +11081,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "rotate", |_self: Val, rhs: Val| { - let output: Val = ::bevy::math::Vec2::rotate( + let output: Val = bevy::math::Vec2::rotate( _self.into_inner(), rhs.into_inner(), ) @@ -11344,7 +11096,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { rhs: Val, max_angle: f32| { - let output: Val = ::bevy::math::Vec2::rotate_towards( + let output: Val = bevy::math::Vec2::rotate_towards( &_self, rhs.into_inner(), max_angle, @@ -11356,7 +11108,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "as_dvec2", |_self: Ref| { - let output: Val = ::bevy::math::Vec2::as_dvec2( + let output: Val = bevy::math::Vec2::as_dvec2( &_self, ) .into(); @@ -11366,7 +11118,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "as_ivec2", |_self: Ref| { - let output: Val = ::bevy::math::Vec2::as_ivec2( + let output: Val = bevy::math::Vec2::as_ivec2( &_self, ) .into(); @@ -11376,7 +11128,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "as_uvec2", |_self: Ref| { - let output: Val = ::bevy::math::Vec2::as_uvec2( + let output: Val = bevy::math::Vec2::as_uvec2( &_self, ) .into(); @@ -11386,7 +11138,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "as_i64vec2", |_self: Ref| { - let output: Val = ::bevy::math::Vec2::as_i64vec2( + let output: Val = bevy::math::Vec2::as_i64vec2( &_self, ) .into(); @@ -11396,7 +11148,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "as_u64vec2", |_self: Ref| { - let output: Val = ::bevy::math::Vec2::as_u64vec2( + let output: Val = bevy::math::Vec2::as_u64vec2( &_self, ) .into(); @@ -11406,10 +11158,9 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "sub", |_self: Val, rhs: Val| { - let output: Val = ::bevy::math::Vec2::sub( - _self.into_inner(), - rhs.into_inner(), - ) + let output: Val = >::sub(_self.into_inner(), rhs.into_inner()) .into(); output }, @@ -11417,10 +11168,9 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "mul", |_self: Val, rhs: Val| { - let output: Val = ::bevy::math::Vec2::mul( - _self.into_inner(), - rhs.into_inner(), - ) + let output: Val = >::mul(_self.into_inner(), rhs.into_inner()) .into(); output }, @@ -11428,10 +11178,9 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "rem", |_self: Val, rhs: f32| { - let output: Val = ::bevy::math::Vec2::rem( - _self.into_inner(), - rhs, - ) + let output: Val = >::rem(_self.into_inner(), rhs) .into(); output }, @@ -11439,10 +11188,9 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "add", |_self: Val, rhs: Ref| { - let output: Val = ::bevy::math::Vec2::add( - _self.into_inner(), - &rhs, - ) + let output: Val = >::add(_self.into_inner(), &rhs) .into(); output }, @@ -11450,10 +11198,9 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "div", |_self: Val, rhs: Val| { - let output: Val = ::bevy::math::Vec2::div( - _self.into_inner(), - rhs.into_inner(), - ) + let output: Val = >::div(_self.into_inner(), rhs.into_inner()) .into(); output }, @@ -11461,10 +11208,9 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "add", |_self: Val, rhs: f32| { - let output: Val = ::bevy::math::Vec2::add( - _self.into_inner(), - rhs, - ) + let output: Val = >::add(_self.into_inner(), rhs) .into(); output }, @@ -11472,10 +11218,9 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "mul", |_self: Val, rhs: f32| { - let output: Val = ::bevy::math::Vec2::mul( - _self.into_inner(), - rhs, - ) + let output: Val = >::mul(_self.into_inner(), rhs) .into(); output }, @@ -11483,10 +11228,9 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "rem", |_self: Val, rhs: Val| { - let output: Val = ::bevy::math::Vec2::rem( - _self.into_inner(), - rhs.into_inner(), - ) + let output: Val = >::rem(_self.into_inner(), rhs.into_inner()) .into(); output }, @@ -11494,10 +11238,9 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "sub", |_self: Val, rhs: f32| { - let output: Val = ::bevy::math::Vec2::sub( - _self.into_inner(), - rhs, - ) + let output: Val = >::sub(_self.into_inner(), rhs) .into(); output }, @@ -11505,10 +11248,9 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "rem", |_self: Val, rhs: Ref| { - let output: Val = ::bevy::math::Vec2::rem( - _self.into_inner(), - &rhs, - ) + let output: Val = >::rem(_self.into_inner(), &rhs) .into(); output }, @@ -11517,10 +11259,9 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "add", |_self: Val, rhs: Val| { - let output: Val = ::bevy::math::Vec3A::add( - _self.into_inner(), - rhs.into_inner(), - ) + let output: Val = >::add(_self.into_inner(), rhs.into_inner()) .into(); output }, @@ -11528,17 +11269,19 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "eq", |_self: Ref, rhs: Ref| { - let output: bool = ::bevy::math::Vec3A::eq(&_self, &rhs).into(); + let output: bool = >::eq(&_self, &rhs) + .into(); output }, ) .overwrite_script_function( "sub", |_self: Val, rhs: f32| { - let output: Val = ::bevy::math::Vec3A::sub( - _self.into_inner(), - rhs, - ) + let output: Val = >::sub(_self.into_inner(), rhs) .into(); output }, @@ -11546,7 +11289,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "clone", |_self: Ref| { - let output: Val = ::bevy::math::Vec3A::clone( + let output: Val = ::clone( &_self, ) .into(); @@ -11556,10 +11299,9 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "rem", |_self: Val, rhs: f32| { - let output: Val = ::bevy::math::Vec3A::rem( - _self.into_inner(), - rhs, - ) + let output: Val = >::rem(_self.into_inner(), rhs) .into(); output }, @@ -11567,10 +11309,9 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "sub", |_self: Val, rhs: Val| { - let output: Val = ::bevy::math::Vec3A::sub( - _self.into_inner(), - rhs.into_inner(), - ) + let output: Val = >::sub(_self.into_inner(), rhs.into_inner()) .into(); output }, @@ -11578,10 +11319,9 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "div", |_self: Val, rhs: Val| { - let output: Val = ::bevy::math::Vec3A::div( - _self.into_inner(), - rhs.into_inner(), - ) + let output: Val = >::div(_self.into_inner(), rhs.into_inner()) .into(); output }, @@ -11589,7 +11329,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "neg", |_self: Val| { - let output: Val = ::bevy::math::Vec3A::neg( + let output: Val = ::neg( _self.into_inner(), ) .into(); @@ -11599,11 +11339,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "new", |x: f32, y: f32, z: f32| { - let output: Val = ::bevy::math::Vec3A::new( - x, - y, - z, - ) + let output: Val = bevy::math::Vec3A::new(x, y, z) .into(); output }, @@ -11611,7 +11347,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "splat", |v: f32| { - let output: Val = ::bevy::math::Vec3A::splat(v) + let output: Val = bevy::math::Vec3A::splat(v) .into(); output }, @@ -11623,7 +11359,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { if_true: Val, if_false: Val| { - let output: Val = ::bevy::math::Vec3A::select( + let output: Val = bevy::math::Vec3A::select( mask.into_inner(), if_true.into_inner(), if_false.into_inner(), @@ -11635,9 +11371,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "from_array", |a: [f32; 3]| { - let output: Val = ::bevy::math::Vec3A::from_array( - a, - ) + let output: Val = bevy::math::Vec3A::from_array(a) .into(); output }, @@ -11645,14 +11379,14 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "to_array", |_self: Ref| { - let output: [f32; 3] = ::bevy::math::Vec3A::to_array(&_self).into(); + let output: [f32; 3] = bevy::math::Vec3A::to_array(&_self).into(); output }, ) .overwrite_script_function( "from_vec4", |v: Val| { - let output: Val = ::bevy::math::Vec3A::from_vec4( + let output: Val = bevy::math::Vec3A::from_vec4( v.into_inner(), ) .into(); @@ -11662,7 +11396,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "extend", |_self: Val, w: f32| { - let output: Val = ::bevy::math::Vec3A::extend( + let output: Val = bevy::math::Vec3A::extend( _self.into_inner(), w, ) @@ -11673,7 +11407,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "truncate", |_self: Val| { - let output: Val = ::bevy::math::Vec3A::truncate( + let output: Val = bevy::math::Vec3A::truncate( _self.into_inner(), ) .into(); @@ -11683,7 +11417,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "with_x", |_self: Val, x: f32| { - let output: Val = ::bevy::math::Vec3A::with_x( + let output: Val = bevy::math::Vec3A::with_x( _self.into_inner(), x, ) @@ -11694,7 +11428,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "with_y", |_self: Val, y: f32| { - let output: Val = ::bevy::math::Vec3A::with_y( + let output: Val = bevy::math::Vec3A::with_y( _self.into_inner(), y, ) @@ -11705,7 +11439,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "with_z", |_self: Val, z: f32| { - let output: Val = ::bevy::math::Vec3A::with_z( + let output: Val = bevy::math::Vec3A::with_z( _self.into_inner(), z, ) @@ -11716,7 +11450,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "dot", |_self: Val, rhs: Val| { - let output: f32 = ::bevy::math::Vec3A::dot( + let output: f32 = bevy::math::Vec3A::dot( _self.into_inner(), rhs.into_inner(), ) @@ -11727,7 +11461,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "dot_into_vec", |_self: Val, rhs: Val| { - let output: Val = ::bevy::math::Vec3A::dot_into_vec( + let output: Val = bevy::math::Vec3A::dot_into_vec( _self.into_inner(), rhs.into_inner(), ) @@ -11738,7 +11472,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "cross", |_self: Val, rhs: Val| { - let output: Val = ::bevy::math::Vec3A::cross( + let output: Val = bevy::math::Vec3A::cross( _self.into_inner(), rhs.into_inner(), ) @@ -11749,7 +11483,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "min", |_self: Val, rhs: Val| { - let output: Val = ::bevy::math::Vec3A::min( + let output: Val = bevy::math::Vec3A::min( _self.into_inner(), rhs.into_inner(), ) @@ -11760,7 +11494,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "max", |_self: Val, rhs: Val| { - let output: Val = ::bevy::math::Vec3A::max( + let output: Val = bevy::math::Vec3A::max( _self.into_inner(), rhs.into_inner(), ) @@ -11775,7 +11509,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { min: Val, max: Val| { - let output: Val = ::bevy::math::Vec3A::clamp( + let output: Val = bevy::math::Vec3A::clamp( _self.into_inner(), min.into_inner(), max.into_inner(), @@ -11787,9 +11521,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "min_element", |_self: Val| { - let output: f32 = ::bevy::math::Vec3A::min_element( - _self.into_inner(), - ) + let output: f32 = bevy::math::Vec3A::min_element(_self.into_inner()) .into(); output }, @@ -11797,9 +11529,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "max_element", |_self: Val| { - let output: f32 = ::bevy::math::Vec3A::max_element( - _self.into_inner(), - ) + let output: f32 = bevy::math::Vec3A::max_element(_self.into_inner()) .into(); output }, @@ -11807,9 +11537,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "element_sum", |_self: Val| { - let output: f32 = ::bevy::math::Vec3A::element_sum( - _self.into_inner(), - ) + let output: f32 = bevy::math::Vec3A::element_sum(_self.into_inner()) .into(); output }, @@ -11817,7 +11545,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "element_product", |_self: Val| { - let output: f32 = ::bevy::math::Vec3A::element_product( + let output: f32 = bevy::math::Vec3A::element_product( _self.into_inner(), ) .into(); @@ -11827,7 +11555,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "cmpeq", |_self: Val, rhs: Val| { - let output: Val = ::bevy::math::Vec3A::cmpeq( + let output: Val = bevy::math::Vec3A::cmpeq( _self.into_inner(), rhs.into_inner(), ) @@ -11838,7 +11566,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "cmpne", |_self: Val, rhs: Val| { - let output: Val = ::bevy::math::Vec3A::cmpne( + let output: Val = bevy::math::Vec3A::cmpne( _self.into_inner(), rhs.into_inner(), ) @@ -11849,7 +11577,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "cmpge", |_self: Val, rhs: Val| { - let output: Val = ::bevy::math::Vec3A::cmpge( + let output: Val = bevy::math::Vec3A::cmpge( _self.into_inner(), rhs.into_inner(), ) @@ -11860,7 +11588,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "cmpgt", |_self: Val, rhs: Val| { - let output: Val = ::bevy::math::Vec3A::cmpgt( + let output: Val = bevy::math::Vec3A::cmpgt( _self.into_inner(), rhs.into_inner(), ) @@ -11871,7 +11599,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "cmple", |_self: Val, rhs: Val| { - let output: Val = ::bevy::math::Vec3A::cmple( + let output: Val = bevy::math::Vec3A::cmple( _self.into_inner(), rhs.into_inner(), ) @@ -11882,7 +11610,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "cmplt", |_self: Val, rhs: Val| { - let output: Val = ::bevy::math::Vec3A::cmplt( + let output: Val = bevy::math::Vec3A::cmplt( _self.into_inner(), rhs.into_inner(), ) @@ -11893,7 +11621,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "abs", |_self: Val| { - let output: Val = ::bevy::math::Vec3A::abs( + let output: Val = bevy::math::Vec3A::abs( _self.into_inner(), ) .into(); @@ -11903,7 +11631,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "signum", |_self: Val| { - let output: Val = ::bevy::math::Vec3A::signum( + let output: Val = bevy::math::Vec3A::signum( _self.into_inner(), ) .into(); @@ -11913,7 +11641,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "copysign", |_self: Val, rhs: Val| { - let output: Val = ::bevy::math::Vec3A::copysign( + let output: Val = bevy::math::Vec3A::copysign( _self.into_inner(), rhs.into_inner(), ) @@ -11924,7 +11652,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "is_negative_bitmask", |_self: Val| { - let output: u32 = ::bevy::math::Vec3A::is_negative_bitmask( + let output: u32 = bevy::math::Vec3A::is_negative_bitmask( _self.into_inner(), ) .into(); @@ -11934,7 +11662,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "is_finite", |_self: Val| { - let output: bool = ::bevy::math::Vec3A::is_finite(_self.into_inner()) + let output: bool = bevy::math::Vec3A::is_finite(_self.into_inner()) .into(); output }, @@ -11942,7 +11670,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "is_finite_mask", |_self: Val| { - let output: Val = ::bevy::math::Vec3A::is_finite_mask( + let output: Val = bevy::math::Vec3A::is_finite_mask( _self.into_inner(), ) .into(); @@ -11952,7 +11680,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "is_nan", |_self: Val| { - let output: bool = ::bevy::math::Vec3A::is_nan(_self.into_inner()) + let output: bool = bevy::math::Vec3A::is_nan(_self.into_inner()) .into(); output }, @@ -11960,7 +11688,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "is_nan_mask", |_self: Val| { - let output: Val = ::bevy::math::Vec3A::is_nan_mask( + let output: Val = bevy::math::Vec3A::is_nan_mask( _self.into_inner(), ) .into(); @@ -11970,7 +11698,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "length", |_self: Val| { - let output: f32 = ::bevy::math::Vec3A::length(_self.into_inner()) + let output: f32 = bevy::math::Vec3A::length(_self.into_inner()) .into(); output }, @@ -11978,7 +11706,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "length_squared", |_self: Val| { - let output: f32 = ::bevy::math::Vec3A::length_squared( + let output: f32 = bevy::math::Vec3A::length_squared( _self.into_inner(), ) .into(); @@ -11988,9 +11716,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "length_recip", |_self: Val| { - let output: f32 = ::bevy::math::Vec3A::length_recip( - _self.into_inner(), - ) + let output: f32 = bevy::math::Vec3A::length_recip(_self.into_inner()) .into(); output }, @@ -11998,7 +11724,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "distance", |_self: Val, rhs: Val| { - let output: f32 = ::bevy::math::Vec3A::distance( + let output: f32 = bevy::math::Vec3A::distance( _self.into_inner(), rhs.into_inner(), ) @@ -12009,7 +11735,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "distance_squared", |_self: Val, rhs: Val| { - let output: f32 = ::bevy::math::Vec3A::distance_squared( + let output: f32 = bevy::math::Vec3A::distance_squared( _self.into_inner(), rhs.into_inner(), ) @@ -12020,7 +11746,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "div_euclid", |_self: Val, rhs: Val| { - let output: Val = ::bevy::math::Vec3A::div_euclid( + let output: Val = bevy::math::Vec3A::div_euclid( _self.into_inner(), rhs.into_inner(), ) @@ -12031,7 +11757,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "rem_euclid", |_self: Val, rhs: Val| { - let output: Val = ::bevy::math::Vec3A::rem_euclid( + let output: Val = bevy::math::Vec3A::rem_euclid( _self.into_inner(), rhs.into_inner(), ) @@ -12042,7 +11768,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "normalize", |_self: Val| { - let output: Val = ::bevy::math::Vec3A::normalize( + let output: Val = bevy::math::Vec3A::normalize( _self.into_inner(), ) .into(); @@ -12052,7 +11778,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "normalize_or", |_self: Val, fallback: Val| { - let output: Val = ::bevy::math::Vec3A::normalize_or( + let output: Val = bevy::math::Vec3A::normalize_or( _self.into_inner(), fallback.into_inner(), ) @@ -12063,7 +11789,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "normalize_or_zero", |_self: Val| { - let output: Val = ::bevy::math::Vec3A::normalize_or_zero( + let output: Val = bevy::math::Vec3A::normalize_or_zero( _self.into_inner(), ) .into(); @@ -12073,7 +11799,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "is_normalized", |_self: Val| { - let output: bool = ::bevy::math::Vec3A::is_normalized( + let output: bool = bevy::math::Vec3A::is_normalized( _self.into_inner(), ) .into(); @@ -12083,7 +11809,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "project_onto", |_self: Val, rhs: Val| { - let output: Val = ::bevy::math::Vec3A::project_onto( + let output: Val = bevy::math::Vec3A::project_onto( _self.into_inner(), rhs.into_inner(), ) @@ -12094,7 +11820,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "reject_from", |_self: Val, rhs: Val| { - let output: Val = ::bevy::math::Vec3A::reject_from( + let output: Val = bevy::math::Vec3A::reject_from( _self.into_inner(), rhs.into_inner(), ) @@ -12105,7 +11831,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "project_onto_normalized", |_self: Val, rhs: Val| { - let output: Val = ::bevy::math::Vec3A::project_onto_normalized( + let output: Val = bevy::math::Vec3A::project_onto_normalized( _self.into_inner(), rhs.into_inner(), ) @@ -12116,7 +11842,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "reject_from_normalized", |_self: Val, rhs: Val| { - let output: Val = ::bevy::math::Vec3A::reject_from_normalized( + let output: Val = bevy::math::Vec3A::reject_from_normalized( _self.into_inner(), rhs.into_inner(), ) @@ -12127,7 +11853,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "round", |_self: Val| { - let output: Val = ::bevy::math::Vec3A::round( + let output: Val = bevy::math::Vec3A::round( _self.into_inner(), ) .into(); @@ -12137,7 +11863,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "floor", |_self: Val| { - let output: Val = ::bevy::math::Vec3A::floor( + let output: Val = bevy::math::Vec3A::floor( _self.into_inner(), ) .into(); @@ -12147,7 +11873,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "ceil", |_self: Val| { - let output: Val = ::bevy::math::Vec3A::ceil( + let output: Val = bevy::math::Vec3A::ceil( _self.into_inner(), ) .into(); @@ -12157,7 +11883,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "trunc", |_self: Val| { - let output: Val = ::bevy::math::Vec3A::trunc( + let output: Val = bevy::math::Vec3A::trunc( _self.into_inner(), ) .into(); @@ -12167,7 +11893,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "fract", |_self: Val| { - let output: Val = ::bevy::math::Vec3A::fract( + let output: Val = bevy::math::Vec3A::fract( _self.into_inner(), ) .into(); @@ -12177,7 +11903,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "fract_gl", |_self: Val| { - let output: Val = ::bevy::math::Vec3A::fract_gl( + let output: Val = bevy::math::Vec3A::fract_gl( _self.into_inner(), ) .into(); @@ -12187,7 +11913,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "exp", |_self: Val| { - let output: Val = ::bevy::math::Vec3A::exp( + let output: Val = bevy::math::Vec3A::exp( _self.into_inner(), ) .into(); @@ -12197,7 +11923,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "powf", |_self: Val, n: f32| { - let output: Val = ::bevy::math::Vec3A::powf( + let output: Val = bevy::math::Vec3A::powf( _self.into_inner(), n, ) @@ -12208,7 +11934,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "recip", |_self: Val| { - let output: Val = ::bevy::math::Vec3A::recip( + let output: Val = bevy::math::Vec3A::recip( _self.into_inner(), ) .into(); @@ -12218,7 +11944,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "lerp", |_self: Val, rhs: Val, s: f32| { - let output: Val = ::bevy::math::Vec3A::lerp( + let output: Val = bevy::math::Vec3A::lerp( _self.into_inner(), rhs.into_inner(), s, @@ -12230,7 +11956,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "move_towards", |_self: Ref, rhs: Val, d: f32| { - let output: Val = ::bevy::math::Vec3A::move_towards( + let output: Val = bevy::math::Vec3A::move_towards( &_self, rhs.into_inner(), d, @@ -12242,7 +11968,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "midpoint", |_self: Val, rhs: Val| { - let output: Val = ::bevy::math::Vec3A::midpoint( + let output: Val = bevy::math::Vec3A::midpoint( _self.into_inner(), rhs.into_inner(), ) @@ -12257,7 +11983,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { rhs: Val, max_abs_diff: f32| { - let output: bool = ::bevy::math::Vec3A::abs_diff_eq( + let output: bool = bevy::math::Vec3A::abs_diff_eq( _self.into_inner(), rhs.into_inner(), max_abs_diff, @@ -12269,7 +11995,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "clamp_length", |_self: Val, min: f32, max: f32| { - let output: Val = ::bevy::math::Vec3A::clamp_length( + let output: Val = bevy::math::Vec3A::clamp_length( _self.into_inner(), min, max, @@ -12281,7 +12007,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "clamp_length_max", |_self: Val, max: f32| { - let output: Val = ::bevy::math::Vec3A::clamp_length_max( + let output: Val = bevy::math::Vec3A::clamp_length_max( _self.into_inner(), max, ) @@ -12292,7 +12018,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "clamp_length_min", |_self: Val, min: f32| { - let output: Val = ::bevy::math::Vec3A::clamp_length_min( + let output: Val = bevy::math::Vec3A::clamp_length_min( _self.into_inner(), min, ) @@ -12307,7 +12033,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { a: Val, b: Val| { - let output: Val = ::bevy::math::Vec3A::mul_add( + let output: Val = bevy::math::Vec3A::mul_add( _self.into_inner(), a.into_inner(), b.into_inner(), @@ -12319,7 +12045,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "reflect", |_self: Val, normal: Val| { - let output: Val = ::bevy::math::Vec3A::reflect( + let output: Val = bevy::math::Vec3A::reflect( _self.into_inner(), normal.into_inner(), ) @@ -12334,7 +12060,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { normal: Val, eta: f32| { - let output: Val = ::bevy::math::Vec3A::refract( + let output: Val = bevy::math::Vec3A::refract( _self.into_inner(), normal.into_inner(), eta, @@ -12346,7 +12072,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "angle_between", |_self: Val, rhs: Val| { - let output: f32 = ::bevy::math::Vec3A::angle_between( + let output: f32 = bevy::math::Vec3A::angle_between( _self.into_inner(), rhs.into_inner(), ) @@ -12357,7 +12083,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "any_orthogonal_vector", |_self: Ref| { - let output: Val = ::bevy::math::Vec3A::any_orthogonal_vector( + let output: Val = bevy::math::Vec3A::any_orthogonal_vector( &_self, ) .into(); @@ -12367,7 +12093,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "any_orthonormal_vector", |_self: Ref| { - let output: Val = ::bevy::math::Vec3A::any_orthonormal_vector( + let output: Val = bevy::math::Vec3A::any_orthonormal_vector( &_self, ) .into(); @@ -12377,7 +12103,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "as_dvec3", |_self: Ref| { - let output: Val = ::bevy::math::Vec3A::as_dvec3( + let output: Val = bevy::math::Vec3A::as_dvec3( &_self, ) .into(); @@ -12387,7 +12113,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "as_ivec3", |_self: Ref| { - let output: Val = ::bevy::math::Vec3A::as_ivec3( + let output: Val = bevy::math::Vec3A::as_ivec3( &_self, ) .into(); @@ -12397,7 +12123,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "as_uvec3", |_self: Ref| { - let output: Val = ::bevy::math::Vec3A::as_uvec3( + let output: Val = bevy::math::Vec3A::as_uvec3( &_self, ) .into(); @@ -12407,7 +12133,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "as_i64vec3", |_self: Ref| { - let output: Val = ::bevy::math::Vec3A::as_i64vec3( + let output: Val = bevy::math::Vec3A::as_i64vec3( &_self, ) .into(); @@ -12417,7 +12143,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "as_u64vec3", |_self: Ref| { - let output: Val = ::bevy::math::Vec3A::as_u64vec3( + let output: Val = bevy::math::Vec3A::as_u64vec3( &_self, ) .into(); @@ -12427,10 +12153,9 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "sub", |_self: Val, rhs: Ref| { - let output: Val = ::bevy::math::Vec3A::sub( - _self.into_inner(), - &rhs, - ) + let output: Val = >::sub(_self.into_inner(), &rhs) .into(); output }, @@ -12438,10 +12163,9 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "mul", |_self: Val, rhs: f32| { - let output: Val = ::bevy::math::Vec3A::mul( - _self.into_inner(), - rhs, - ) + let output: Val = >::mul(_self.into_inner(), rhs) .into(); output }, @@ -12449,10 +12173,9 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "add", |_self: Val, rhs: Ref| { - let output: Val = ::bevy::math::Vec3A::add( - _self.into_inner(), - &rhs, - ) + let output: Val = >::add(_self.into_inner(), &rhs) .into(); output }, @@ -12460,10 +12183,9 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "add", |_self: Val, rhs: f32| { - let output: Val = ::bevy::math::Vec3A::add( - _self.into_inner(), - rhs, - ) + let output: Val = >::add(_self.into_inner(), rhs) .into(); output }, @@ -12471,10 +12193,9 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "mul", |_self: Val, rhs: Val| { - let output: Val = ::bevy::math::Vec3A::mul( - _self.into_inner(), - rhs.into_inner(), - ) + let output: Val = >::mul(_self.into_inner(), rhs.into_inner()) .into(); output }, @@ -12482,10 +12203,9 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "div", |_self: Val, rhs: f32| { - let output: Val = ::bevy::math::Vec3A::div( - _self.into_inner(), - rhs, - ) + let output: Val = >::div(_self.into_inner(), rhs) .into(); output }, @@ -12493,10 +12213,9 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "rem", |_self: Val, rhs: Val| { - let output: Val = ::bevy::math::Vec3A::rem( - _self.into_inner(), - rhs.into_inner(), - ) + let output: Val = >::rem(_self.into_inner(), rhs.into_inner()) .into(); output }, @@ -12504,10 +12223,9 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "rem", |_self: Val, rhs: Ref| { - let output: Val = ::bevy::math::Vec3A::rem( - _self.into_inner(), - &rhs, - ) + let output: Val = >::rem(_self.into_inner(), &rhs) .into(); output }, @@ -12515,10 +12233,9 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "mul", |_self: Val, rhs: Ref| { - let output: Val = ::bevy::math::Vec3A::mul( - _self.into_inner(), - &rhs, - ) + let output: Val = >::mul(_self.into_inner(), &rhs) .into(); output }, @@ -12526,10 +12243,9 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "div", |_self: Val, rhs: Ref| { - let output: Val = ::bevy::math::Vec3A::div( - _self.into_inner(), - &rhs, - ) + let output: Val = >::div(_self.into_inner(), &rhs) .into(); output }, @@ -12538,10 +12254,9 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "rem", |_self: Val, rhs: Ref| { - let output: Val = ::bevy::math::Vec4::rem( - _self.into_inner(), - &rhs, - ) + let output: Val = >::rem(_self.into_inner(), &rhs) .into(); output }, @@ -12549,10 +12264,9 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "mul", |_self: Val, rhs: Ref| { - let output: Val = ::bevy::math::Vec4::mul( - _self.into_inner(), - &rhs, - ) + let output: Val = >::mul(_self.into_inner(), &rhs) .into(); output }, @@ -12560,17 +12274,19 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "eq", |_self: Ref, rhs: Ref| { - let output: bool = ::bevy::math::Vec4::eq(&_self, &rhs).into(); + let output: bool = >::eq(&_self, &rhs) + .into(); output }, ) .overwrite_script_function( "div", |_self: Val, rhs: Val| { - let output: Val = ::bevy::math::Vec4::div( - _self.into_inner(), - rhs.into_inner(), - ) + let output: Val = >::div(_self.into_inner(), rhs.into_inner()) .into(); output }, @@ -12578,10 +12294,9 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "div", |_self: Val, rhs: Ref| { - let output: Val = ::bevy::math::Vec4::div( - _self.into_inner(), - &rhs, - ) + let output: Val = >::div(_self.into_inner(), &rhs) .into(); output }, @@ -12589,7 +12304,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "neg", |_self: Val| { - let output: Val = ::bevy::math::Vec4::neg( + let output: Val = ::neg( _self.into_inner(), ) .into(); @@ -12599,10 +12314,9 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "add", |_self: Val, rhs: Val| { - let output: Val = ::bevy::math::Vec4::add( - _self.into_inner(), - rhs.into_inner(), - ) + let output: Val = >::add(_self.into_inner(), rhs.into_inner()) .into(); output }, @@ -12610,10 +12324,9 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "add", |_self: Val, rhs: Ref| { - let output: Val = ::bevy::math::Vec4::add( - _self.into_inner(), - &rhs, - ) + let output: Val = >::add(_self.into_inner(), &rhs) .into(); output }, @@ -12621,10 +12334,9 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "add", |_self: Val, rhs: f32| { - let output: Val = ::bevy::math::Vec4::add( - _self.into_inner(), - rhs, - ) + let output: Val = >::add(_self.into_inner(), rhs) .into(); output }, @@ -12632,10 +12344,9 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "sub", |_self: Val, rhs: f32| { - let output: Val = ::bevy::math::Vec4::sub( - _self.into_inner(), - rhs, - ) + let output: Val = >::sub(_self.into_inner(), rhs) .into(); output }, @@ -12643,12 +12354,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "new", |x: f32, y: f32, z: f32, w: f32| { - let output: Val = ::bevy::math::Vec4::new( - x, - y, - z, - w, - ) + let output: Val = bevy::math::Vec4::new(x, y, z, w) .into(); output }, @@ -12656,7 +12362,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "splat", |v: f32| { - let output: Val = ::bevy::math::Vec4::splat(v) + let output: Val = bevy::math::Vec4::splat(v) .into(); output }, @@ -12668,7 +12374,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { if_true: Val, if_false: Val| { - let output: Val = ::bevy::math::Vec4::select( + let output: Val = bevy::math::Vec4::select( mask.into_inner(), if_true.into_inner(), if_false.into_inner(), @@ -12680,7 +12386,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "from_array", |a: [f32; 4]| { - let output: Val = ::bevy::math::Vec4::from_array(a) + let output: Val = bevy::math::Vec4::from_array(a) .into(); output }, @@ -12688,14 +12394,14 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "to_array", |_self: Ref| { - let output: [f32; 4] = ::bevy::math::Vec4::to_array(&_self).into(); + let output: [f32; 4] = bevy::math::Vec4::to_array(&_self).into(); output }, ) .overwrite_script_function( "truncate", |_self: Val| { - let output: Val = ::bevy::math::Vec4::truncate( + let output: Val = bevy::math::Vec4::truncate( _self.into_inner(), ) .into(); @@ -12705,7 +12411,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "with_x", |_self: Val, x: f32| { - let output: Val = ::bevy::math::Vec4::with_x( + let output: Val = bevy::math::Vec4::with_x( _self.into_inner(), x, ) @@ -12716,7 +12422,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "with_y", |_self: Val, y: f32| { - let output: Val = ::bevy::math::Vec4::with_y( + let output: Val = bevy::math::Vec4::with_y( _self.into_inner(), y, ) @@ -12727,7 +12433,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "with_z", |_self: Val, z: f32| { - let output: Val = ::bevy::math::Vec4::with_z( + let output: Val = bevy::math::Vec4::with_z( _self.into_inner(), z, ) @@ -12738,7 +12444,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "with_w", |_self: Val, w: f32| { - let output: Val = ::bevy::math::Vec4::with_w( + let output: Val = bevy::math::Vec4::with_w( _self.into_inner(), w, ) @@ -12749,7 +12455,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "dot", |_self: Val, rhs: Val| { - let output: f32 = ::bevy::math::Vec4::dot( + let output: f32 = bevy::math::Vec4::dot( _self.into_inner(), rhs.into_inner(), ) @@ -12760,7 +12466,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "dot_into_vec", |_self: Val, rhs: Val| { - let output: Val = ::bevy::math::Vec4::dot_into_vec( + let output: Val = bevy::math::Vec4::dot_into_vec( _self.into_inner(), rhs.into_inner(), ) @@ -12771,7 +12477,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "min", |_self: Val, rhs: Val| { - let output: Val = ::bevy::math::Vec4::min( + let output: Val = bevy::math::Vec4::min( _self.into_inner(), rhs.into_inner(), ) @@ -12782,7 +12488,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "max", |_self: Val, rhs: Val| { - let output: Val = ::bevy::math::Vec4::max( + let output: Val = bevy::math::Vec4::max( _self.into_inner(), rhs.into_inner(), ) @@ -12797,7 +12503,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { min: Val, max: Val| { - let output: Val = ::bevy::math::Vec4::clamp( + let output: Val = bevy::math::Vec4::clamp( _self.into_inner(), min.into_inner(), max.into_inner(), @@ -12809,7 +12515,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "min_element", |_self: Val| { - let output: f32 = ::bevy::math::Vec4::min_element(_self.into_inner()) + let output: f32 = bevy::math::Vec4::min_element(_self.into_inner()) .into(); output }, @@ -12817,7 +12523,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "max_element", |_self: Val| { - let output: f32 = ::bevy::math::Vec4::max_element(_self.into_inner()) + let output: f32 = bevy::math::Vec4::max_element(_self.into_inner()) .into(); output }, @@ -12825,7 +12531,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "element_sum", |_self: Val| { - let output: f32 = ::bevy::math::Vec4::element_sum(_self.into_inner()) + let output: f32 = bevy::math::Vec4::element_sum(_self.into_inner()) .into(); output }, @@ -12833,7 +12539,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "element_product", |_self: Val| { - let output: f32 = ::bevy::math::Vec4::element_product( + let output: f32 = bevy::math::Vec4::element_product( _self.into_inner(), ) .into(); @@ -12843,7 +12549,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "cmpeq", |_self: Val, rhs: Val| { - let output: Val = ::bevy::math::Vec4::cmpeq( + let output: Val = bevy::math::Vec4::cmpeq( _self.into_inner(), rhs.into_inner(), ) @@ -12854,7 +12560,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "cmpne", |_self: Val, rhs: Val| { - let output: Val = ::bevy::math::Vec4::cmpne( + let output: Val = bevy::math::Vec4::cmpne( _self.into_inner(), rhs.into_inner(), ) @@ -12865,7 +12571,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "cmpge", |_self: Val, rhs: Val| { - let output: Val = ::bevy::math::Vec4::cmpge( + let output: Val = bevy::math::Vec4::cmpge( _self.into_inner(), rhs.into_inner(), ) @@ -12876,7 +12582,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "cmpgt", |_self: Val, rhs: Val| { - let output: Val = ::bevy::math::Vec4::cmpgt( + let output: Val = bevy::math::Vec4::cmpgt( _self.into_inner(), rhs.into_inner(), ) @@ -12887,7 +12593,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "cmple", |_self: Val, rhs: Val| { - let output: Val = ::bevy::math::Vec4::cmple( + let output: Val = bevy::math::Vec4::cmple( _self.into_inner(), rhs.into_inner(), ) @@ -12898,7 +12604,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "cmplt", |_self: Val, rhs: Val| { - let output: Val = ::bevy::math::Vec4::cmplt( + let output: Val = bevy::math::Vec4::cmplt( _self.into_inner(), rhs.into_inner(), ) @@ -12909,7 +12615,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "abs", |_self: Val| { - let output: Val = ::bevy::math::Vec4::abs( + let output: Val = bevy::math::Vec4::abs( _self.into_inner(), ) .into(); @@ -12919,7 +12625,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "signum", |_self: Val| { - let output: Val = ::bevy::math::Vec4::signum( + let output: Val = bevy::math::Vec4::signum( _self.into_inner(), ) .into(); @@ -12929,7 +12635,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "copysign", |_self: Val, rhs: Val| { - let output: Val = ::bevy::math::Vec4::copysign( + let output: Val = bevy::math::Vec4::copysign( _self.into_inner(), rhs.into_inner(), ) @@ -12940,7 +12646,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "is_negative_bitmask", |_self: Val| { - let output: u32 = ::bevy::math::Vec4::is_negative_bitmask( + let output: u32 = bevy::math::Vec4::is_negative_bitmask( _self.into_inner(), ) .into(); @@ -12950,7 +12656,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "is_finite", |_self: Val| { - let output: bool = ::bevy::math::Vec4::is_finite(_self.into_inner()) + let output: bool = bevy::math::Vec4::is_finite(_self.into_inner()) .into(); output }, @@ -12958,7 +12664,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "is_finite_mask", |_self: Val| { - let output: Val = ::bevy::math::Vec4::is_finite_mask( + let output: Val = bevy::math::Vec4::is_finite_mask( _self.into_inner(), ) .into(); @@ -12968,7 +12674,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "is_nan", |_self: Val| { - let output: bool = ::bevy::math::Vec4::is_nan(_self.into_inner()) + let output: bool = bevy::math::Vec4::is_nan(_self.into_inner()) .into(); output }, @@ -12976,7 +12682,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "is_nan_mask", |_self: Val| { - let output: Val = ::bevy::math::Vec4::is_nan_mask( + let output: Val = bevy::math::Vec4::is_nan_mask( _self.into_inner(), ) .into(); @@ -12986,7 +12692,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "length", |_self: Val| { - let output: f32 = ::bevy::math::Vec4::length(_self.into_inner()) + let output: f32 = bevy::math::Vec4::length(_self.into_inner()) .into(); output }, @@ -12994,7 +12700,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "length_squared", |_self: Val| { - let output: f32 = ::bevy::math::Vec4::length_squared( + let output: f32 = bevy::math::Vec4::length_squared( _self.into_inner(), ) .into(); @@ -13004,9 +12710,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "length_recip", |_self: Val| { - let output: f32 = ::bevy::math::Vec4::length_recip( - _self.into_inner(), - ) + let output: f32 = bevy::math::Vec4::length_recip(_self.into_inner()) .into(); output }, @@ -13014,7 +12718,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "distance", |_self: Val, rhs: Val| { - let output: f32 = ::bevy::math::Vec4::distance( + let output: f32 = bevy::math::Vec4::distance( _self.into_inner(), rhs.into_inner(), ) @@ -13025,7 +12729,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "distance_squared", |_self: Val, rhs: Val| { - let output: f32 = ::bevy::math::Vec4::distance_squared( + let output: f32 = bevy::math::Vec4::distance_squared( _self.into_inner(), rhs.into_inner(), ) @@ -13036,7 +12740,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "div_euclid", |_self: Val, rhs: Val| { - let output: Val = ::bevy::math::Vec4::div_euclid( + let output: Val = bevy::math::Vec4::div_euclid( _self.into_inner(), rhs.into_inner(), ) @@ -13047,7 +12751,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "rem_euclid", |_self: Val, rhs: Val| { - let output: Val = ::bevy::math::Vec4::rem_euclid( + let output: Val = bevy::math::Vec4::rem_euclid( _self.into_inner(), rhs.into_inner(), ) @@ -13058,7 +12762,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "normalize", |_self: Val| { - let output: Val = ::bevy::math::Vec4::normalize( + let output: Val = bevy::math::Vec4::normalize( _self.into_inner(), ) .into(); @@ -13068,7 +12772,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "normalize_or", |_self: Val, fallback: Val| { - let output: Val = ::bevy::math::Vec4::normalize_or( + let output: Val = bevy::math::Vec4::normalize_or( _self.into_inner(), fallback.into_inner(), ) @@ -13079,7 +12783,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "normalize_or_zero", |_self: Val| { - let output: Val = ::bevy::math::Vec4::normalize_or_zero( + let output: Val = bevy::math::Vec4::normalize_or_zero( _self.into_inner(), ) .into(); @@ -13089,7 +12793,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "is_normalized", |_self: Val| { - let output: bool = ::bevy::math::Vec4::is_normalized( + let output: bool = bevy::math::Vec4::is_normalized( _self.into_inner(), ) .into(); @@ -13099,7 +12803,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "project_onto", |_self: Val, rhs: Val| { - let output: Val = ::bevy::math::Vec4::project_onto( + let output: Val = bevy::math::Vec4::project_onto( _self.into_inner(), rhs.into_inner(), ) @@ -13110,7 +12814,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "reject_from", |_self: Val, rhs: Val| { - let output: Val = ::bevy::math::Vec4::reject_from( + let output: Val = bevy::math::Vec4::reject_from( _self.into_inner(), rhs.into_inner(), ) @@ -13121,7 +12825,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "project_onto_normalized", |_self: Val, rhs: Val| { - let output: Val = ::bevy::math::Vec4::project_onto_normalized( + let output: Val = bevy::math::Vec4::project_onto_normalized( _self.into_inner(), rhs.into_inner(), ) @@ -13132,7 +12836,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "reject_from_normalized", |_self: Val, rhs: Val| { - let output: Val = ::bevy::math::Vec4::reject_from_normalized( + let output: Val = bevy::math::Vec4::reject_from_normalized( _self.into_inner(), rhs.into_inner(), ) @@ -13143,7 +12847,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "round", |_self: Val| { - let output: Val = ::bevy::math::Vec4::round( + let output: Val = bevy::math::Vec4::round( _self.into_inner(), ) .into(); @@ -13153,7 +12857,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "floor", |_self: Val| { - let output: Val = ::bevy::math::Vec4::floor( + let output: Val = bevy::math::Vec4::floor( _self.into_inner(), ) .into(); @@ -13163,7 +12867,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "ceil", |_self: Val| { - let output: Val = ::bevy::math::Vec4::ceil( + let output: Val = bevy::math::Vec4::ceil( _self.into_inner(), ) .into(); @@ -13173,7 +12877,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "trunc", |_self: Val| { - let output: Val = ::bevy::math::Vec4::trunc( + let output: Val = bevy::math::Vec4::trunc( _self.into_inner(), ) .into(); @@ -13183,7 +12887,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "fract", |_self: Val| { - let output: Val = ::bevy::math::Vec4::fract( + let output: Val = bevy::math::Vec4::fract( _self.into_inner(), ) .into(); @@ -13193,7 +12897,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "fract_gl", |_self: Val| { - let output: Val = ::bevy::math::Vec4::fract_gl( + let output: Val = bevy::math::Vec4::fract_gl( _self.into_inner(), ) .into(); @@ -13203,7 +12907,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "exp", |_self: Val| { - let output: Val = ::bevy::math::Vec4::exp( + let output: Val = bevy::math::Vec4::exp( _self.into_inner(), ) .into(); @@ -13213,7 +12917,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "powf", |_self: Val, n: f32| { - let output: Val = ::bevy::math::Vec4::powf( + let output: Val = bevy::math::Vec4::powf( _self.into_inner(), n, ) @@ -13224,7 +12928,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "recip", |_self: Val| { - let output: Val = ::bevy::math::Vec4::recip( + let output: Val = bevy::math::Vec4::recip( _self.into_inner(), ) .into(); @@ -13234,7 +12938,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "lerp", |_self: Val, rhs: Val, s: f32| { - let output: Val = ::bevy::math::Vec4::lerp( + let output: Val = bevy::math::Vec4::lerp( _self.into_inner(), rhs.into_inner(), s, @@ -13246,7 +12950,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "move_towards", |_self: Ref, rhs: Val, d: f32| { - let output: Val = ::bevy::math::Vec4::move_towards( + let output: Val = bevy::math::Vec4::move_towards( &_self, rhs.into_inner(), d, @@ -13258,7 +12962,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "midpoint", |_self: Val, rhs: Val| { - let output: Val = ::bevy::math::Vec4::midpoint( + let output: Val = bevy::math::Vec4::midpoint( _self.into_inner(), rhs.into_inner(), ) @@ -13273,7 +12977,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { rhs: Val, max_abs_diff: f32| { - let output: bool = ::bevy::math::Vec4::abs_diff_eq( + let output: bool = bevy::math::Vec4::abs_diff_eq( _self.into_inner(), rhs.into_inner(), max_abs_diff, @@ -13285,7 +12989,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "clamp_length", |_self: Val, min: f32, max: f32| { - let output: Val = ::bevy::math::Vec4::clamp_length( + let output: Val = bevy::math::Vec4::clamp_length( _self.into_inner(), min, max, @@ -13297,7 +13001,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "clamp_length_max", |_self: Val, max: f32| { - let output: Val = ::bevy::math::Vec4::clamp_length_max( + let output: Val = bevy::math::Vec4::clamp_length_max( _self.into_inner(), max, ) @@ -13308,7 +13012,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "clamp_length_min", |_self: Val, min: f32| { - let output: Val = ::bevy::math::Vec4::clamp_length_min( + let output: Val = bevy::math::Vec4::clamp_length_min( _self.into_inner(), min, ) @@ -13323,7 +13027,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { a: Val, b: Val| { - let output: Val = ::bevy::math::Vec4::mul_add( + let output: Val = bevy::math::Vec4::mul_add( _self.into_inner(), a.into_inner(), b.into_inner(), @@ -13335,7 +13039,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "reflect", |_self: Val, normal: Val| { - let output: Val = ::bevy::math::Vec4::reflect( + let output: Val = bevy::math::Vec4::reflect( _self.into_inner(), normal.into_inner(), ) @@ -13346,7 +13050,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "refract", |_self: Val, normal: Val, eta: f32| { - let output: Val = ::bevy::math::Vec4::refract( + let output: Val = bevy::math::Vec4::refract( _self.into_inner(), normal.into_inner(), eta, @@ -13358,7 +13062,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "as_dvec4", |_self: Ref| { - let output: Val = ::bevy::math::Vec4::as_dvec4( + let output: Val = bevy::math::Vec4::as_dvec4( &_self, ) .into(); @@ -13368,7 +13072,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "as_ivec4", |_self: Ref| { - let output: Val = ::bevy::math::Vec4::as_ivec4( + let output: Val = bevy::math::Vec4::as_ivec4( &_self, ) .into(); @@ -13378,7 +13082,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "as_uvec4", |_self: Ref| { - let output: Val = ::bevy::math::Vec4::as_uvec4( + let output: Val = bevy::math::Vec4::as_uvec4( &_self, ) .into(); @@ -13388,7 +13092,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "as_i64vec4", |_self: Ref| { - let output: Val = ::bevy::math::Vec4::as_i64vec4( + let output: Val = bevy::math::Vec4::as_i64vec4( &_self, ) .into(); @@ -13398,7 +13102,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "as_u64vec4", |_self: Ref| { - let output: Val = ::bevy::math::Vec4::as_u64vec4( + let output: Val = bevy::math::Vec4::as_u64vec4( &_self, ) .into(); @@ -13408,10 +13112,9 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "sub", |_self: Val, rhs: Val| { - let output: Val = ::bevy::math::Vec4::sub( - _self.into_inner(), - rhs.into_inner(), - ) + let output: Val = >::sub(_self.into_inner(), rhs.into_inner()) .into(); output }, @@ -13419,10 +13122,9 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "sub", |_self: Val, rhs: Ref| { - let output: Val = ::bevy::math::Vec4::sub( - _self.into_inner(), - &rhs, - ) + let output: Val = >::sub(_self.into_inner(), &rhs) .into(); output }, @@ -13430,10 +13132,9 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "mul", |_self: Val, rhs: Val| { - let output: Val = ::bevy::math::Vec4::mul( - _self.into_inner(), - rhs.into_inner(), - ) + let output: Val = >::mul(_self.into_inner(), rhs.into_inner()) .into(); output }, @@ -13441,10 +13142,9 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "rem", |_self: Val, rhs: f32| { - let output: Val = ::bevy::math::Vec4::rem( - _self.into_inner(), - rhs, - ) + let output: Val = >::rem(_self.into_inner(), rhs) .into(); output }, @@ -13452,7 +13152,9 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "clone", |_self: Ref| { - let output: Val = ::bevy::math::Vec4::clone(&_self) + let output: Val = ::clone( + &_self, + ) .into(); output }, @@ -13460,10 +13162,9 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "div", |_self: Val, rhs: f32| { - let output: Val = ::bevy::math::Vec4::div( - _self.into_inner(), - rhs, - ) + let output: Val = >::div(_self.into_inner(), rhs) .into(); output }, @@ -13471,10 +13172,9 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "rem", |_self: Val, rhs: Val| { - let output: Val = ::bevy::math::Vec4::rem( - _self.into_inner(), - rhs.into_inner(), - ) + let output: Val = >::rem(_self.into_inner(), rhs.into_inner()) .into(); output }, @@ -13482,10 +13182,9 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "mul", |_self: Val, rhs: f32| { - let output: Val = ::bevy::math::Vec4::mul( - _self.into_inner(), - rhs, - ) + let output: Val = >::mul(_self.into_inner(), rhs) .into(); output }, @@ -13494,7 +13193,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "assert_receiver_is_total_eq", |_self: Ref| { - let output: () = ::bevy::math::BVec2::assert_receiver_is_total_eq( + let output: () = ::assert_receiver_is_total_eq( &_self, ) .into(); @@ -13504,14 +13203,17 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "eq", |_self: Ref, other: Ref| { - let output: bool = ::bevy::math::BVec2::eq(&_self, &other).into(); + let output: bool = >::eq(&_self, &other) + .into(); output }, ) .overwrite_script_function( "new", |x: bool, y: bool| { - let output: Val = ::bevy::math::BVec2::new(x, y) + let output: Val = bevy::math::BVec2::new(x, y) .into(); output }, @@ -13519,7 +13221,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "splat", |v: bool| { - let output: Val = ::bevy::math::BVec2::splat(v) + let output: Val = bevy::math::BVec2::splat(v) .into(); output }, @@ -13527,9 +13229,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "from_array", |a: [bool; 2]| { - let output: Val = ::bevy::math::BVec2::from_array( - a, - ) + let output: Val = bevy::math::BVec2::from_array(a) .into(); output }, @@ -13537,7 +13237,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "bitmask", |_self: Val| { - let output: u32 = ::bevy::math::BVec2::bitmask(_self.into_inner()) + let output: u32 = bevy::math::BVec2::bitmask(_self.into_inner()) .into(); output }, @@ -13545,30 +13245,28 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "any", |_self: Val| { - let output: bool = ::bevy::math::BVec2::any(_self.into_inner()) - .into(); + let output: bool = bevy::math::BVec2::any(_self.into_inner()).into(); output }, ) .overwrite_script_function( "all", |_self: Val| { - let output: bool = ::bevy::math::BVec2::all(_self.into_inner()) - .into(); + let output: bool = bevy::math::BVec2::all(_self.into_inner()).into(); output }, ) .overwrite_script_function( "test", |_self: Ref, index: usize| { - let output: bool = ::bevy::math::BVec2::test(&_self, index).into(); + let output: bool = bevy::math::BVec2::test(&_self, index).into(); output }, ) .overwrite_script_function( "set", |mut _self: Mut, index: usize, value: bool| { - let output: () = ::bevy::math::BVec2::set(&mut _self, index, value) + let output: () = bevy::math::BVec2::set(&mut _self, index, value) .into(); output }, @@ -13576,7 +13274,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "clone", |_self: Ref| { - let output: Val = ::bevy::math::BVec2::clone( + let output: Val = ::clone( &_self, ) .into(); @@ -13587,11 +13285,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "new", |x: bool, y: bool, z: bool| { - let output: Val = ::bevy::math::BVec3::new( - x, - y, - z, - ) + let output: Val = bevy::math::BVec3::new(x, y, z) .into(); output }, @@ -13599,7 +13293,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "splat", |v: bool| { - let output: Val = ::bevy::math::BVec3::splat(v) + let output: Val = bevy::math::BVec3::splat(v) .into(); output }, @@ -13607,9 +13301,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "from_array", |a: [bool; 3]| { - let output: Val = ::bevy::math::BVec3::from_array( - a, - ) + let output: Val = bevy::math::BVec3::from_array(a) .into(); output }, @@ -13617,7 +13309,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "bitmask", |_self: Val| { - let output: u32 = ::bevy::math::BVec3::bitmask(_self.into_inner()) + let output: u32 = bevy::math::BVec3::bitmask(_self.into_inner()) .into(); output }, @@ -13625,30 +13317,28 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "any", |_self: Val| { - let output: bool = ::bevy::math::BVec3::any(_self.into_inner()) - .into(); + let output: bool = bevy::math::BVec3::any(_self.into_inner()).into(); output }, ) .overwrite_script_function( "all", |_self: Val| { - let output: bool = ::bevy::math::BVec3::all(_self.into_inner()) - .into(); + let output: bool = bevy::math::BVec3::all(_self.into_inner()).into(); output }, ) .overwrite_script_function( "test", |_self: Ref, index: usize| { - let output: bool = ::bevy::math::BVec3::test(&_self, index).into(); + let output: bool = bevy::math::BVec3::test(&_self, index).into(); output }, ) .overwrite_script_function( "set", |mut _self: Mut, index: usize, value: bool| { - let output: () = ::bevy::math::BVec3::set(&mut _self, index, value) + let output: () = bevy::math::BVec3::set(&mut _self, index, value) .into(); output }, @@ -13656,14 +13346,17 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "eq", |_self: Ref, other: Ref| { - let output: bool = ::bevy::math::BVec3::eq(&_self, &other).into(); + let output: bool = >::eq(&_self, &other) + .into(); output }, ) .overwrite_script_function( "clone", |_self: Ref| { - let output: Val = ::bevy::math::BVec3::clone( + let output: Val = ::clone( &_self, ) .into(); @@ -13673,7 +13366,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "assert_receiver_is_total_eq", |_self: Ref| { - let output: () = ::bevy::math::BVec3::assert_receiver_is_total_eq( + let output: () = ::assert_receiver_is_total_eq( &_self, ) .into(); @@ -13684,7 +13377,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "new", |x: bool, y: bool, z: bool, w: bool| { - let output: Val = ::bevy::math::BVec4::new( + let output: Val = bevy::math::BVec4::new( x, y, z, @@ -13697,7 +13390,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "splat", |v: bool| { - let output: Val = ::bevy::math::BVec4::splat(v) + let output: Val = bevy::math::BVec4::splat(v) .into(); output }, @@ -13705,9 +13398,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "from_array", |a: [bool; 4]| { - let output: Val = ::bevy::math::BVec4::from_array( - a, - ) + let output: Val = bevy::math::BVec4::from_array(a) .into(); output }, @@ -13715,7 +13406,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "bitmask", |_self: Val| { - let output: u32 = ::bevy::math::BVec4::bitmask(_self.into_inner()) + let output: u32 = bevy::math::BVec4::bitmask(_self.into_inner()) .into(); output }, @@ -13723,30 +13414,28 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "any", |_self: Val| { - let output: bool = ::bevy::math::BVec4::any(_self.into_inner()) - .into(); + let output: bool = bevy::math::BVec4::any(_self.into_inner()).into(); output }, ) .overwrite_script_function( "all", |_self: Val| { - let output: bool = ::bevy::math::BVec4::all(_self.into_inner()) - .into(); + let output: bool = bevy::math::BVec4::all(_self.into_inner()).into(); output }, ) .overwrite_script_function( "test", |_self: Ref, index: usize| { - let output: bool = ::bevy::math::BVec4::test(&_self, index).into(); + let output: bool = bevy::math::BVec4::test(&_self, index).into(); output }, ) .overwrite_script_function( "set", |mut _self: Mut, index: usize, value: bool| { - let output: () = ::bevy::math::BVec4::set(&mut _self, index, value) + let output: () = bevy::math::BVec4::set(&mut _self, index, value) .into(); output }, @@ -13754,7 +13443,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "clone", |_self: Ref| { - let output: Val = ::bevy::math::BVec4::clone( + let output: Val = ::clone( &_self, ) .into(); @@ -13764,14 +13453,17 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "eq", |_self: Ref, other: Ref| { - let output: bool = ::bevy::math::BVec4::eq(&_self, &other).into(); + let output: bool = >::eq(&_self, &other) + .into(); output }, ) .overwrite_script_function( "assert_receiver_is_total_eq", |_self: Ref| { - let output: () = ::bevy::math::BVec4::assert_receiver_is_total_eq( + let output: () = ::assert_receiver_is_total_eq( &_self, ) .into(); @@ -13782,7 +13474,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "neg", |_self: Val| { - let output: Val = ::bevy::math::DVec2::neg( + let output: Val = ::neg( _self.into_inner(), ) .into(); @@ -13792,10 +13484,9 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "mul", |_self: Val, rhs: Val| { - let output: Val = ::bevy::math::DVec2::mul( - _self.into_inner(), - rhs.into_inner(), - ) + let output: Val = >::mul(_self.into_inner(), rhs.into_inner()) .into(); output }, @@ -13803,10 +13494,9 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "sub", |_self: Val, rhs: f64| { - let output: Val = ::bevy::math::DVec2::sub( - _self.into_inner(), - rhs, - ) + let output: Val = >::sub(_self.into_inner(), rhs) .into(); output }, @@ -13814,10 +13504,9 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "div", |_self: Val, rhs: f64| { - let output: Val = ::bevy::math::DVec2::div( - _self.into_inner(), - rhs, - ) + let output: Val = >::div(_self.into_inner(), rhs) .into(); output }, @@ -13825,10 +13514,9 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "div", |_self: Val, rhs: Ref| { - let output: Val = ::bevy::math::DVec2::div( - _self.into_inner(), - &rhs, - ) + let output: Val = >::div(_self.into_inner(), &rhs) .into(); output }, @@ -13836,10 +13524,9 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "rem", |_self: Val, rhs: Ref| { - let output: Val = ::bevy::math::DVec2::rem( - _self.into_inner(), - &rhs, - ) + let output: Val = >::rem(_self.into_inner(), &rhs) .into(); output }, @@ -13847,10 +13534,9 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "div", |_self: Val, rhs: Val| { - let output: Val = ::bevy::math::DVec2::div( - _self.into_inner(), - rhs.into_inner(), - ) + let output: Val = >::div(_self.into_inner(), rhs.into_inner()) .into(); output }, @@ -13858,7 +13544,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "new", |x: f64, y: f64| { - let output: Val = ::bevy::math::DVec2::new(x, y) + let output: Val = bevy::math::DVec2::new(x, y) .into(); output }, @@ -13866,7 +13552,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "splat", |v: f64| { - let output: Val = ::bevy::math::DVec2::splat(v) + let output: Val = bevy::math::DVec2::splat(v) .into(); output }, @@ -13878,7 +13564,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { if_true: Val, if_false: Val| { - let output: Val = ::bevy::math::DVec2::select( + let output: Val = bevy::math::DVec2::select( mask.into_inner(), if_true.into_inner(), if_false.into_inner(), @@ -13890,9 +13576,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "from_array", |a: [f64; 2]| { - let output: Val = ::bevy::math::DVec2::from_array( - a, - ) + let output: Val = bevy::math::DVec2::from_array(a) .into(); output }, @@ -13900,14 +13584,14 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "to_array", |_self: Ref| { - let output: [f64; 2] = ::bevy::math::DVec2::to_array(&_self).into(); + let output: [f64; 2] = bevy::math::DVec2::to_array(&_self).into(); output }, ) .overwrite_script_function( "extend", |_self: Val, z: f64| { - let output: Val = ::bevy::math::DVec2::extend( + let output: Val = bevy::math::DVec2::extend( _self.into_inner(), z, ) @@ -13918,7 +13602,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "with_x", |_self: Val, x: f64| { - let output: Val = ::bevy::math::DVec2::with_x( + let output: Val = bevy::math::DVec2::with_x( _self.into_inner(), x, ) @@ -13929,7 +13613,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "with_y", |_self: Val, y: f64| { - let output: Val = ::bevy::math::DVec2::with_y( + let output: Val = bevy::math::DVec2::with_y( _self.into_inner(), y, ) @@ -13940,7 +13624,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "dot", |_self: Val, rhs: Val| { - let output: f64 = ::bevy::math::DVec2::dot( + let output: f64 = bevy::math::DVec2::dot( _self.into_inner(), rhs.into_inner(), ) @@ -13951,7 +13635,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "dot_into_vec", |_self: Val, rhs: Val| { - let output: Val = ::bevy::math::DVec2::dot_into_vec( + let output: Val = bevy::math::DVec2::dot_into_vec( _self.into_inner(), rhs.into_inner(), ) @@ -13962,7 +13646,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "min", |_self: Val, rhs: Val| { - let output: Val = ::bevy::math::DVec2::min( + let output: Val = bevy::math::DVec2::min( _self.into_inner(), rhs.into_inner(), ) @@ -13973,7 +13657,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "max", |_self: Val, rhs: Val| { - let output: Val = ::bevy::math::DVec2::max( + let output: Val = bevy::math::DVec2::max( _self.into_inner(), rhs.into_inner(), ) @@ -13988,7 +13672,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { min: Val, max: Val| { - let output: Val = ::bevy::math::DVec2::clamp( + let output: Val = bevy::math::DVec2::clamp( _self.into_inner(), min.into_inner(), max.into_inner(), @@ -14000,9 +13684,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "min_element", |_self: Val| { - let output: f64 = ::bevy::math::DVec2::min_element( - _self.into_inner(), - ) + let output: f64 = bevy::math::DVec2::min_element(_self.into_inner()) .into(); output }, @@ -14010,9 +13692,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "max_element", |_self: Val| { - let output: f64 = ::bevy::math::DVec2::max_element( - _self.into_inner(), - ) + let output: f64 = bevy::math::DVec2::max_element(_self.into_inner()) .into(); output }, @@ -14020,9 +13700,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "element_sum", |_self: Val| { - let output: f64 = ::bevy::math::DVec2::element_sum( - _self.into_inner(), - ) + let output: f64 = bevy::math::DVec2::element_sum(_self.into_inner()) .into(); output }, @@ -14030,7 +13708,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "element_product", |_self: Val| { - let output: f64 = ::bevy::math::DVec2::element_product( + let output: f64 = bevy::math::DVec2::element_product( _self.into_inner(), ) .into(); @@ -14040,7 +13718,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "cmpeq", |_self: Val, rhs: Val| { - let output: Val = ::bevy::math::DVec2::cmpeq( + let output: Val = bevy::math::DVec2::cmpeq( _self.into_inner(), rhs.into_inner(), ) @@ -14051,7 +13729,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "cmpne", |_self: Val, rhs: Val| { - let output: Val = ::bevy::math::DVec2::cmpne( + let output: Val = bevy::math::DVec2::cmpne( _self.into_inner(), rhs.into_inner(), ) @@ -14062,7 +13740,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "cmpge", |_self: Val, rhs: Val| { - let output: Val = ::bevy::math::DVec2::cmpge( + let output: Val = bevy::math::DVec2::cmpge( _self.into_inner(), rhs.into_inner(), ) @@ -14073,7 +13751,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "cmpgt", |_self: Val, rhs: Val| { - let output: Val = ::bevy::math::DVec2::cmpgt( + let output: Val = bevy::math::DVec2::cmpgt( _self.into_inner(), rhs.into_inner(), ) @@ -14084,7 +13762,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "cmple", |_self: Val, rhs: Val| { - let output: Val = ::bevy::math::DVec2::cmple( + let output: Val = bevy::math::DVec2::cmple( _self.into_inner(), rhs.into_inner(), ) @@ -14095,7 +13773,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "cmplt", |_self: Val, rhs: Val| { - let output: Val = ::bevy::math::DVec2::cmplt( + let output: Val = bevy::math::DVec2::cmplt( _self.into_inner(), rhs.into_inner(), ) @@ -14106,7 +13784,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "abs", |_self: Val| { - let output: Val = ::bevy::math::DVec2::abs( + let output: Val = bevy::math::DVec2::abs( _self.into_inner(), ) .into(); @@ -14116,7 +13794,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "signum", |_self: Val| { - let output: Val = ::bevy::math::DVec2::signum( + let output: Val = bevy::math::DVec2::signum( _self.into_inner(), ) .into(); @@ -14126,7 +13804,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "copysign", |_self: Val, rhs: Val| { - let output: Val = ::bevy::math::DVec2::copysign( + let output: Val = bevy::math::DVec2::copysign( _self.into_inner(), rhs.into_inner(), ) @@ -14137,7 +13815,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "is_negative_bitmask", |_self: Val| { - let output: u32 = ::bevy::math::DVec2::is_negative_bitmask( + let output: u32 = bevy::math::DVec2::is_negative_bitmask( _self.into_inner(), ) .into(); @@ -14147,7 +13825,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "is_finite", |_self: Val| { - let output: bool = ::bevy::math::DVec2::is_finite(_self.into_inner()) + let output: bool = bevy::math::DVec2::is_finite(_self.into_inner()) .into(); output }, @@ -14155,7 +13833,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "is_finite_mask", |_self: Val| { - let output: Val = ::bevy::math::DVec2::is_finite_mask( + let output: Val = bevy::math::DVec2::is_finite_mask( _self.into_inner(), ) .into(); @@ -14165,7 +13843,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "is_nan", |_self: Val| { - let output: bool = ::bevy::math::DVec2::is_nan(_self.into_inner()) + let output: bool = bevy::math::DVec2::is_nan(_self.into_inner()) .into(); output }, @@ -14173,7 +13851,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "is_nan_mask", |_self: Val| { - let output: Val = ::bevy::math::DVec2::is_nan_mask( + let output: Val = bevy::math::DVec2::is_nan_mask( _self.into_inner(), ) .into(); @@ -14183,7 +13861,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "length", |_self: Val| { - let output: f64 = ::bevy::math::DVec2::length(_self.into_inner()) + let output: f64 = bevy::math::DVec2::length(_self.into_inner()) .into(); output }, @@ -14191,7 +13869,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "length_squared", |_self: Val| { - let output: f64 = ::bevy::math::DVec2::length_squared( + let output: f64 = bevy::math::DVec2::length_squared( _self.into_inner(), ) .into(); @@ -14201,9 +13879,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "length_recip", |_self: Val| { - let output: f64 = ::bevy::math::DVec2::length_recip( - _self.into_inner(), - ) + let output: f64 = bevy::math::DVec2::length_recip(_self.into_inner()) .into(); output }, @@ -14211,7 +13887,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "distance", |_self: Val, rhs: Val| { - let output: f64 = ::bevy::math::DVec2::distance( + let output: f64 = bevy::math::DVec2::distance( _self.into_inner(), rhs.into_inner(), ) @@ -14222,7 +13898,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "distance_squared", |_self: Val, rhs: Val| { - let output: f64 = ::bevy::math::DVec2::distance_squared( + let output: f64 = bevy::math::DVec2::distance_squared( _self.into_inner(), rhs.into_inner(), ) @@ -14233,7 +13909,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "div_euclid", |_self: Val, rhs: Val| { - let output: Val = ::bevy::math::DVec2::div_euclid( + let output: Val = bevy::math::DVec2::div_euclid( _self.into_inner(), rhs.into_inner(), ) @@ -14244,7 +13920,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "rem_euclid", |_self: Val, rhs: Val| { - let output: Val = ::bevy::math::DVec2::rem_euclid( + let output: Val = bevy::math::DVec2::rem_euclid( _self.into_inner(), rhs.into_inner(), ) @@ -14255,7 +13931,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "normalize", |_self: Val| { - let output: Val = ::bevy::math::DVec2::normalize( + let output: Val = bevy::math::DVec2::normalize( _self.into_inner(), ) .into(); @@ -14265,7 +13941,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "normalize_or", |_self: Val, fallback: Val| { - let output: Val = ::bevy::math::DVec2::normalize_or( + let output: Val = bevy::math::DVec2::normalize_or( _self.into_inner(), fallback.into_inner(), ) @@ -14276,7 +13952,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "normalize_or_zero", |_self: Val| { - let output: Val = ::bevy::math::DVec2::normalize_or_zero( + let output: Val = bevy::math::DVec2::normalize_or_zero( _self.into_inner(), ) .into(); @@ -14286,7 +13962,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "is_normalized", |_self: Val| { - let output: bool = ::bevy::math::DVec2::is_normalized( + let output: bool = bevy::math::DVec2::is_normalized( _self.into_inner(), ) .into(); @@ -14296,7 +13972,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "project_onto", |_self: Val, rhs: Val| { - let output: Val = ::bevy::math::DVec2::project_onto( + let output: Val = bevy::math::DVec2::project_onto( _self.into_inner(), rhs.into_inner(), ) @@ -14307,7 +13983,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "reject_from", |_self: Val, rhs: Val| { - let output: Val = ::bevy::math::DVec2::reject_from( + let output: Val = bevy::math::DVec2::reject_from( _self.into_inner(), rhs.into_inner(), ) @@ -14318,7 +13994,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "project_onto_normalized", |_self: Val, rhs: Val| { - let output: Val = ::bevy::math::DVec2::project_onto_normalized( + let output: Val = bevy::math::DVec2::project_onto_normalized( _self.into_inner(), rhs.into_inner(), ) @@ -14329,7 +14005,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "reject_from_normalized", |_self: Val, rhs: Val| { - let output: Val = ::bevy::math::DVec2::reject_from_normalized( + let output: Val = bevy::math::DVec2::reject_from_normalized( _self.into_inner(), rhs.into_inner(), ) @@ -14340,7 +14016,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "round", |_self: Val| { - let output: Val = ::bevy::math::DVec2::round( + let output: Val = bevy::math::DVec2::round( _self.into_inner(), ) .into(); @@ -14350,7 +14026,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "floor", |_self: Val| { - let output: Val = ::bevy::math::DVec2::floor( + let output: Val = bevy::math::DVec2::floor( _self.into_inner(), ) .into(); @@ -14360,7 +14036,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "ceil", |_self: Val| { - let output: Val = ::bevy::math::DVec2::ceil( + let output: Val = bevy::math::DVec2::ceil( _self.into_inner(), ) .into(); @@ -14370,7 +14046,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "trunc", |_self: Val| { - let output: Val = ::bevy::math::DVec2::trunc( + let output: Val = bevy::math::DVec2::trunc( _self.into_inner(), ) .into(); @@ -14380,7 +14056,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "fract", |_self: Val| { - let output: Val = ::bevy::math::DVec2::fract( + let output: Val = bevy::math::DVec2::fract( _self.into_inner(), ) .into(); @@ -14390,7 +14066,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "fract_gl", |_self: Val| { - let output: Val = ::bevy::math::DVec2::fract_gl( + let output: Val = bevy::math::DVec2::fract_gl( _self.into_inner(), ) .into(); @@ -14400,7 +14076,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "exp", |_self: Val| { - let output: Val = ::bevy::math::DVec2::exp( + let output: Val = bevy::math::DVec2::exp( _self.into_inner(), ) .into(); @@ -14410,7 +14086,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "powf", |_self: Val, n: f64| { - let output: Val = ::bevy::math::DVec2::powf( + let output: Val = bevy::math::DVec2::powf( _self.into_inner(), n, ) @@ -14421,7 +14097,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "recip", |_self: Val| { - let output: Val = ::bevy::math::DVec2::recip( + let output: Val = bevy::math::DVec2::recip( _self.into_inner(), ) .into(); @@ -14431,7 +14107,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "lerp", |_self: Val, rhs: Val, s: f64| { - let output: Val = ::bevy::math::DVec2::lerp( + let output: Val = bevy::math::DVec2::lerp( _self.into_inner(), rhs.into_inner(), s, @@ -14443,7 +14119,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "move_towards", |_self: Ref, rhs: Val, d: f64| { - let output: Val = ::bevy::math::DVec2::move_towards( + let output: Val = bevy::math::DVec2::move_towards( &_self, rhs.into_inner(), d, @@ -14455,7 +14131,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "midpoint", |_self: Val, rhs: Val| { - let output: Val = ::bevy::math::DVec2::midpoint( + let output: Val = bevy::math::DVec2::midpoint( _self.into_inner(), rhs.into_inner(), ) @@ -14470,7 +14146,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { rhs: Val, max_abs_diff: f64| { - let output: bool = ::bevy::math::DVec2::abs_diff_eq( + let output: bool = bevy::math::DVec2::abs_diff_eq( _self.into_inner(), rhs.into_inner(), max_abs_diff, @@ -14482,7 +14158,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "clamp_length", |_self: Val, min: f64, max: f64| { - let output: Val = ::bevy::math::DVec2::clamp_length( + let output: Val = bevy::math::DVec2::clamp_length( _self.into_inner(), min, max, @@ -14494,7 +14170,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "clamp_length_max", |_self: Val, max: f64| { - let output: Val = ::bevy::math::DVec2::clamp_length_max( + let output: Val = bevy::math::DVec2::clamp_length_max( _self.into_inner(), max, ) @@ -14505,7 +14181,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "clamp_length_min", |_self: Val, min: f64| { - let output: Val = ::bevy::math::DVec2::clamp_length_min( + let output: Val = bevy::math::DVec2::clamp_length_min( _self.into_inner(), min, ) @@ -14520,7 +14196,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { a: Val, b: Val| { - let output: Val = ::bevy::math::DVec2::mul_add( + let output: Val = bevy::math::DVec2::mul_add( _self.into_inner(), a.into_inner(), b.into_inner(), @@ -14532,7 +14208,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "reflect", |_self: Val, normal: Val| { - let output: Val = ::bevy::math::DVec2::reflect( + let output: Val = bevy::math::DVec2::reflect( _self.into_inner(), normal.into_inner(), ) @@ -14547,7 +14223,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { normal: Val, eta: f64| { - let output: Val = ::bevy::math::DVec2::refract( + let output: Val = bevy::math::DVec2::refract( _self.into_inner(), normal.into_inner(), eta, @@ -14559,7 +14235,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "from_angle", |angle: f64| { - let output: Val = ::bevy::math::DVec2::from_angle( + let output: Val = bevy::math::DVec2::from_angle( angle, ) .into(); @@ -14569,7 +14245,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "to_angle", |_self: Val| { - let output: f64 = ::bevy::math::DVec2::to_angle(_self.into_inner()) + let output: f64 = bevy::math::DVec2::to_angle(_self.into_inner()) .into(); output }, @@ -14577,7 +14253,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "angle_between", |_self: Val, rhs: Val| { - let output: f64 = ::bevy::math::DVec2::angle_between( + let output: f64 = bevy::math::DVec2::angle_between( _self.into_inner(), rhs.into_inner(), ) @@ -14588,7 +14264,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "angle_to", |_self: Val, rhs: Val| { - let output: f64 = ::bevy::math::DVec2::angle_to( + let output: f64 = bevy::math::DVec2::angle_to( _self.into_inner(), rhs.into_inner(), ) @@ -14599,7 +14275,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "perp", |_self: Val| { - let output: Val = ::bevy::math::DVec2::perp( + let output: Val = bevy::math::DVec2::perp( _self.into_inner(), ) .into(); @@ -14609,7 +14285,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "perp_dot", |_self: Val, rhs: Val| { - let output: f64 = ::bevy::math::DVec2::perp_dot( + let output: f64 = bevy::math::DVec2::perp_dot( _self.into_inner(), rhs.into_inner(), ) @@ -14620,7 +14296,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "rotate", |_self: Val, rhs: Val| { - let output: Val = ::bevy::math::DVec2::rotate( + let output: Val = bevy::math::DVec2::rotate( _self.into_inner(), rhs.into_inner(), ) @@ -14635,7 +14311,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { rhs: Val, max_angle: f64| { - let output: Val = ::bevy::math::DVec2::rotate_towards( + let output: Val = bevy::math::DVec2::rotate_towards( &_self, rhs.into_inner(), max_angle, @@ -14647,7 +14323,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "as_vec2", |_self: Ref| { - let output: Val = ::bevy::math::DVec2::as_vec2( + let output: Val = bevy::math::DVec2::as_vec2( &_self, ) .into(); @@ -14657,7 +14333,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "as_ivec2", |_self: Ref| { - let output: Val = ::bevy::math::DVec2::as_ivec2( + let output: Val = bevy::math::DVec2::as_ivec2( &_self, ) .into(); @@ -14667,7 +14343,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "as_uvec2", |_self: Ref| { - let output: Val = ::bevy::math::DVec2::as_uvec2( + let output: Val = bevy::math::DVec2::as_uvec2( &_self, ) .into(); @@ -14677,7 +14353,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "as_i64vec2", |_self: Ref| { - let output: Val = ::bevy::math::DVec2::as_i64vec2( + let output: Val = bevy::math::DVec2::as_i64vec2( &_self, ) .into(); @@ -14687,7 +14363,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "as_u64vec2", |_self: Ref| { - let output: Val = ::bevy::math::DVec2::as_u64vec2( + let output: Val = bevy::math::DVec2::as_u64vec2( &_self, ) .into(); @@ -14697,10 +14373,9 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "mul", |_self: Val, rhs: Ref| { - let output: Val = ::bevy::math::DVec2::mul( - _self.into_inner(), - &rhs, - ) + let output: Val = >::mul(_self.into_inner(), &rhs) .into(); output }, @@ -14708,10 +14383,9 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "sub", |_self: Val, rhs: Val| { - let output: Val = ::bevy::math::DVec2::sub( - _self.into_inner(), - rhs.into_inner(), - ) + let output: Val = >::sub(_self.into_inner(), rhs.into_inner()) .into(); output }, @@ -14719,17 +14393,19 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "eq", |_self: Ref, other: Ref| { - let output: bool = ::bevy::math::DVec2::eq(&_self, &other).into(); + let output: bool = >::eq(&_self, &other) + .into(); output }, ) .overwrite_script_function( "rem", |_self: Val, rhs: Val| { - let output: Val = ::bevy::math::DVec2::rem( - _self.into_inner(), - rhs.into_inner(), - ) + let output: Val = >::rem(_self.into_inner(), rhs.into_inner()) .into(); output }, @@ -14737,10 +14413,9 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "add", |_self: Val, rhs: f64| { - let output: Val = ::bevy::math::DVec2::add( - _self.into_inner(), - rhs, - ) + let output: Val = >::add(_self.into_inner(), rhs) .into(); output }, @@ -14748,7 +14423,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "clone", |_self: Ref| { - let output: Val = ::bevy::math::DVec2::clone( + let output: Val = ::clone( &_self, ) .into(); @@ -14758,10 +14433,9 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "rem", |_self: Val, rhs: f64| { - let output: Val = ::bevy::math::DVec2::rem( - _self.into_inner(), - rhs, - ) + let output: Val = >::rem(_self.into_inner(), rhs) .into(); output }, @@ -14769,10 +14443,9 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "add", |_self: Val, rhs: Val| { - let output: Val = ::bevy::math::DVec2::add( - _self.into_inner(), - rhs.into_inner(), - ) + let output: Val = >::add(_self.into_inner(), rhs.into_inner()) .into(); output }, @@ -14780,10 +14453,9 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "mul", |_self: Val, rhs: f64| { - let output: Val = ::bevy::math::DVec2::mul( - _self.into_inner(), - rhs, - ) + let output: Val = >::mul(_self.into_inner(), rhs) .into(); output }, @@ -14791,10 +14463,9 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "sub", |_self: Val, rhs: Ref| { - let output: Val = ::bevy::math::DVec2::sub( - _self.into_inner(), - &rhs, - ) + let output: Val = >::sub(_self.into_inner(), &rhs) .into(); output }, @@ -14802,10 +14473,9 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "add", |_self: Val, rhs: Ref| { - let output: Val = ::bevy::math::DVec2::add( - _self.into_inner(), - &rhs, - ) + let output: Val = >::add(_self.into_inner(), &rhs) .into(); output }, @@ -14814,10 +14484,9 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "div", |_self: Val, rhs: Ref| { - let output: Val = ::bevy::math::DVec3::div( - _self.into_inner(), - &rhs, - ) + let output: Val = >::div(_self.into_inner(), &rhs) .into(); output }, @@ -14825,7 +14494,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "neg", |_self: Val| { - let output: Val = ::bevy::math::DVec3::neg( + let output: Val = ::neg( _self.into_inner(), ) .into(); @@ -14835,10 +14504,9 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "div", |_self: Val, rhs: f64| { - let output: Val = ::bevy::math::DVec3::div( - _self.into_inner(), - rhs, - ) + let output: Val = >::div(_self.into_inner(), rhs) .into(); output }, @@ -14846,10 +14514,9 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "mul", |_self: Val, rhs: Val| { - let output: Val = ::bevy::math::DVec3::mul( - _self.into_inner(), - rhs.into_inner(), - ) + let output: Val = >::mul(_self.into_inner(), rhs.into_inner()) .into(); output }, @@ -14857,10 +14524,9 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "sub", |_self: Val, rhs: Ref| { - let output: Val = ::bevy::math::DVec3::sub( - _self.into_inner(), - &rhs, - ) + let output: Val = >::sub(_self.into_inner(), &rhs) .into(); output }, @@ -14868,11 +14534,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "new", |x: f64, y: f64, z: f64| { - let output: Val = ::bevy::math::DVec3::new( - x, - y, - z, - ) + let output: Val = bevy::math::DVec3::new(x, y, z) .into(); output }, @@ -14880,7 +14542,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "splat", |v: f64| { - let output: Val = ::bevy::math::DVec3::splat(v) + let output: Val = bevy::math::DVec3::splat(v) .into(); output }, @@ -14892,7 +14554,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { if_true: Val, if_false: Val| { - let output: Val = ::bevy::math::DVec3::select( + let output: Val = bevy::math::DVec3::select( mask.into_inner(), if_true.into_inner(), if_false.into_inner(), @@ -14904,9 +14566,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "from_array", |a: [f64; 3]| { - let output: Val = ::bevy::math::DVec3::from_array( - a, - ) + let output: Val = bevy::math::DVec3::from_array(a) .into(); output }, @@ -14914,14 +14574,14 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "to_array", |_self: Ref| { - let output: [f64; 3] = ::bevy::math::DVec3::to_array(&_self).into(); + let output: [f64; 3] = bevy::math::DVec3::to_array(&_self).into(); output }, ) .overwrite_script_function( "extend", |_self: Val, w: f64| { - let output: Val = ::bevy::math::DVec3::extend( + let output: Val = bevy::math::DVec3::extend( _self.into_inner(), w, ) @@ -14932,7 +14592,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "truncate", |_self: Val| { - let output: Val = ::bevy::math::DVec3::truncate( + let output: Val = bevy::math::DVec3::truncate( _self.into_inner(), ) .into(); @@ -14942,7 +14602,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "with_x", |_self: Val, x: f64| { - let output: Val = ::bevy::math::DVec3::with_x( + let output: Val = bevy::math::DVec3::with_x( _self.into_inner(), x, ) @@ -14953,7 +14613,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "with_y", |_self: Val, y: f64| { - let output: Val = ::bevy::math::DVec3::with_y( + let output: Val = bevy::math::DVec3::with_y( _self.into_inner(), y, ) @@ -14964,7 +14624,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "with_z", |_self: Val, z: f64| { - let output: Val = ::bevy::math::DVec3::with_z( + let output: Val = bevy::math::DVec3::with_z( _self.into_inner(), z, ) @@ -14975,7 +14635,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "dot", |_self: Val, rhs: Val| { - let output: f64 = ::bevy::math::DVec3::dot( + let output: f64 = bevy::math::DVec3::dot( _self.into_inner(), rhs.into_inner(), ) @@ -14986,7 +14646,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "dot_into_vec", |_self: Val, rhs: Val| { - let output: Val = ::bevy::math::DVec3::dot_into_vec( + let output: Val = bevy::math::DVec3::dot_into_vec( _self.into_inner(), rhs.into_inner(), ) @@ -14997,7 +14657,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "cross", |_self: Val, rhs: Val| { - let output: Val = ::bevy::math::DVec3::cross( + let output: Val = bevy::math::DVec3::cross( _self.into_inner(), rhs.into_inner(), ) @@ -15008,7 +14668,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "min", |_self: Val, rhs: Val| { - let output: Val = ::bevy::math::DVec3::min( + let output: Val = bevy::math::DVec3::min( _self.into_inner(), rhs.into_inner(), ) @@ -15019,7 +14679,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "max", |_self: Val, rhs: Val| { - let output: Val = ::bevy::math::DVec3::max( + let output: Val = bevy::math::DVec3::max( _self.into_inner(), rhs.into_inner(), ) @@ -15034,7 +14694,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { min: Val, max: Val| { - let output: Val = ::bevy::math::DVec3::clamp( + let output: Val = bevy::math::DVec3::clamp( _self.into_inner(), min.into_inner(), max.into_inner(), @@ -15046,9 +14706,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "min_element", |_self: Val| { - let output: f64 = ::bevy::math::DVec3::min_element( - _self.into_inner(), - ) + let output: f64 = bevy::math::DVec3::min_element(_self.into_inner()) .into(); output }, @@ -15056,9 +14714,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "max_element", |_self: Val| { - let output: f64 = ::bevy::math::DVec3::max_element( - _self.into_inner(), - ) + let output: f64 = bevy::math::DVec3::max_element(_self.into_inner()) .into(); output }, @@ -15066,9 +14722,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "element_sum", |_self: Val| { - let output: f64 = ::bevy::math::DVec3::element_sum( - _self.into_inner(), - ) + let output: f64 = bevy::math::DVec3::element_sum(_self.into_inner()) .into(); output }, @@ -15076,7 +14730,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "element_product", |_self: Val| { - let output: f64 = ::bevy::math::DVec3::element_product( + let output: f64 = bevy::math::DVec3::element_product( _self.into_inner(), ) .into(); @@ -15086,7 +14740,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "cmpeq", |_self: Val, rhs: Val| { - let output: Val = ::bevy::math::DVec3::cmpeq( + let output: Val = bevy::math::DVec3::cmpeq( _self.into_inner(), rhs.into_inner(), ) @@ -15097,7 +14751,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "cmpne", |_self: Val, rhs: Val| { - let output: Val = ::bevy::math::DVec3::cmpne( + let output: Val = bevy::math::DVec3::cmpne( _self.into_inner(), rhs.into_inner(), ) @@ -15108,7 +14762,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "cmpge", |_self: Val, rhs: Val| { - let output: Val = ::bevy::math::DVec3::cmpge( + let output: Val = bevy::math::DVec3::cmpge( _self.into_inner(), rhs.into_inner(), ) @@ -15119,7 +14773,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "cmpgt", |_self: Val, rhs: Val| { - let output: Val = ::bevy::math::DVec3::cmpgt( + let output: Val = bevy::math::DVec3::cmpgt( _self.into_inner(), rhs.into_inner(), ) @@ -15130,7 +14784,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "cmple", |_self: Val, rhs: Val| { - let output: Val = ::bevy::math::DVec3::cmple( + let output: Val = bevy::math::DVec3::cmple( _self.into_inner(), rhs.into_inner(), ) @@ -15141,7 +14795,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "cmplt", |_self: Val, rhs: Val| { - let output: Val = ::bevy::math::DVec3::cmplt( + let output: Val = bevy::math::DVec3::cmplt( _self.into_inner(), rhs.into_inner(), ) @@ -15152,7 +14806,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "abs", |_self: Val| { - let output: Val = ::bevy::math::DVec3::abs( + let output: Val = bevy::math::DVec3::abs( _self.into_inner(), ) .into(); @@ -15162,7 +14816,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "signum", |_self: Val| { - let output: Val = ::bevy::math::DVec3::signum( + let output: Val = bevy::math::DVec3::signum( _self.into_inner(), ) .into(); @@ -15172,7 +14826,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "copysign", |_self: Val, rhs: Val| { - let output: Val = ::bevy::math::DVec3::copysign( + let output: Val = bevy::math::DVec3::copysign( _self.into_inner(), rhs.into_inner(), ) @@ -15183,7 +14837,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "is_negative_bitmask", |_self: Val| { - let output: u32 = ::bevy::math::DVec3::is_negative_bitmask( + let output: u32 = bevy::math::DVec3::is_negative_bitmask( _self.into_inner(), ) .into(); @@ -15193,7 +14847,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "is_finite", |_self: Val| { - let output: bool = ::bevy::math::DVec3::is_finite(_self.into_inner()) + let output: bool = bevy::math::DVec3::is_finite(_self.into_inner()) .into(); output }, @@ -15201,7 +14855,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "is_finite_mask", |_self: Val| { - let output: Val = ::bevy::math::DVec3::is_finite_mask( + let output: Val = bevy::math::DVec3::is_finite_mask( _self.into_inner(), ) .into(); @@ -15211,7 +14865,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "is_nan", |_self: Val| { - let output: bool = ::bevy::math::DVec3::is_nan(_self.into_inner()) + let output: bool = bevy::math::DVec3::is_nan(_self.into_inner()) .into(); output }, @@ -15219,7 +14873,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "is_nan_mask", |_self: Val| { - let output: Val = ::bevy::math::DVec3::is_nan_mask( + let output: Val = bevy::math::DVec3::is_nan_mask( _self.into_inner(), ) .into(); @@ -15229,7 +14883,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "length", |_self: Val| { - let output: f64 = ::bevy::math::DVec3::length(_self.into_inner()) + let output: f64 = bevy::math::DVec3::length(_self.into_inner()) .into(); output }, @@ -15237,7 +14891,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "length_squared", |_self: Val| { - let output: f64 = ::bevy::math::DVec3::length_squared( + let output: f64 = bevy::math::DVec3::length_squared( _self.into_inner(), ) .into(); @@ -15247,9 +14901,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "length_recip", |_self: Val| { - let output: f64 = ::bevy::math::DVec3::length_recip( - _self.into_inner(), - ) + let output: f64 = bevy::math::DVec3::length_recip(_self.into_inner()) .into(); output }, @@ -15257,7 +14909,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "distance", |_self: Val, rhs: Val| { - let output: f64 = ::bevy::math::DVec3::distance( + let output: f64 = bevy::math::DVec3::distance( _self.into_inner(), rhs.into_inner(), ) @@ -15268,7 +14920,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "distance_squared", |_self: Val, rhs: Val| { - let output: f64 = ::bevy::math::DVec3::distance_squared( + let output: f64 = bevy::math::DVec3::distance_squared( _self.into_inner(), rhs.into_inner(), ) @@ -15279,7 +14931,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "div_euclid", |_self: Val, rhs: Val| { - let output: Val = ::bevy::math::DVec3::div_euclid( + let output: Val = bevy::math::DVec3::div_euclid( _self.into_inner(), rhs.into_inner(), ) @@ -15290,7 +14942,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "rem_euclid", |_self: Val, rhs: Val| { - let output: Val = ::bevy::math::DVec3::rem_euclid( + let output: Val = bevy::math::DVec3::rem_euclid( _self.into_inner(), rhs.into_inner(), ) @@ -15301,7 +14953,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "normalize", |_self: Val| { - let output: Val = ::bevy::math::DVec3::normalize( + let output: Val = bevy::math::DVec3::normalize( _self.into_inner(), ) .into(); @@ -15311,7 +14963,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "normalize_or", |_self: Val, fallback: Val| { - let output: Val = ::bevy::math::DVec3::normalize_or( + let output: Val = bevy::math::DVec3::normalize_or( _self.into_inner(), fallback.into_inner(), ) @@ -15322,7 +14974,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "normalize_or_zero", |_self: Val| { - let output: Val = ::bevy::math::DVec3::normalize_or_zero( + let output: Val = bevy::math::DVec3::normalize_or_zero( _self.into_inner(), ) .into(); @@ -15332,7 +14984,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "is_normalized", |_self: Val| { - let output: bool = ::bevy::math::DVec3::is_normalized( + let output: bool = bevy::math::DVec3::is_normalized( _self.into_inner(), ) .into(); @@ -15342,7 +14994,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "project_onto", |_self: Val, rhs: Val| { - let output: Val = ::bevy::math::DVec3::project_onto( + let output: Val = bevy::math::DVec3::project_onto( _self.into_inner(), rhs.into_inner(), ) @@ -15353,7 +15005,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "reject_from", |_self: Val, rhs: Val| { - let output: Val = ::bevy::math::DVec3::reject_from( + let output: Val = bevy::math::DVec3::reject_from( _self.into_inner(), rhs.into_inner(), ) @@ -15364,7 +15016,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "project_onto_normalized", |_self: Val, rhs: Val| { - let output: Val = ::bevy::math::DVec3::project_onto_normalized( + let output: Val = bevy::math::DVec3::project_onto_normalized( _self.into_inner(), rhs.into_inner(), ) @@ -15375,7 +15027,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "reject_from_normalized", |_self: Val, rhs: Val| { - let output: Val = ::bevy::math::DVec3::reject_from_normalized( + let output: Val = bevy::math::DVec3::reject_from_normalized( _self.into_inner(), rhs.into_inner(), ) @@ -15386,7 +15038,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "round", |_self: Val| { - let output: Val = ::bevy::math::DVec3::round( + let output: Val = bevy::math::DVec3::round( _self.into_inner(), ) .into(); @@ -15396,7 +15048,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "floor", |_self: Val| { - let output: Val = ::bevy::math::DVec3::floor( + let output: Val = bevy::math::DVec3::floor( _self.into_inner(), ) .into(); @@ -15406,7 +15058,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "ceil", |_self: Val| { - let output: Val = ::bevy::math::DVec3::ceil( + let output: Val = bevy::math::DVec3::ceil( _self.into_inner(), ) .into(); @@ -15416,7 +15068,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "trunc", |_self: Val| { - let output: Val = ::bevy::math::DVec3::trunc( + let output: Val = bevy::math::DVec3::trunc( _self.into_inner(), ) .into(); @@ -15426,7 +15078,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "fract", |_self: Val| { - let output: Val = ::bevy::math::DVec3::fract( + let output: Val = bevy::math::DVec3::fract( _self.into_inner(), ) .into(); @@ -15436,7 +15088,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "fract_gl", |_self: Val| { - let output: Val = ::bevy::math::DVec3::fract_gl( + let output: Val = bevy::math::DVec3::fract_gl( _self.into_inner(), ) .into(); @@ -15446,7 +15098,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "exp", |_self: Val| { - let output: Val = ::bevy::math::DVec3::exp( + let output: Val = bevy::math::DVec3::exp( _self.into_inner(), ) .into(); @@ -15456,7 +15108,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "powf", |_self: Val, n: f64| { - let output: Val = ::bevy::math::DVec3::powf( + let output: Val = bevy::math::DVec3::powf( _self.into_inner(), n, ) @@ -15467,7 +15119,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "recip", |_self: Val| { - let output: Val = ::bevy::math::DVec3::recip( + let output: Val = bevy::math::DVec3::recip( _self.into_inner(), ) .into(); @@ -15477,7 +15129,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "lerp", |_self: Val, rhs: Val, s: f64| { - let output: Val = ::bevy::math::DVec3::lerp( + let output: Val = bevy::math::DVec3::lerp( _self.into_inner(), rhs.into_inner(), s, @@ -15489,7 +15141,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "move_towards", |_self: Ref, rhs: Val, d: f64| { - let output: Val = ::bevy::math::DVec3::move_towards( + let output: Val = bevy::math::DVec3::move_towards( &_self, rhs.into_inner(), d, @@ -15501,7 +15153,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "midpoint", |_self: Val, rhs: Val| { - let output: Val = ::bevy::math::DVec3::midpoint( + let output: Val = bevy::math::DVec3::midpoint( _self.into_inner(), rhs.into_inner(), ) @@ -15516,7 +15168,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { rhs: Val, max_abs_diff: f64| { - let output: bool = ::bevy::math::DVec3::abs_diff_eq( + let output: bool = bevy::math::DVec3::abs_diff_eq( _self.into_inner(), rhs.into_inner(), max_abs_diff, @@ -15528,7 +15180,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "clamp_length", |_self: Val, min: f64, max: f64| { - let output: Val = ::bevy::math::DVec3::clamp_length( + let output: Val = bevy::math::DVec3::clamp_length( _self.into_inner(), min, max, @@ -15540,7 +15192,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "clamp_length_max", |_self: Val, max: f64| { - let output: Val = ::bevy::math::DVec3::clamp_length_max( + let output: Val = bevy::math::DVec3::clamp_length_max( _self.into_inner(), max, ) @@ -15551,7 +15203,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "clamp_length_min", |_self: Val, min: f64| { - let output: Val = ::bevy::math::DVec3::clamp_length_min( + let output: Val = bevy::math::DVec3::clamp_length_min( _self.into_inner(), min, ) @@ -15566,7 +15218,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { a: Val, b: Val| { - let output: Val = ::bevy::math::DVec3::mul_add( + let output: Val = bevy::math::DVec3::mul_add( _self.into_inner(), a.into_inner(), b.into_inner(), @@ -15578,7 +15230,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "reflect", |_self: Val, normal: Val| { - let output: Val = ::bevy::math::DVec3::reflect( + let output: Val = bevy::math::DVec3::reflect( _self.into_inner(), normal.into_inner(), ) @@ -15593,7 +15245,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { normal: Val, eta: f64| { - let output: Val = ::bevy::math::DVec3::refract( + let output: Val = bevy::math::DVec3::refract( _self.into_inner(), normal.into_inner(), eta, @@ -15605,7 +15257,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "angle_between", |_self: Val, rhs: Val| { - let output: f64 = ::bevy::math::DVec3::angle_between( + let output: f64 = bevy::math::DVec3::angle_between( _self.into_inner(), rhs.into_inner(), ) @@ -15616,7 +15268,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "any_orthogonal_vector", |_self: Ref| { - let output: Val = ::bevy::math::DVec3::any_orthogonal_vector( + let output: Val = bevy::math::DVec3::any_orthogonal_vector( &_self, ) .into(); @@ -15626,7 +15278,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "any_orthonormal_vector", |_self: Ref| { - let output: Val = ::bevy::math::DVec3::any_orthonormal_vector( + let output: Val = bevy::math::DVec3::any_orthonormal_vector( &_self, ) .into(); @@ -15636,7 +15288,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "as_vec3", |_self: Ref| { - let output: Val = ::bevy::math::DVec3::as_vec3( + let output: Val = bevy::math::DVec3::as_vec3( &_self, ) .into(); @@ -15646,7 +15298,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "as_vec3a", |_self: Ref| { - let output: Val = ::bevy::math::DVec3::as_vec3a( + let output: Val = bevy::math::DVec3::as_vec3a( &_self, ) .into(); @@ -15656,7 +15308,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "as_ivec3", |_self: Ref| { - let output: Val = ::bevy::math::DVec3::as_ivec3( + let output: Val = bevy::math::DVec3::as_ivec3( &_self, ) .into(); @@ -15666,7 +15318,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "as_uvec3", |_self: Ref| { - let output: Val = ::bevy::math::DVec3::as_uvec3( + let output: Val = bevy::math::DVec3::as_uvec3( &_self, ) .into(); @@ -15676,7 +15328,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "as_i64vec3", |_self: Ref| { - let output: Val = ::bevy::math::DVec3::as_i64vec3( + let output: Val = bevy::math::DVec3::as_i64vec3( &_self, ) .into(); @@ -15686,7 +15338,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "as_u64vec3", |_self: Ref| { - let output: Val = ::bevy::math::DVec3::as_u64vec3( + let output: Val = bevy::math::DVec3::as_u64vec3( &_self, ) .into(); @@ -15696,10 +15348,9 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "sub", |_self: Val, rhs: f64| { - let output: Val = ::bevy::math::DVec3::sub( - _self.into_inner(), - rhs, - ) + let output: Val = >::sub(_self.into_inner(), rhs) .into(); output }, @@ -15707,10 +15358,9 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "rem", |_self: Val, rhs: f64| { - let output: Val = ::bevy::math::DVec3::rem( - _self.into_inner(), - rhs, - ) + let output: Val = >::rem(_self.into_inner(), rhs) .into(); output }, @@ -15718,10 +15368,9 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "div", |_self: Val, rhs: Val| { - let output: Val = ::bevy::math::DVec3::div( - _self.into_inner(), - rhs.into_inner(), - ) + let output: Val = >::div(_self.into_inner(), rhs.into_inner()) .into(); output }, @@ -15729,17 +15378,19 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "eq", |_self: Ref, other: Ref| { - let output: bool = ::bevy::math::DVec3::eq(&_self, &other).into(); + let output: bool = >::eq(&_self, &other) + .into(); output }, ) .overwrite_script_function( "rem", |_self: Val, rhs: Ref| { - let output: Val = ::bevy::math::DVec3::rem( - _self.into_inner(), - &rhs, - ) + let output: Val = >::rem(_self.into_inner(), &rhs) .into(); output }, @@ -15747,10 +15398,9 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "sub", |_self: Val, rhs: Val| { - let output: Val = ::bevy::math::DVec3::sub( - _self.into_inner(), - rhs.into_inner(), - ) + let output: Val = >::sub(_self.into_inner(), rhs.into_inner()) .into(); output }, @@ -15758,10 +15408,9 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "add", |_self: Val, rhs: f64| { - let output: Val = ::bevy::math::DVec3::add( - _self.into_inner(), - rhs, - ) + let output: Val = >::add(_self.into_inner(), rhs) .into(); output }, @@ -15769,10 +15418,9 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "add", |_self: Val, rhs: Ref| { - let output: Val = ::bevy::math::DVec3::add( - _self.into_inner(), - &rhs, - ) + let output: Val = >::add(_self.into_inner(), &rhs) .into(); output }, @@ -15780,10 +15428,9 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "mul", |_self: Val, rhs: Ref| { - let output: Val = ::bevy::math::DVec3::mul( - _self.into_inner(), - &rhs, - ) + let output: Val = >::mul(_self.into_inner(), &rhs) .into(); output }, @@ -15791,10 +15438,9 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "mul", |_self: Val, rhs: f64| { - let output: Val = ::bevy::math::DVec3::mul( - _self.into_inner(), - rhs, - ) + let output: Val = >::mul(_self.into_inner(), rhs) .into(); output }, @@ -15802,10 +15448,9 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "rem", |_self: Val, rhs: Val| { - let output: Val = ::bevy::math::DVec3::rem( - _self.into_inner(), - rhs.into_inner(), - ) + let output: Val = >::rem(_self.into_inner(), rhs.into_inner()) .into(); output }, @@ -15813,10 +15458,9 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "add", |_self: Val, rhs: Val| { - let output: Val = ::bevy::math::DVec3::add( - _self.into_inner(), - rhs.into_inner(), - ) + let output: Val = >::add(_self.into_inner(), rhs.into_inner()) .into(); output }, @@ -15824,7 +15468,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "clone", |_self: Ref| { - let output: Val = ::bevy::math::DVec3::clone( + let output: Val = ::clone( &_self, ) .into(); @@ -15835,17 +15479,19 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "eq", |_self: Ref, other: Ref| { - let output: bool = ::bevy::math::DVec4::eq(&_self, &other).into(); + let output: bool = >::eq(&_self, &other) + .into(); output }, ) .overwrite_script_function( "mul", |_self: Val, rhs: Ref| { - let output: Val = ::bevy::math::DVec4::mul( - _self.into_inner(), - &rhs, - ) + let output: Val = >::mul(_self.into_inner(), &rhs) .into(); output }, @@ -15853,10 +15499,9 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "add", |_self: Val, rhs: Val| { - let output: Val = ::bevy::math::DVec4::add( - _self.into_inner(), - rhs.into_inner(), - ) + let output: Val = >::add(_self.into_inner(), rhs.into_inner()) .into(); output }, @@ -15864,10 +15509,9 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "sub", |_self: Val, rhs: f64| { - let output: Val = ::bevy::math::DVec4::sub( - _self.into_inner(), - rhs, - ) + let output: Val = >::sub(_self.into_inner(), rhs) .into(); output }, @@ -15875,10 +15519,9 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "div", |_self: Val, rhs: f64| { - let output: Val = ::bevy::math::DVec4::div( - _self.into_inner(), - rhs, - ) + let output: Val = >::div(_self.into_inner(), rhs) .into(); output }, @@ -15886,10 +15529,9 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "div", |_self: Val, rhs: Val| { - let output: Val = ::bevy::math::DVec4::div( - _self.into_inner(), - rhs.into_inner(), - ) + let output: Val = >::div(_self.into_inner(), rhs.into_inner()) .into(); output }, @@ -15897,10 +15539,9 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "rem", |_self: Val, rhs: Ref| { - let output: Val = ::bevy::math::DVec4::rem( - _self.into_inner(), - &rhs, - ) + let output: Val = >::rem(_self.into_inner(), &rhs) .into(); output }, @@ -15908,10 +15549,9 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "mul", |_self: Val, rhs: f64| { - let output: Val = ::bevy::math::DVec4::mul( - _self.into_inner(), - rhs, - ) + let output: Val = >::mul(_self.into_inner(), rhs) .into(); output }, @@ -15919,10 +15559,9 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "rem", |_self: Val, rhs: f64| { - let output: Val = ::bevy::math::DVec4::rem( - _self.into_inner(), - rhs, - ) + let output: Val = >::rem(_self.into_inner(), rhs) .into(); output }, @@ -15930,21 +15569,19 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "add", |_self: Val, rhs: Ref| { - let output: Val = ::bevy::math::DVec4::add( - _self.into_inner(), - &rhs, - ) + let output: Val = >::add(_self.into_inner(), &rhs) .into(); output }, ) .overwrite_script_function( "sub", - |_self: Val, rhs: Val| { - let output: Val = ::bevy::math::DVec4::sub( - _self.into_inner(), - rhs.into_inner(), - ) + |_self: Val, rhs: Val| { + let output: Val = >::sub(_self.into_inner(), rhs.into_inner()) .into(); output }, @@ -15952,7 +15589,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "clone", |_self: Ref| { - let output: Val = ::bevy::math::DVec4::clone( + let output: Val = ::clone( &_self, ) .into(); @@ -15962,10 +15599,9 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "div", |_self: Val, rhs: Ref| { - let output: Val = ::bevy::math::DVec4::div( - _self.into_inner(), - &rhs, - ) + let output: Val = >::div(_self.into_inner(), &rhs) .into(); output }, @@ -15973,10 +15609,9 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "rem", |_self: Val, rhs: Val| { - let output: Val = ::bevy::math::DVec4::rem( - _self.into_inner(), - rhs.into_inner(), - ) + let output: Val = >::rem(_self.into_inner(), rhs.into_inner()) .into(); output }, @@ -15984,10 +15619,9 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "sub", |_self: Val, rhs: Ref| { - let output: Val = ::bevy::math::DVec4::sub( - _self.into_inner(), - &rhs, - ) + let output: Val = >::sub(_self.into_inner(), &rhs) .into(); output }, @@ -15995,10 +15629,9 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "mul", |_self: Val, rhs: Val| { - let output: Val = ::bevy::math::DVec4::mul( - _self.into_inner(), - rhs.into_inner(), - ) + let output: Val = >::mul(_self.into_inner(), rhs.into_inner()) .into(); output }, @@ -16006,7 +15639,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "neg", |_self: Val| { - let output: Val = ::bevy::math::DVec4::neg( + let output: Val = ::neg( _self.into_inner(), ) .into(); @@ -16016,7 +15649,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "new", |x: f64, y: f64, z: f64, w: f64| { - let output: Val = ::bevy::math::DVec4::new( + let output: Val = bevy::math::DVec4::new( x, y, z, @@ -16029,7 +15662,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "splat", |v: f64| { - let output: Val = ::bevy::math::DVec4::splat(v) + let output: Val = bevy::math::DVec4::splat(v) .into(); output }, @@ -16041,7 +15674,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { if_true: Val, if_false: Val| { - let output: Val = ::bevy::math::DVec4::select( + let output: Val = bevy::math::DVec4::select( mask.into_inner(), if_true.into_inner(), if_false.into_inner(), @@ -16053,9 +15686,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "from_array", |a: [f64; 4]| { - let output: Val = ::bevy::math::DVec4::from_array( - a, - ) + let output: Val = bevy::math::DVec4::from_array(a) .into(); output }, @@ -16063,14 +15694,14 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "to_array", |_self: Ref| { - let output: [f64; 4] = ::bevy::math::DVec4::to_array(&_self).into(); + let output: [f64; 4] = bevy::math::DVec4::to_array(&_self).into(); output }, ) .overwrite_script_function( "truncate", |_self: Val| { - let output: Val = ::bevy::math::DVec4::truncate( + let output: Val = bevy::math::DVec4::truncate( _self.into_inner(), ) .into(); @@ -16080,7 +15711,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "with_x", |_self: Val, x: f64| { - let output: Val = ::bevy::math::DVec4::with_x( + let output: Val = bevy::math::DVec4::with_x( _self.into_inner(), x, ) @@ -16091,7 +15722,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "with_y", |_self: Val, y: f64| { - let output: Val = ::bevy::math::DVec4::with_y( + let output: Val = bevy::math::DVec4::with_y( _self.into_inner(), y, ) @@ -16102,7 +15733,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "with_z", |_self: Val, z: f64| { - let output: Val = ::bevy::math::DVec4::with_z( + let output: Val = bevy::math::DVec4::with_z( _self.into_inner(), z, ) @@ -16113,7 +15744,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "with_w", |_self: Val, w: f64| { - let output: Val = ::bevy::math::DVec4::with_w( + let output: Val = bevy::math::DVec4::with_w( _self.into_inner(), w, ) @@ -16124,7 +15755,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "dot", |_self: Val, rhs: Val| { - let output: f64 = ::bevy::math::DVec4::dot( + let output: f64 = bevy::math::DVec4::dot( _self.into_inner(), rhs.into_inner(), ) @@ -16135,7 +15766,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "dot_into_vec", |_self: Val, rhs: Val| { - let output: Val = ::bevy::math::DVec4::dot_into_vec( + let output: Val = bevy::math::DVec4::dot_into_vec( _self.into_inner(), rhs.into_inner(), ) @@ -16146,7 +15777,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "min", |_self: Val, rhs: Val| { - let output: Val = ::bevy::math::DVec4::min( + let output: Val = bevy::math::DVec4::min( _self.into_inner(), rhs.into_inner(), ) @@ -16157,7 +15788,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "max", |_self: Val, rhs: Val| { - let output: Val = ::bevy::math::DVec4::max( + let output: Val = bevy::math::DVec4::max( _self.into_inner(), rhs.into_inner(), ) @@ -16172,7 +15803,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { min: Val, max: Val| { - let output: Val = ::bevy::math::DVec4::clamp( + let output: Val = bevy::math::DVec4::clamp( _self.into_inner(), min.into_inner(), max.into_inner(), @@ -16184,9 +15815,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "min_element", |_self: Val| { - let output: f64 = ::bevy::math::DVec4::min_element( - _self.into_inner(), - ) + let output: f64 = bevy::math::DVec4::min_element(_self.into_inner()) .into(); output }, @@ -16194,9 +15823,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "max_element", |_self: Val| { - let output: f64 = ::bevy::math::DVec4::max_element( - _self.into_inner(), - ) + let output: f64 = bevy::math::DVec4::max_element(_self.into_inner()) .into(); output }, @@ -16204,9 +15831,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "element_sum", |_self: Val| { - let output: f64 = ::bevy::math::DVec4::element_sum( - _self.into_inner(), - ) + let output: f64 = bevy::math::DVec4::element_sum(_self.into_inner()) .into(); output }, @@ -16214,7 +15839,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "element_product", |_self: Val| { - let output: f64 = ::bevy::math::DVec4::element_product( + let output: f64 = bevy::math::DVec4::element_product( _self.into_inner(), ) .into(); @@ -16224,7 +15849,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "cmpeq", |_self: Val, rhs: Val| { - let output: Val = ::bevy::math::DVec4::cmpeq( + let output: Val = bevy::math::DVec4::cmpeq( _self.into_inner(), rhs.into_inner(), ) @@ -16235,7 +15860,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "cmpne", |_self: Val, rhs: Val| { - let output: Val = ::bevy::math::DVec4::cmpne( + let output: Val = bevy::math::DVec4::cmpne( _self.into_inner(), rhs.into_inner(), ) @@ -16246,7 +15871,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "cmpge", |_self: Val, rhs: Val| { - let output: Val = ::bevy::math::DVec4::cmpge( + let output: Val = bevy::math::DVec4::cmpge( _self.into_inner(), rhs.into_inner(), ) @@ -16257,7 +15882,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "cmpgt", |_self: Val, rhs: Val| { - let output: Val = ::bevy::math::DVec4::cmpgt( + let output: Val = bevy::math::DVec4::cmpgt( _self.into_inner(), rhs.into_inner(), ) @@ -16268,7 +15893,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "cmple", |_self: Val, rhs: Val| { - let output: Val = ::bevy::math::DVec4::cmple( + let output: Val = bevy::math::DVec4::cmple( _self.into_inner(), rhs.into_inner(), ) @@ -16279,7 +15904,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "cmplt", |_self: Val, rhs: Val| { - let output: Val = ::bevy::math::DVec4::cmplt( + let output: Val = bevy::math::DVec4::cmplt( _self.into_inner(), rhs.into_inner(), ) @@ -16290,7 +15915,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "abs", |_self: Val| { - let output: Val = ::bevy::math::DVec4::abs( + let output: Val = bevy::math::DVec4::abs( _self.into_inner(), ) .into(); @@ -16300,7 +15925,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "signum", |_self: Val| { - let output: Val = ::bevy::math::DVec4::signum( + let output: Val = bevy::math::DVec4::signum( _self.into_inner(), ) .into(); @@ -16310,7 +15935,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "copysign", |_self: Val, rhs: Val| { - let output: Val = ::bevy::math::DVec4::copysign( + let output: Val = bevy::math::DVec4::copysign( _self.into_inner(), rhs.into_inner(), ) @@ -16321,7 +15946,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "is_negative_bitmask", |_self: Val| { - let output: u32 = ::bevy::math::DVec4::is_negative_bitmask( + let output: u32 = bevy::math::DVec4::is_negative_bitmask( _self.into_inner(), ) .into(); @@ -16331,7 +15956,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "is_finite", |_self: Val| { - let output: bool = ::bevy::math::DVec4::is_finite(_self.into_inner()) + let output: bool = bevy::math::DVec4::is_finite(_self.into_inner()) .into(); output }, @@ -16339,7 +15964,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "is_finite_mask", |_self: Val| { - let output: Val = ::bevy::math::DVec4::is_finite_mask( + let output: Val = bevy::math::DVec4::is_finite_mask( _self.into_inner(), ) .into(); @@ -16349,7 +15974,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "is_nan", |_self: Val| { - let output: bool = ::bevy::math::DVec4::is_nan(_self.into_inner()) + let output: bool = bevy::math::DVec4::is_nan(_self.into_inner()) .into(); output }, @@ -16357,7 +15982,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "is_nan_mask", |_self: Val| { - let output: Val = ::bevy::math::DVec4::is_nan_mask( + let output: Val = bevy::math::DVec4::is_nan_mask( _self.into_inner(), ) .into(); @@ -16367,7 +15992,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "length", |_self: Val| { - let output: f64 = ::bevy::math::DVec4::length(_self.into_inner()) + let output: f64 = bevy::math::DVec4::length(_self.into_inner()) .into(); output }, @@ -16375,7 +16000,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "length_squared", |_self: Val| { - let output: f64 = ::bevy::math::DVec4::length_squared( + let output: f64 = bevy::math::DVec4::length_squared( _self.into_inner(), ) .into(); @@ -16385,9 +16010,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "length_recip", |_self: Val| { - let output: f64 = ::bevy::math::DVec4::length_recip( - _self.into_inner(), - ) + let output: f64 = bevy::math::DVec4::length_recip(_self.into_inner()) .into(); output }, @@ -16395,7 +16018,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "distance", |_self: Val, rhs: Val| { - let output: f64 = ::bevy::math::DVec4::distance( + let output: f64 = bevy::math::DVec4::distance( _self.into_inner(), rhs.into_inner(), ) @@ -16406,7 +16029,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "distance_squared", |_self: Val, rhs: Val| { - let output: f64 = ::bevy::math::DVec4::distance_squared( + let output: f64 = bevy::math::DVec4::distance_squared( _self.into_inner(), rhs.into_inner(), ) @@ -16417,7 +16040,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "div_euclid", |_self: Val, rhs: Val| { - let output: Val = ::bevy::math::DVec4::div_euclid( + let output: Val = bevy::math::DVec4::div_euclid( _self.into_inner(), rhs.into_inner(), ) @@ -16428,7 +16051,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "rem_euclid", |_self: Val, rhs: Val| { - let output: Val = ::bevy::math::DVec4::rem_euclid( + let output: Val = bevy::math::DVec4::rem_euclid( _self.into_inner(), rhs.into_inner(), ) @@ -16439,7 +16062,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "normalize", |_self: Val| { - let output: Val = ::bevy::math::DVec4::normalize( + let output: Val = bevy::math::DVec4::normalize( _self.into_inner(), ) .into(); @@ -16449,7 +16072,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "normalize_or", |_self: Val, fallback: Val| { - let output: Val = ::bevy::math::DVec4::normalize_or( + let output: Val = bevy::math::DVec4::normalize_or( _self.into_inner(), fallback.into_inner(), ) @@ -16460,7 +16083,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "normalize_or_zero", |_self: Val| { - let output: Val = ::bevy::math::DVec4::normalize_or_zero( + let output: Val = bevy::math::DVec4::normalize_or_zero( _self.into_inner(), ) .into(); @@ -16470,7 +16093,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "is_normalized", |_self: Val| { - let output: bool = ::bevy::math::DVec4::is_normalized( + let output: bool = bevy::math::DVec4::is_normalized( _self.into_inner(), ) .into(); @@ -16480,7 +16103,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "project_onto", |_self: Val, rhs: Val| { - let output: Val = ::bevy::math::DVec4::project_onto( + let output: Val = bevy::math::DVec4::project_onto( _self.into_inner(), rhs.into_inner(), ) @@ -16491,7 +16114,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "reject_from", |_self: Val, rhs: Val| { - let output: Val = ::bevy::math::DVec4::reject_from( + let output: Val = bevy::math::DVec4::reject_from( _self.into_inner(), rhs.into_inner(), ) @@ -16502,7 +16125,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "project_onto_normalized", |_self: Val, rhs: Val| { - let output: Val = ::bevy::math::DVec4::project_onto_normalized( + let output: Val = bevy::math::DVec4::project_onto_normalized( _self.into_inner(), rhs.into_inner(), ) @@ -16513,7 +16136,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "reject_from_normalized", |_self: Val, rhs: Val| { - let output: Val = ::bevy::math::DVec4::reject_from_normalized( + let output: Val = bevy::math::DVec4::reject_from_normalized( _self.into_inner(), rhs.into_inner(), ) @@ -16524,7 +16147,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "round", |_self: Val| { - let output: Val = ::bevy::math::DVec4::round( + let output: Val = bevy::math::DVec4::round( _self.into_inner(), ) .into(); @@ -16534,7 +16157,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "floor", |_self: Val| { - let output: Val = ::bevy::math::DVec4::floor( + let output: Val = bevy::math::DVec4::floor( _self.into_inner(), ) .into(); @@ -16544,7 +16167,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "ceil", |_self: Val| { - let output: Val = ::bevy::math::DVec4::ceil( + let output: Val = bevy::math::DVec4::ceil( _self.into_inner(), ) .into(); @@ -16554,7 +16177,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "trunc", |_self: Val| { - let output: Val = ::bevy::math::DVec4::trunc( + let output: Val = bevy::math::DVec4::trunc( _self.into_inner(), ) .into(); @@ -16564,7 +16187,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "fract", |_self: Val| { - let output: Val = ::bevy::math::DVec4::fract( + let output: Val = bevy::math::DVec4::fract( _self.into_inner(), ) .into(); @@ -16574,7 +16197,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "fract_gl", |_self: Val| { - let output: Val = ::bevy::math::DVec4::fract_gl( + let output: Val = bevy::math::DVec4::fract_gl( _self.into_inner(), ) .into(); @@ -16584,7 +16207,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "exp", |_self: Val| { - let output: Val = ::bevy::math::DVec4::exp( + let output: Val = bevy::math::DVec4::exp( _self.into_inner(), ) .into(); @@ -16594,7 +16217,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "powf", |_self: Val, n: f64| { - let output: Val = ::bevy::math::DVec4::powf( + let output: Val = bevy::math::DVec4::powf( _self.into_inner(), n, ) @@ -16605,7 +16228,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "recip", |_self: Val| { - let output: Val = ::bevy::math::DVec4::recip( + let output: Val = bevy::math::DVec4::recip( _self.into_inner(), ) .into(); @@ -16615,7 +16238,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "lerp", |_self: Val, rhs: Val, s: f64| { - let output: Val = ::bevy::math::DVec4::lerp( + let output: Val = bevy::math::DVec4::lerp( _self.into_inner(), rhs.into_inner(), s, @@ -16627,7 +16250,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "move_towards", |_self: Ref, rhs: Val, d: f64| { - let output: Val = ::bevy::math::DVec4::move_towards( + let output: Val = bevy::math::DVec4::move_towards( &_self, rhs.into_inner(), d, @@ -16639,7 +16262,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "midpoint", |_self: Val, rhs: Val| { - let output: Val = ::bevy::math::DVec4::midpoint( + let output: Val = bevy::math::DVec4::midpoint( _self.into_inner(), rhs.into_inner(), ) @@ -16654,7 +16277,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { rhs: Val, max_abs_diff: f64| { - let output: bool = ::bevy::math::DVec4::abs_diff_eq( + let output: bool = bevy::math::DVec4::abs_diff_eq( _self.into_inner(), rhs.into_inner(), max_abs_diff, @@ -16666,7 +16289,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "clamp_length", |_self: Val, min: f64, max: f64| { - let output: Val = ::bevy::math::DVec4::clamp_length( + let output: Val = bevy::math::DVec4::clamp_length( _self.into_inner(), min, max, @@ -16678,7 +16301,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "clamp_length_max", |_self: Val, max: f64| { - let output: Val = ::bevy::math::DVec4::clamp_length_max( + let output: Val = bevy::math::DVec4::clamp_length_max( _self.into_inner(), max, ) @@ -16689,7 +16312,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "clamp_length_min", |_self: Val, min: f64| { - let output: Val = ::bevy::math::DVec4::clamp_length_min( + let output: Val = bevy::math::DVec4::clamp_length_min( _self.into_inner(), min, ) @@ -16704,7 +16327,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { a: Val, b: Val| { - let output: Val = ::bevy::math::DVec4::mul_add( + let output: Val = bevy::math::DVec4::mul_add( _self.into_inner(), a.into_inner(), b.into_inner(), @@ -16716,7 +16339,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "reflect", |_self: Val, normal: Val| { - let output: Val = ::bevy::math::DVec4::reflect( + let output: Val = bevy::math::DVec4::reflect( _self.into_inner(), normal.into_inner(), ) @@ -16731,7 +16354,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { normal: Val, eta: f64| { - let output: Val = ::bevy::math::DVec4::refract( + let output: Val = bevy::math::DVec4::refract( _self.into_inner(), normal.into_inner(), eta, @@ -16743,7 +16366,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "as_vec4", |_self: Ref| { - let output: Val = ::bevy::math::DVec4::as_vec4( + let output: Val = bevy::math::DVec4::as_vec4( &_self, ) .into(); @@ -16753,7 +16376,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "as_ivec4", |_self: Ref| { - let output: Val = ::bevy::math::DVec4::as_ivec4( + let output: Val = bevy::math::DVec4::as_ivec4( &_self, ) .into(); @@ -16763,7 +16386,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "as_uvec4", |_self: Ref| { - let output: Val = ::bevy::math::DVec4::as_uvec4( + let output: Val = bevy::math::DVec4::as_uvec4( &_self, ) .into(); @@ -16773,7 +16396,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "as_i64vec4", |_self: Ref| { - let output: Val = ::bevy::math::DVec4::as_i64vec4( + let output: Val = bevy::math::DVec4::as_i64vec4( &_self, ) .into(); @@ -16783,7 +16406,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "as_u64vec4", |_self: Ref| { - let output: Val = ::bevy::math::DVec4::as_u64vec4( + let output: Val = bevy::math::DVec4::as_u64vec4( &_self, ) .into(); @@ -16793,10 +16416,9 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "add", |_self: Val, rhs: f64| { - let output: Val = ::bevy::math::DVec4::add( - _self.into_inner(), - rhs, - ) + let output: Val = >::add(_self.into_inner(), rhs) .into(); output }, @@ -16805,10 +16427,9 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "mul", |_self: Val, rhs: Val| { - let output: Val = ::bevy::math::Mat2::mul( - _self.into_inner(), - rhs.into_inner(), - ) + let output: Val = >::mul(_self.into_inner(), rhs.into_inner()) .into(); output }, @@ -16816,10 +16437,9 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "div", |_self: Val, rhs: f32| { - let output: Val = ::bevy::math::Mat2::div( - _self.into_inner(), - rhs, - ) + let output: Val = >::div(_self.into_inner(), rhs) .into(); output }, @@ -16827,10 +16447,9 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "sub", |_self: Val, rhs: Val| { - let output: Val = ::bevy::math::Mat2::sub( - _self.into_inner(), - rhs.into_inner(), - ) + let output: Val = >::sub(_self.into_inner(), rhs.into_inner()) .into(); output }, @@ -16838,7 +16457,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "from_cols", |x_axis: Val, y_axis: Val| { - let output: Val = ::bevy::math::Mat2::from_cols( + let output: Val = bevy::math::Mat2::from_cols( x_axis.into_inner(), y_axis.into_inner(), ) @@ -16849,7 +16468,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "to_cols_array", |_self: Ref| { - let output: [f32; 4] = ::bevy::math::Mat2::to_cols_array(&_self) + let output: [f32; 4] = bevy::math::Mat2::to_cols_array(&_self) .into(); output }, @@ -16857,7 +16476,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "to_cols_array_2d", |_self: Ref| { - let output: [[f32; 2]; 2] = ::bevy::math::Mat2::to_cols_array_2d( + let output: [[f32; 2]; 2] = bevy::math::Mat2::to_cols_array_2d( &_self, ) .into(); @@ -16867,7 +16486,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "from_diagonal", |diagonal: Val| { - let output: Val = ::bevy::math::Mat2::from_diagonal( + let output: Val = bevy::math::Mat2::from_diagonal( diagonal.into_inner(), ) .into(); @@ -16877,7 +16496,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "from_scale_angle", |scale: Val, angle: f32| { - let output: Val = ::bevy::math::Mat2::from_scale_angle( + let output: Val = bevy::math::Mat2::from_scale_angle( scale.into_inner(), angle, ) @@ -16888,7 +16507,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "from_angle", |angle: f32| { - let output: Val = ::bevy::math::Mat2::from_angle( + let output: Val = bevy::math::Mat2::from_angle( angle, ) .into(); @@ -16898,7 +16517,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "from_mat3", |m: Val| { - let output: Val = ::bevy::math::Mat2::from_mat3( + let output: Val = bevy::math::Mat2::from_mat3( m.into_inner(), ) .into(); @@ -16908,7 +16527,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "from_mat3_minor", |m: Val, i: usize, j: usize| { - let output: Val = ::bevy::math::Mat2::from_mat3_minor( + let output: Val = bevy::math::Mat2::from_mat3_minor( m.into_inner(), i, j, @@ -16920,7 +16539,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "from_mat3a", |m: Val| { - let output: Val = ::bevy::math::Mat2::from_mat3a( + let output: Val = bevy::math::Mat2::from_mat3a( m.into_inner(), ) .into(); @@ -16930,7 +16549,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "from_mat3a_minor", |m: Val, i: usize, j: usize| { - let output: Val = ::bevy::math::Mat2::from_mat3a_minor( + let output: Val = bevy::math::Mat2::from_mat3a_minor( m.into_inner(), i, j, @@ -16942,7 +16561,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "col", |_self: Ref, index: usize| { - let output: Val = ::bevy::math::Mat2::col( + let output: Val = bevy::math::Mat2::col( &_self, index, ) @@ -16953,7 +16572,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "row", |_self: Ref, index: usize| { - let output: Val = ::bevy::math::Mat2::row( + let output: Val = bevy::math::Mat2::row( &_self, index, ) @@ -16964,21 +16583,21 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "is_finite", |_self: Ref| { - let output: bool = ::bevy::math::Mat2::is_finite(&_self).into(); + let output: bool = bevy::math::Mat2::is_finite(&_self).into(); output }, ) .overwrite_script_function( "is_nan", |_self: Ref| { - let output: bool = ::bevy::math::Mat2::is_nan(&_self).into(); + let output: bool = bevy::math::Mat2::is_nan(&_self).into(); output }, ) .overwrite_script_function( "transpose", |_self: Ref| { - let output: Val = ::bevy::math::Mat2::transpose( + let output: Val = bevy::math::Mat2::transpose( &_self, ) .into(); @@ -16988,16 +16607,14 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "determinant", |_self: Ref| { - let output: f32 = ::bevy::math::Mat2::determinant(&_self).into(); + let output: f32 = bevy::math::Mat2::determinant(&_self).into(); output }, ) .overwrite_script_function( "inverse", |_self: Ref| { - let output: Val = ::bevy::math::Mat2::inverse( - &_self, - ) + let output: Val = bevy::math::Mat2::inverse(&_self) .into(); output }, @@ -17005,7 +16622,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "mul_vec2", |_self: Ref, rhs: Val| { - let output: Val = ::bevy::math::Mat2::mul_vec2( + let output: Val = bevy::math::Mat2::mul_vec2( &_self, rhs.into_inner(), ) @@ -17016,7 +16633,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "mul_mat2", |_self: Ref, rhs: Ref| { - let output: Val = ::bevy::math::Mat2::mul_mat2( + let output: Val = bevy::math::Mat2::mul_mat2( &_self, &rhs, ) @@ -17027,7 +16644,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "add_mat2", |_self: Ref, rhs: Ref| { - let output: Val = ::bevy::math::Mat2::add_mat2( + let output: Val = bevy::math::Mat2::add_mat2( &_self, &rhs, ) @@ -17038,7 +16655,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "sub_mat2", |_self: Ref, rhs: Ref| { - let output: Val = ::bevy::math::Mat2::sub_mat2( + let output: Val = bevy::math::Mat2::sub_mat2( &_self, &rhs, ) @@ -17049,7 +16666,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "mul_scalar", |_self: Ref, rhs: f32| { - let output: Val = ::bevy::math::Mat2::mul_scalar( + let output: Val = bevy::math::Mat2::mul_scalar( &_self, rhs, ) @@ -17060,7 +16677,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "div_scalar", |_self: Ref, rhs: f32| { - let output: Val = ::bevy::math::Mat2::div_scalar( + let output: Val = bevy::math::Mat2::div_scalar( &_self, rhs, ) @@ -17075,7 +16692,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { rhs: Val, max_abs_diff: f32| { - let output: bool = ::bevy::math::Mat2::abs_diff_eq( + let output: bool = bevy::math::Mat2::abs_diff_eq( &_self, rhs.into_inner(), max_abs_diff, @@ -17087,7 +16704,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "abs", |_self: Ref| { - let output: Val = ::bevy::math::Mat2::abs(&_self) + let output: Val = bevy::math::Mat2::abs(&_self) .into(); output }, @@ -17095,7 +16712,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "as_dmat2", |_self: Ref| { - let output: Val = ::bevy::math::Mat2::as_dmat2( + let output: Val = bevy::math::Mat2::as_dmat2( &_self, ) .into(); @@ -17105,17 +16722,19 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "eq", |_self: Ref, rhs: Ref| { - let output: bool = ::bevy::math::Mat2::eq(&_self, &rhs).into(); + let output: bool = >::eq(&_self, &rhs) + .into(); output }, ) .overwrite_script_function( "add", |_self: Val, rhs: Val| { - let output: Val = ::bevy::math::Mat2::add( - _self.into_inner(), - rhs.into_inner(), - ) + let output: Val = >::add(_self.into_inner(), rhs.into_inner()) .into(); output }, @@ -17123,7 +16742,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "neg", |_self: Val| { - let output: Val = ::bevy::math::Mat2::neg( + let output: Val = ::neg( _self.into_inner(), ) .into(); @@ -17133,10 +16752,9 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "mul", |_self: Val, rhs: f32| { - let output: Val = ::bevy::math::Mat2::mul( - _self.into_inner(), - rhs, - ) + let output: Val = >::mul(_self.into_inner(), rhs) .into(); output }, @@ -17144,10 +16762,9 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "mul", |_self: Val, rhs: Val| { - let output: Val = ::bevy::math::Mat2::mul( - _self.into_inner(), - rhs.into_inner(), - ) + let output: Val = >::mul(_self.into_inner(), rhs.into_inner()) .into(); output }, @@ -17155,7 +16772,9 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "clone", |_self: Ref| { - let output: Val = ::bevy::math::Mat2::clone(&_self) + let output: Val = ::clone( + &_self, + ) .into(); output }, @@ -17164,10 +16783,9 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "mul", |_self: Val, rhs: Val| { - let output: Val = ::bevy::math::Mat3::mul( - _self.into_inner(), - rhs.into_inner(), - ) + let output: Val = >::mul(_self.into_inner(), rhs.into_inner()) .into(); output }, @@ -17175,10 +16793,9 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "add", |_self: Val, rhs: Val| { - let output: Val = ::bevy::math::Mat3::add( - _self.into_inner(), - rhs.into_inner(), - ) + let output: Val = >::add(_self.into_inner(), rhs.into_inner()) .into(); output }, @@ -17186,10 +16803,9 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "mul", |_self: Val, rhs: Val| { - let output: Val = ::bevy::math::Mat3::mul( - _self.into_inner(), - rhs.into_inner(), - ) + let output: Val = >::mul(_self.into_inner(), rhs.into_inner()) .into(); output }, @@ -17201,7 +16817,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { y_axis: Val, z_axis: Val| { - let output: Val = ::bevy::math::Mat3::from_cols( + let output: Val = bevy::math::Mat3::from_cols( x_axis.into_inner(), y_axis.into_inner(), z_axis.into_inner(), @@ -17213,7 +16829,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "to_cols_array", |_self: Ref| { - let output: [f32; 9] = ::bevy::math::Mat3::to_cols_array(&_self) + let output: [f32; 9] = bevy::math::Mat3::to_cols_array(&_self) .into(); output }, @@ -17221,7 +16837,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "to_cols_array_2d", |_self: Ref| { - let output: [[f32; 3]; 3] = ::bevy::math::Mat3::to_cols_array_2d( + let output: [[f32; 3]; 3] = bevy::math::Mat3::to_cols_array_2d( &_self, ) .into(); @@ -17231,7 +16847,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "from_diagonal", |diagonal: Val| { - let output: Val = ::bevy::math::Mat3::from_diagonal( + let output: Val = bevy::math::Mat3::from_diagonal( diagonal.into_inner(), ) .into(); @@ -17241,7 +16857,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "from_mat4", |m: Val| { - let output: Val = ::bevy::math::Mat3::from_mat4( + let output: Val = bevy::math::Mat3::from_mat4( m.into_inner(), ) .into(); @@ -17251,7 +16867,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "from_mat4_minor", |m: Val, i: usize, j: usize| { - let output: Val = ::bevy::math::Mat3::from_mat4_minor( + let output: Val = bevy::math::Mat3::from_mat4_minor( m.into_inner(), i, j, @@ -17263,7 +16879,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "from_quat", |rotation: Val| { - let output: Val = ::bevy::math::Mat3::from_quat( + let output: Val = bevy::math::Mat3::from_quat( rotation.into_inner(), ) .into(); @@ -17273,7 +16889,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "from_axis_angle", |axis: Val, angle: f32| { - let output: Val = ::bevy::math::Mat3::from_axis_angle( + let output: Val = bevy::math::Mat3::from_axis_angle( axis.into_inner(), angle, ) @@ -17284,7 +16900,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "from_euler", |order: Val, a: f32, b: f32, c: f32| { - let output: Val = ::bevy::math::Mat3::from_euler( + let output: Val = bevy::math::Mat3::from_euler( order.into_inner(), a, b, @@ -17297,7 +16913,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "to_euler", |_self: Ref, order: Val| { - let output: (f32, f32, f32) = ::bevy::math::Mat3::to_euler( + let output: (f32, f32, f32) = bevy::math::Mat3::to_euler( &_self, order.into_inner(), ) @@ -17308,7 +16924,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "from_rotation_x", |angle: f32| { - let output: Val = ::bevy::math::Mat3::from_rotation_x( + let output: Val = bevy::math::Mat3::from_rotation_x( angle, ) .into(); @@ -17318,7 +16934,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "from_rotation_y", |angle: f32| { - let output: Val = ::bevy::math::Mat3::from_rotation_y( + let output: Val = bevy::math::Mat3::from_rotation_y( angle, ) .into(); @@ -17328,7 +16944,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "from_rotation_z", |angle: f32| { - let output: Val = ::bevy::math::Mat3::from_rotation_z( + let output: Val = bevy::math::Mat3::from_rotation_z( angle, ) .into(); @@ -17338,7 +16954,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "from_translation", |translation: Val| { - let output: Val = ::bevy::math::Mat3::from_translation( + let output: Val = bevy::math::Mat3::from_translation( translation.into_inner(), ) .into(); @@ -17348,7 +16964,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "from_angle", |angle: f32| { - let output: Val = ::bevy::math::Mat3::from_angle( + let output: Val = bevy::math::Mat3::from_angle( angle, ) .into(); @@ -17362,7 +16978,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { angle: f32, translation: Val| { - let output: Val = ::bevy::math::Mat3::from_scale_angle_translation( + let output: Val = bevy::math::Mat3::from_scale_angle_translation( scale.into_inner(), angle, translation.into_inner(), @@ -17374,7 +16990,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "from_scale", |scale: Val| { - let output: Val = ::bevy::math::Mat3::from_scale( + let output: Val = bevy::math::Mat3::from_scale( scale.into_inner(), ) .into(); @@ -17384,7 +17000,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "from_mat2", |m: Val| { - let output: Val = ::bevy::math::Mat3::from_mat2( + let output: Val = bevy::math::Mat3::from_mat2( m.into_inner(), ) .into(); @@ -17394,7 +17010,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "col", |_self: Ref, index: usize| { - let output: Val = ::bevy::math::Mat3::col( + let output: Val = bevy::math::Mat3::col( &_self, index, ) @@ -17405,7 +17021,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "row", |_self: Ref, index: usize| { - let output: Val = ::bevy::math::Mat3::row( + let output: Val = bevy::math::Mat3::row( &_self, index, ) @@ -17416,21 +17032,21 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "is_finite", |_self: Ref| { - let output: bool = ::bevy::math::Mat3::is_finite(&_self).into(); + let output: bool = bevy::math::Mat3::is_finite(&_self).into(); output }, ) .overwrite_script_function( "is_nan", |_self: Ref| { - let output: bool = ::bevy::math::Mat3::is_nan(&_self).into(); + let output: bool = bevy::math::Mat3::is_nan(&_self).into(); output }, ) .overwrite_script_function( "transpose", |_self: Ref| { - let output: Val = ::bevy::math::Mat3::transpose( + let output: Val = bevy::math::Mat3::transpose( &_self, ) .into(); @@ -17440,16 +17056,14 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "determinant", |_self: Ref| { - let output: f32 = ::bevy::math::Mat3::determinant(&_self).into(); + let output: f32 = bevy::math::Mat3::determinant(&_self).into(); output }, ) .overwrite_script_function( "inverse", |_self: Ref| { - let output: Val = ::bevy::math::Mat3::inverse( - &_self, - ) + let output: Val = bevy::math::Mat3::inverse(&_self) .into(); output }, @@ -17457,7 +17071,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "transform_point2", |_self: Ref, rhs: Val| { - let output: Val = ::bevy::math::Mat3::transform_point2( + let output: Val = bevy::math::Mat3::transform_point2( &_self, rhs.into_inner(), ) @@ -17468,7 +17082,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "transform_vector2", |_self: Ref, rhs: Val| { - let output: Val = ::bevy::math::Mat3::transform_vector2( + let output: Val = bevy::math::Mat3::transform_vector2( &_self, rhs.into_inner(), ) @@ -17479,7 +17093,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "mul_vec3", |_self: Ref, rhs: Val| { - let output: Val = ::bevy::math::Mat3::mul_vec3( + let output: Val = bevy::math::Mat3::mul_vec3( &_self, rhs.into_inner(), ) @@ -17490,7 +17104,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "mul_vec3a", |_self: Ref, rhs: Val| { - let output: Val = ::bevy::math::Mat3::mul_vec3a( + let output: Val = bevy::math::Mat3::mul_vec3a( &_self, rhs.into_inner(), ) @@ -17501,7 +17115,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "mul_mat3", |_self: Ref, rhs: Ref| { - let output: Val = ::bevy::math::Mat3::mul_mat3( + let output: Val = bevy::math::Mat3::mul_mat3( &_self, &rhs, ) @@ -17512,7 +17126,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "add_mat3", |_self: Ref, rhs: Ref| { - let output: Val = ::bevy::math::Mat3::add_mat3( + let output: Val = bevy::math::Mat3::add_mat3( &_self, &rhs, ) @@ -17523,7 +17137,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "sub_mat3", |_self: Ref, rhs: Ref| { - let output: Val = ::bevy::math::Mat3::sub_mat3( + let output: Val = bevy::math::Mat3::sub_mat3( &_self, &rhs, ) @@ -17534,7 +17148,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "mul_scalar", |_self: Ref, rhs: f32| { - let output: Val = ::bevy::math::Mat3::mul_scalar( + let output: Val = bevy::math::Mat3::mul_scalar( &_self, rhs, ) @@ -17545,7 +17159,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "div_scalar", |_self: Ref, rhs: f32| { - let output: Val = ::bevy::math::Mat3::div_scalar( + let output: Val = bevy::math::Mat3::div_scalar( &_self, rhs, ) @@ -17560,7 +17174,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { rhs: Val, max_abs_diff: f32| { - let output: bool = ::bevy::math::Mat3::abs_diff_eq( + let output: bool = bevy::math::Mat3::abs_diff_eq( &_self, rhs.into_inner(), max_abs_diff, @@ -17572,7 +17186,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "abs", |_self: Ref| { - let output: Val = ::bevy::math::Mat3::abs(&_self) + let output: Val = bevy::math::Mat3::abs(&_self) .into(); output }, @@ -17580,7 +17194,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "as_dmat3", |_self: Ref| { - let output: Val = ::bevy::math::Mat3::as_dmat3( + let output: Val = bevy::math::Mat3::as_dmat3( &_self, ) .into(); @@ -17590,14 +17204,17 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "eq", |_self: Ref, rhs: Ref| { - let output: bool = ::bevy::math::Mat3::eq(&_self, &rhs).into(); + let output: bool = >::eq(&_self, &rhs) + .into(); output }, ) .overwrite_script_function( "neg", |_self: Val| { - let output: Val = ::bevy::math::Mat3::neg( + let output: Val = ::neg( _self.into_inner(), ) .into(); @@ -17607,10 +17224,9 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "mul", |_self: Val, rhs: Val| { - let output: Val = ::bevy::math::Mat3::mul( - _self.into_inner(), - rhs.into_inner(), - ) + let output: Val = >::mul(_self.into_inner(), rhs.into_inner()) .into(); output }, @@ -17618,7 +17234,9 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "clone", |_self: Ref| { - let output: Val = ::bevy::math::Mat3::clone(&_self) + let output: Val = ::clone( + &_self, + ) .into(); output }, @@ -17626,10 +17244,9 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "sub", |_self: Val, rhs: Val| { - let output: Val = ::bevy::math::Mat3::sub( - _self.into_inner(), - rhs.into_inner(), - ) + let output: Val = >::sub(_self.into_inner(), rhs.into_inner()) .into(); output }, @@ -17637,10 +17254,9 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "mul", |_self: Val, rhs: Val| { - let output: Val = ::bevy::math::Mat3::mul( - _self.into_inner(), - rhs.into_inner(), - ) + let output: Val = >::mul(_self.into_inner(), rhs.into_inner()) .into(); output }, @@ -17648,10 +17264,9 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "mul", |_self: Val, rhs: f32| { - let output: Val = ::bevy::math::Mat3::mul( - _self.into_inner(), - rhs, - ) + let output: Val = >::mul(_self.into_inner(), rhs) .into(); output }, @@ -17659,10 +17274,9 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "div", |_self: Val, rhs: f32| { - let output: Val = ::bevy::math::Mat3::div( - _self.into_inner(), - rhs, - ) + let output: Val = >::div(_self.into_inner(), rhs) .into(); output }, @@ -17671,10 +17285,9 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "div", |_self: Val, rhs: f32| { - let output: Val = ::bevy::math::Mat3A::div( - _self.into_inner(), - rhs, - ) + let output: Val = >::div(_self.into_inner(), rhs) .into(); output }, @@ -17682,17 +17295,19 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "eq", |_self: Ref, rhs: Ref| { - let output: bool = ::bevy::math::Mat3A::eq(&_self, &rhs).into(); + let output: bool = >::eq(&_self, &rhs) + .into(); output }, ) .overwrite_script_function( "mul", |_self: Val, rhs: Val| { - let output: Val = ::bevy::math::Mat3A::mul( - _self.into_inner(), - rhs.into_inner(), - ) + let output: Val = >::mul(_self.into_inner(), rhs.into_inner()) .into(); output }, @@ -17700,10 +17315,9 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "sub", |_self: Val, rhs: Val| { - let output: Val = ::bevy::math::Mat3A::sub( - _self.into_inner(), - rhs.into_inner(), - ) + let output: Val = >::sub(_self.into_inner(), rhs.into_inner()) .into(); output }, @@ -17711,7 +17325,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "clone", |_self: Ref| { - let output: Val = ::bevy::math::Mat3A::clone( + let output: Val = ::clone( &_self, ) .into(); @@ -17725,7 +17339,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { y_axis: Val, z_axis: Val| { - let output: Val = ::bevy::math::Mat3A::from_cols( + let output: Val = bevy::math::Mat3A::from_cols( x_axis.into_inner(), y_axis.into_inner(), z_axis.into_inner(), @@ -17737,7 +17351,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "to_cols_array", |_self: Ref| { - let output: [f32; 9] = ::bevy::math::Mat3A::to_cols_array(&_self) + let output: [f32; 9] = bevy::math::Mat3A::to_cols_array(&_self) .into(); output }, @@ -17745,7 +17359,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "to_cols_array_2d", |_self: Ref| { - let output: [[f32; 3]; 3] = ::bevy::math::Mat3A::to_cols_array_2d( + let output: [[f32; 3]; 3] = bevy::math::Mat3A::to_cols_array_2d( &_self, ) .into(); @@ -17755,7 +17369,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "from_diagonal", |diagonal: Val| { - let output: Val = ::bevy::math::Mat3A::from_diagonal( + let output: Val = bevy::math::Mat3A::from_diagonal( diagonal.into_inner(), ) .into(); @@ -17765,7 +17379,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "from_mat4", |m: Val| { - let output: Val = ::bevy::math::Mat3A::from_mat4( + let output: Val = bevy::math::Mat3A::from_mat4( m.into_inner(), ) .into(); @@ -17775,7 +17389,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "from_mat4_minor", |m: Val, i: usize, j: usize| { - let output: Val = ::bevy::math::Mat3A::from_mat4_minor( + let output: Val = bevy::math::Mat3A::from_mat4_minor( m.into_inner(), i, j, @@ -17787,7 +17401,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "from_quat", |rotation: Val| { - let output: Val = ::bevy::math::Mat3A::from_quat( + let output: Val = bevy::math::Mat3A::from_quat( rotation.into_inner(), ) .into(); @@ -17797,7 +17411,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "from_axis_angle", |axis: Val, angle: f32| { - let output: Val = ::bevy::math::Mat3A::from_axis_angle( + let output: Val = bevy::math::Mat3A::from_axis_angle( axis.into_inner(), angle, ) @@ -17808,7 +17422,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "from_euler", |order: Val, a: f32, b: f32, c: f32| { - let output: Val = ::bevy::math::Mat3A::from_euler( + let output: Val = bevy::math::Mat3A::from_euler( order.into_inner(), a, b, @@ -17821,7 +17435,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "to_euler", |_self: Ref, order: Val| { - let output: (f32, f32, f32) = ::bevy::math::Mat3A::to_euler( + let output: (f32, f32, f32) = bevy::math::Mat3A::to_euler( &_self, order.into_inner(), ) @@ -17832,7 +17446,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "from_rotation_x", |angle: f32| { - let output: Val = ::bevy::math::Mat3A::from_rotation_x( + let output: Val = bevy::math::Mat3A::from_rotation_x( angle, ) .into(); @@ -17842,7 +17456,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "from_rotation_y", |angle: f32| { - let output: Val = ::bevy::math::Mat3A::from_rotation_y( + let output: Val = bevy::math::Mat3A::from_rotation_y( angle, ) .into(); @@ -17852,7 +17466,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "from_rotation_z", |angle: f32| { - let output: Val = ::bevy::math::Mat3A::from_rotation_z( + let output: Val = bevy::math::Mat3A::from_rotation_z( angle, ) .into(); @@ -17862,7 +17476,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "from_translation", |translation: Val| { - let output: Val = ::bevy::math::Mat3A::from_translation( + let output: Val = bevy::math::Mat3A::from_translation( translation.into_inner(), ) .into(); @@ -17872,7 +17486,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "from_angle", |angle: f32| { - let output: Val = ::bevy::math::Mat3A::from_angle( + let output: Val = bevy::math::Mat3A::from_angle( angle, ) .into(); @@ -17886,7 +17500,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { angle: f32, translation: Val| { - let output: Val = ::bevy::math::Mat3A::from_scale_angle_translation( + let output: Val = bevy::math::Mat3A::from_scale_angle_translation( scale.into_inner(), angle, translation.into_inner(), @@ -17898,7 +17512,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "from_scale", |scale: Val| { - let output: Val = ::bevy::math::Mat3A::from_scale( + let output: Val = bevy::math::Mat3A::from_scale( scale.into_inner(), ) .into(); @@ -17908,7 +17522,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "from_mat2", |m: Val| { - let output: Val = ::bevy::math::Mat3A::from_mat2( + let output: Val = bevy::math::Mat3A::from_mat2( m.into_inner(), ) .into(); @@ -17918,7 +17532,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "col", |_self: Ref, index: usize| { - let output: Val = ::bevy::math::Mat3A::col( + let output: Val = bevy::math::Mat3A::col( &_self, index, ) @@ -17929,7 +17543,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "row", |_self: Ref, index: usize| { - let output: Val = ::bevy::math::Mat3A::row( + let output: Val = bevy::math::Mat3A::row( &_self, index, ) @@ -17940,21 +17554,21 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "is_finite", |_self: Ref| { - let output: bool = ::bevy::math::Mat3A::is_finite(&_self).into(); + let output: bool = bevy::math::Mat3A::is_finite(&_self).into(); output }, ) .overwrite_script_function( "is_nan", |_self: Ref| { - let output: bool = ::bevy::math::Mat3A::is_nan(&_self).into(); + let output: bool = bevy::math::Mat3A::is_nan(&_self).into(); output }, ) .overwrite_script_function( "transpose", |_self: Ref| { - let output: Val = ::bevy::math::Mat3A::transpose( + let output: Val = bevy::math::Mat3A::transpose( &_self, ) .into(); @@ -17964,14 +17578,14 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "determinant", |_self: Ref| { - let output: f32 = ::bevy::math::Mat3A::determinant(&_self).into(); + let output: f32 = bevy::math::Mat3A::determinant(&_self).into(); output }, ) .overwrite_script_function( "inverse", |_self: Ref| { - let output: Val = ::bevy::math::Mat3A::inverse( + let output: Val = bevy::math::Mat3A::inverse( &_self, ) .into(); @@ -17981,7 +17595,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "transform_point2", |_self: Ref, rhs: Val| { - let output: Val = ::bevy::math::Mat3A::transform_point2( + let output: Val = bevy::math::Mat3A::transform_point2( &_self, rhs.into_inner(), ) @@ -17992,7 +17606,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "transform_vector2", |_self: Ref, rhs: Val| { - let output: Val = ::bevy::math::Mat3A::transform_vector2( + let output: Val = bevy::math::Mat3A::transform_vector2( &_self, rhs.into_inner(), ) @@ -18003,7 +17617,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "mul_vec3", |_self: Ref, rhs: Val| { - let output: Val = ::bevy::math::Mat3A::mul_vec3( + let output: Val = bevy::math::Mat3A::mul_vec3( &_self, rhs.into_inner(), ) @@ -18014,7 +17628,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "mul_vec3a", |_self: Ref, rhs: Val| { - let output: Val = ::bevy::math::Mat3A::mul_vec3a( + let output: Val = bevy::math::Mat3A::mul_vec3a( &_self, rhs.into_inner(), ) @@ -18025,7 +17639,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "mul_mat3", |_self: Ref, rhs: Ref| { - let output: Val = ::bevy::math::Mat3A::mul_mat3( + let output: Val = bevy::math::Mat3A::mul_mat3( &_self, &rhs, ) @@ -18036,7 +17650,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "add_mat3", |_self: Ref, rhs: Ref| { - let output: Val = ::bevy::math::Mat3A::add_mat3( + let output: Val = bevy::math::Mat3A::add_mat3( &_self, &rhs, ) @@ -18047,7 +17661,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "sub_mat3", |_self: Ref, rhs: Ref| { - let output: Val = ::bevy::math::Mat3A::sub_mat3( + let output: Val = bevy::math::Mat3A::sub_mat3( &_self, &rhs, ) @@ -18058,7 +17672,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "mul_scalar", |_self: Ref, rhs: f32| { - let output: Val = ::bevy::math::Mat3A::mul_scalar( + let output: Val = bevy::math::Mat3A::mul_scalar( &_self, rhs, ) @@ -18069,7 +17683,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "div_scalar", |_self: Ref, rhs: f32| { - let output: Val = ::bevy::math::Mat3A::div_scalar( + let output: Val = bevy::math::Mat3A::div_scalar( &_self, rhs, ) @@ -18084,7 +17698,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { rhs: Val, max_abs_diff: f32| { - let output: bool = ::bevy::math::Mat3A::abs_diff_eq( + let output: bool = bevy::math::Mat3A::abs_diff_eq( &_self, rhs.into_inner(), max_abs_diff, @@ -18096,7 +17710,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "abs", |_self: Ref| { - let output: Val = ::bevy::math::Mat3A::abs(&_self) + let output: Val = bevy::math::Mat3A::abs(&_self) .into(); output }, @@ -18104,7 +17718,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "as_dmat3", |_self: Ref| { - let output: Val = ::bevy::math::Mat3A::as_dmat3( + let output: Val = bevy::math::Mat3A::as_dmat3( &_self, ) .into(); @@ -18114,10 +17728,9 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "mul", |_self: Val, rhs: f32| { - let output: Val = ::bevy::math::Mat3A::mul( - _self.into_inner(), - rhs, - ) + let output: Val = >::mul(_self.into_inner(), rhs) .into(); output }, @@ -18125,10 +17738,9 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "mul", |_self: Val, rhs: Val| { - let output: Val = ::bevy::math::Mat3A::mul( - _self.into_inner(), - rhs.into_inner(), - ) + let output: Val = >::mul(_self.into_inner(), rhs.into_inner()) .into(); output }, @@ -18136,10 +17748,9 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "add", |_self: Val, rhs: Val| { - let output: Val = ::bevy::math::Mat3A::add( - _self.into_inner(), - rhs.into_inner(), - ) + let output: Val = >::add(_self.into_inner(), rhs.into_inner()) .into(); output }, @@ -18147,7 +17758,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "neg", |_self: Val| { - let output: Val = ::bevy::math::Mat3A::neg( + let output: Val = ::neg( _self.into_inner(), ) .into(); @@ -18157,10 +17768,9 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "mul", |_self: Val, rhs: Val| { - let output: Val = ::bevy::math::Mat3A::mul( - _self.into_inner(), - rhs.into_inner(), - ) + let output: Val = >::mul(_self.into_inner(), rhs.into_inner()) .into(); output }, @@ -18168,10 +17778,9 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "mul", |_self: Val, rhs: Val| { - let output: Val = ::bevy::math::Mat3A::mul( - _self.into_inner(), - rhs.into_inner(), - ) + let output: Val = >::mul(_self.into_inner(), rhs.into_inner()) .into(); output }, @@ -18180,17 +17789,19 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "eq", |_self: Ref, rhs: Ref| { - let output: bool = ::bevy::math::Mat4::eq(&_self, &rhs).into(); + let output: bool = >::eq(&_self, &rhs) + .into(); output }, ) .overwrite_script_function( "mul", |_self: Val, rhs: Val| { - let output: Val = ::bevy::math::Mat4::mul( - _self.into_inner(), - rhs.into_inner(), - ) + let output: Val = >::mul(_self.into_inner(), rhs.into_inner()) .into(); output }, @@ -18198,10 +17809,9 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "mul", |_self: Val, rhs: Val| { - let output: Val = ::bevy::math::Mat4::mul( - _self.into_inner(), - rhs.into_inner(), - ) + let output: Val = >::mul(_self.into_inner(), rhs.into_inner()) .into(); output }, @@ -18209,10 +17819,9 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "sub", |_self: Val, rhs: Val| { - let output: Val = ::bevy::math::Mat4::sub( - _self.into_inner(), - rhs.into_inner(), - ) + let output: Val = >::sub(_self.into_inner(), rhs.into_inner()) .into(); output }, @@ -18220,10 +17829,9 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "div", |_self: Val, rhs: f32| { - let output: Val = ::bevy::math::Mat4::div( - _self.into_inner(), - rhs, - ) + let output: Val = >::div(_self.into_inner(), rhs) .into(); output }, @@ -18231,7 +17839,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "neg", |_self: Val| { - let output: Val = ::bevy::math::Mat4::neg( + let output: Val = ::neg( _self.into_inner(), ) .into(); @@ -18241,10 +17849,9 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "mul", |_self: Val, rhs: Val| { - let output: Val = ::bevy::math::Mat4::mul( - _self.into_inner(), - rhs.into_inner(), - ) + let output: Val = >::mul(_self.into_inner(), rhs.into_inner()) .into(); output }, @@ -18252,7 +17859,9 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "clone", |_self: Ref| { - let output: Val = ::bevy::math::Mat4::clone(&_self) + let output: Val = ::clone( + &_self, + ) .into(); output }, @@ -18265,7 +17874,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { z_axis: Val, w_axis: Val| { - let output: Val = ::bevy::math::Mat4::from_cols( + let output: Val = bevy::math::Mat4::from_cols( x_axis.into_inner(), y_axis.into_inner(), z_axis.into_inner(), @@ -18278,7 +17887,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "to_cols_array", |_self: Ref| { - let output: [f32; 16] = ::bevy::math::Mat4::to_cols_array(&_self) + let output: [f32; 16] = bevy::math::Mat4::to_cols_array(&_self) .into(); output }, @@ -18286,7 +17895,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "to_cols_array_2d", |_self: Ref| { - let output: [[f32; 4]; 4] = ::bevy::math::Mat4::to_cols_array_2d( + let output: [[f32; 4]; 4] = bevy::math::Mat4::to_cols_array_2d( &_self, ) .into(); @@ -18296,7 +17905,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "from_diagonal", |diagonal: Val| { - let output: Val = ::bevy::math::Mat4::from_diagonal( + let output: Val = bevy::math::Mat4::from_diagonal( diagonal.into_inner(), ) .into(); @@ -18310,7 +17919,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { rotation: Val, translation: Val| { - let output: Val = ::bevy::math::Mat4::from_scale_rotation_translation( + let output: Val = bevy::math::Mat4::from_scale_rotation_translation( scale.into_inner(), rotation.into_inner(), translation.into_inner(), @@ -18322,7 +17931,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "from_rotation_translation", |rotation: Val, translation: Val| { - let output: Val = ::bevy::math::Mat4::from_rotation_translation( + let output: Val = bevy::math::Mat4::from_rotation_translation( rotation.into_inner(), translation.into_inner(), ) @@ -18333,7 +17942,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "from_quat", |rotation: Val| { - let output: Val = ::bevy::math::Mat4::from_quat( + let output: Val = bevy::math::Mat4::from_quat( rotation.into_inner(), ) .into(); @@ -18343,7 +17952,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "from_mat3", |m: Val| { - let output: Val = ::bevy::math::Mat4::from_mat3( + let output: Val = bevy::math::Mat4::from_mat3( m.into_inner(), ) .into(); @@ -18353,7 +17962,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "from_mat3a", |m: Val| { - let output: Val = ::bevy::math::Mat4::from_mat3a( + let output: Val = bevy::math::Mat4::from_mat3a( m.into_inner(), ) .into(); @@ -18363,7 +17972,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "from_translation", |translation: Val| { - let output: Val = ::bevy::math::Mat4::from_translation( + let output: Val = bevy::math::Mat4::from_translation( translation.into_inner(), ) .into(); @@ -18373,7 +17982,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "from_axis_angle", |axis: Val, angle: f32| { - let output: Val = ::bevy::math::Mat4::from_axis_angle( + let output: Val = bevy::math::Mat4::from_axis_angle( axis.into_inner(), angle, ) @@ -18384,7 +17993,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "from_euler", |order: Val, a: f32, b: f32, c: f32| { - let output: Val = ::bevy::math::Mat4::from_euler( + let output: Val = bevy::math::Mat4::from_euler( order.into_inner(), a, b, @@ -18397,7 +18006,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "to_euler", |_self: Ref, order: Val| { - let output: (f32, f32, f32) = ::bevy::math::Mat4::to_euler( + let output: (f32, f32, f32) = bevy::math::Mat4::to_euler( &_self, order.into_inner(), ) @@ -18408,7 +18017,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "from_rotation_x", |angle: f32| { - let output: Val = ::bevy::math::Mat4::from_rotation_x( + let output: Val = bevy::math::Mat4::from_rotation_x( angle, ) .into(); @@ -18418,7 +18027,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "from_rotation_y", |angle: f32| { - let output: Val = ::bevy::math::Mat4::from_rotation_y( + let output: Val = bevy::math::Mat4::from_rotation_y( angle, ) .into(); @@ -18428,7 +18037,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "from_rotation_z", |angle: f32| { - let output: Val = ::bevy::math::Mat4::from_rotation_z( + let output: Val = bevy::math::Mat4::from_rotation_z( angle, ) .into(); @@ -18438,7 +18047,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "from_scale", |scale: Val| { - let output: Val = ::bevy::math::Mat4::from_scale( + let output: Val = bevy::math::Mat4::from_scale( scale.into_inner(), ) .into(); @@ -18448,7 +18057,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "col", |_self: Ref, index: usize| { - let output: Val = ::bevy::math::Mat4::col( + let output: Val = bevy::math::Mat4::col( &_self, index, ) @@ -18459,7 +18068,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "row", |_self: Ref, index: usize| { - let output: Val = ::bevy::math::Mat4::row( + let output: Val = bevy::math::Mat4::row( &_self, index, ) @@ -18470,21 +18079,21 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "is_finite", |_self: Ref| { - let output: bool = ::bevy::math::Mat4::is_finite(&_self).into(); + let output: bool = bevy::math::Mat4::is_finite(&_self).into(); output }, ) .overwrite_script_function( "is_nan", |_self: Ref| { - let output: bool = ::bevy::math::Mat4::is_nan(&_self).into(); + let output: bool = bevy::math::Mat4::is_nan(&_self).into(); output }, ) .overwrite_script_function( "transpose", |_self: Ref| { - let output: Val = ::bevy::math::Mat4::transpose( + let output: Val = bevy::math::Mat4::transpose( &_self, ) .into(); @@ -18494,16 +18103,14 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "determinant", |_self: Ref| { - let output: f32 = ::bevy::math::Mat4::determinant(&_self).into(); + let output: f32 = bevy::math::Mat4::determinant(&_self).into(); output }, ) .overwrite_script_function( "inverse", |_self: Ref| { - let output: Val = ::bevy::math::Mat4::inverse( - &_self, - ) + let output: Val = bevy::math::Mat4::inverse(&_self) .into(); output }, @@ -18515,7 +18122,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { dir: Val, up: Val| { - let output: Val = ::bevy::math::Mat4::look_to_lh( + let output: Val = bevy::math::Mat4::look_to_lh( eye.into_inner(), dir.into_inner(), up.into_inner(), @@ -18531,7 +18138,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { dir: Val, up: Val| { - let output: Val = ::bevy::math::Mat4::look_to_rh( + let output: Val = bevy::math::Mat4::look_to_rh( eye.into_inner(), dir.into_inner(), up.into_inner(), @@ -18547,7 +18154,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { center: Val, up: Val| { - let output: Val = ::bevy::math::Mat4::look_at_lh( + let output: Val = bevy::math::Mat4::look_at_lh( eye.into_inner(), center.into_inner(), up.into_inner(), @@ -18563,7 +18170,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { center: Val, up: Val| { - let output: Val = ::bevy::math::Mat4::look_at_rh( + let output: Val = bevy::math::Mat4::look_at_rh( eye.into_inner(), center.into_inner(), up.into_inner(), @@ -18575,7 +18182,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "perspective_rh_gl", |fov_y_radians: f32, aspect_ratio: f32, z_near: f32, z_far: f32| { - let output: Val = ::bevy::math::Mat4::perspective_rh_gl( + let output: Val = bevy::math::Mat4::perspective_rh_gl( fov_y_radians, aspect_ratio, z_near, @@ -18588,7 +18195,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "perspective_lh", |fov_y_radians: f32, aspect_ratio: f32, z_near: f32, z_far: f32| { - let output: Val = ::bevy::math::Mat4::perspective_lh( + let output: Val = bevy::math::Mat4::perspective_lh( fov_y_radians, aspect_ratio, z_near, @@ -18601,7 +18208,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "perspective_rh", |fov_y_radians: f32, aspect_ratio: f32, z_near: f32, z_far: f32| { - let output: Val = ::bevy::math::Mat4::perspective_rh( + let output: Val = bevy::math::Mat4::perspective_rh( fov_y_radians, aspect_ratio, z_near, @@ -18614,7 +18221,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "perspective_infinite_lh", |fov_y_radians: f32, aspect_ratio: f32, z_near: f32| { - let output: Val = ::bevy::math::Mat4::perspective_infinite_lh( + let output: Val = bevy::math::Mat4::perspective_infinite_lh( fov_y_radians, aspect_ratio, z_near, @@ -18626,7 +18233,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "perspective_infinite_reverse_lh", |fov_y_radians: f32, aspect_ratio: f32, z_near: f32| { - let output: Val = ::bevy::math::Mat4::perspective_infinite_reverse_lh( + let output: Val = bevy::math::Mat4::perspective_infinite_reverse_lh( fov_y_radians, aspect_ratio, z_near, @@ -18638,7 +18245,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "perspective_infinite_rh", |fov_y_radians: f32, aspect_ratio: f32, z_near: f32| { - let output: Val = ::bevy::math::Mat4::perspective_infinite_rh( + let output: Val = bevy::math::Mat4::perspective_infinite_rh( fov_y_radians, aspect_ratio, z_near, @@ -18650,7 +18257,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "perspective_infinite_reverse_rh", |fov_y_radians: f32, aspect_ratio: f32, z_near: f32| { - let output: Val = ::bevy::math::Mat4::perspective_infinite_reverse_rh( + let output: Val = bevy::math::Mat4::perspective_infinite_reverse_rh( fov_y_radians, aspect_ratio, z_near, @@ -18662,7 +18269,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "orthographic_rh_gl", |left: f32, right: f32, bottom: f32, top: f32, near: f32, far: f32| { - let output: Val = ::bevy::math::Mat4::orthographic_rh_gl( + let output: Val = bevy::math::Mat4::orthographic_rh_gl( left, right, bottom, @@ -18677,7 +18284,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "orthographic_lh", |left: f32, right: f32, bottom: f32, top: f32, near: f32, far: f32| { - let output: Val = ::bevy::math::Mat4::orthographic_lh( + let output: Val = bevy::math::Mat4::orthographic_lh( left, right, bottom, @@ -18692,7 +18299,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "orthographic_rh", |left: f32, right: f32, bottom: f32, top: f32, near: f32, far: f32| { - let output: Val = ::bevy::math::Mat4::orthographic_rh( + let output: Val = bevy::math::Mat4::orthographic_rh( left, right, bottom, @@ -18707,7 +18314,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "project_point3", |_self: Ref, rhs: Val| { - let output: Val = ::bevy::math::Mat4::project_point3( + let output: Val = bevy::math::Mat4::project_point3( &_self, rhs.into_inner(), ) @@ -18718,7 +18325,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "transform_point3", |_self: Ref, rhs: Val| { - let output: Val = ::bevy::math::Mat4::transform_point3( + let output: Val = bevy::math::Mat4::transform_point3( &_self, rhs.into_inner(), ) @@ -18729,7 +18336,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "transform_vector3", |_self: Ref, rhs: Val| { - let output: Val = ::bevy::math::Mat4::transform_vector3( + let output: Val = bevy::math::Mat4::transform_vector3( &_self, rhs.into_inner(), ) @@ -18740,7 +18347,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "project_point3a", |_self: Ref, rhs: Val| { - let output: Val = ::bevy::math::Mat4::project_point3a( + let output: Val = bevy::math::Mat4::project_point3a( &_self, rhs.into_inner(), ) @@ -18751,7 +18358,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "transform_point3a", |_self: Ref, rhs: Val| { - let output: Val = ::bevy::math::Mat4::transform_point3a( + let output: Val = bevy::math::Mat4::transform_point3a( &_self, rhs.into_inner(), ) @@ -18762,7 +18369,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "transform_vector3a", |_self: Ref, rhs: Val| { - let output: Val = ::bevy::math::Mat4::transform_vector3a( + let output: Val = bevy::math::Mat4::transform_vector3a( &_self, rhs.into_inner(), ) @@ -18773,7 +18380,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "mul_vec4", |_self: Ref, rhs: Val| { - let output: Val = ::bevy::math::Mat4::mul_vec4( + let output: Val = bevy::math::Mat4::mul_vec4( &_self, rhs.into_inner(), ) @@ -18784,7 +18391,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "mul_mat4", |_self: Ref, rhs: Ref| { - let output: Val = ::bevy::math::Mat4::mul_mat4( + let output: Val = bevy::math::Mat4::mul_mat4( &_self, &rhs, ) @@ -18795,7 +18402,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "add_mat4", |_self: Ref, rhs: Ref| { - let output: Val = ::bevy::math::Mat4::add_mat4( + let output: Val = bevy::math::Mat4::add_mat4( &_self, &rhs, ) @@ -18806,7 +18413,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "sub_mat4", |_self: Ref, rhs: Ref| { - let output: Val = ::bevy::math::Mat4::sub_mat4( + let output: Val = bevy::math::Mat4::sub_mat4( &_self, &rhs, ) @@ -18817,7 +18424,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "mul_scalar", |_self: Ref, rhs: f32| { - let output: Val = ::bevy::math::Mat4::mul_scalar( + let output: Val = bevy::math::Mat4::mul_scalar( &_self, rhs, ) @@ -18828,7 +18435,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "div_scalar", |_self: Ref, rhs: f32| { - let output: Val = ::bevy::math::Mat4::div_scalar( + let output: Val = bevy::math::Mat4::div_scalar( &_self, rhs, ) @@ -18843,7 +18450,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { rhs: Val, max_abs_diff: f32| { - let output: bool = ::bevy::math::Mat4::abs_diff_eq( + let output: bool = bevy::math::Mat4::abs_diff_eq( &_self, rhs.into_inner(), max_abs_diff, @@ -18855,7 +18462,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "abs", |_self: Ref| { - let output: Val = ::bevy::math::Mat4::abs(&_self) + let output: Val = bevy::math::Mat4::abs(&_self) .into(); output }, @@ -18863,7 +18470,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "as_dmat4", |_self: Ref| { - let output: Val = ::bevy::math::Mat4::as_dmat4( + let output: Val = bevy::math::Mat4::as_dmat4( &_self, ) .into(); @@ -18873,10 +18480,9 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "add", |_self: Val, rhs: Val| { - let output: Val = ::bevy::math::Mat4::add( - _self.into_inner(), - rhs.into_inner(), - ) + let output: Val = >::add(_self.into_inner(), rhs.into_inner()) .into(); output }, @@ -18884,10 +18490,9 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "mul", |_self: Val, rhs: f32| { - let output: Val = ::bevy::math::Mat4::mul( - _self.into_inner(), - rhs, - ) + let output: Val = >::mul(_self.into_inner(), rhs) .into(); output }, @@ -18896,7 +18501,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "clone", |_self: Ref| { - let output: Val = ::bevy::math::DMat2::clone( + let output: Val = ::clone( &_self, ) .into(); @@ -18906,10 +18511,9 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "mul", |_self: Val, rhs: f64| { - let output: Val = ::bevy::math::DMat2::mul( - _self.into_inner(), - rhs, - ) + let output: Val = >::mul(_self.into_inner(), rhs) .into(); output }, @@ -18917,10 +18521,9 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "div", |_self: Val, rhs: f64| { - let output: Val = ::bevy::math::DMat2::div( - _self.into_inner(), - rhs, - ) + let output: Val = >::div(_self.into_inner(), rhs) .into(); output }, @@ -18928,10 +18531,9 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "mul", |_self: Val, rhs: Val| { - let output: Val = ::bevy::math::DMat2::mul( - _self.into_inner(), - rhs.into_inner(), - ) + let output: Val = >::mul(_self.into_inner(), rhs.into_inner()) .into(); output }, @@ -18939,10 +18541,9 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "add", |_self: Val, rhs: Val| { - let output: Val = ::bevy::math::DMat2::add( - _self.into_inner(), - rhs.into_inner(), - ) + let output: Val = >::add(_self.into_inner(), rhs.into_inner()) .into(); output }, @@ -18950,10 +18551,9 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "sub", |_self: Val, rhs: Val| { - let output: Val = ::bevy::math::DMat2::sub( - _self.into_inner(), - rhs.into_inner(), - ) + let output: Val = >::sub(_self.into_inner(), rhs.into_inner()) .into(); output }, @@ -18961,10 +18561,9 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "mul", |_self: Val, rhs: Val| { - let output: Val = ::bevy::math::DMat2::mul( - _self.into_inner(), - rhs.into_inner(), - ) + let output: Val = >::mul(_self.into_inner(), rhs.into_inner()) .into(); output }, @@ -18972,14 +18571,17 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "eq", |_self: Ref, rhs: Ref| { - let output: bool = ::bevy::math::DMat2::eq(&_self, &rhs).into(); + let output: bool = >::eq(&_self, &rhs) + .into(); output }, ) .overwrite_script_function( "from_cols", |x_axis: Val, y_axis: Val| { - let output: Val = ::bevy::math::DMat2::from_cols( + let output: Val = bevy::math::DMat2::from_cols( x_axis.into_inner(), y_axis.into_inner(), ) @@ -18990,7 +18592,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "to_cols_array", |_self: Ref| { - let output: [f64; 4] = ::bevy::math::DMat2::to_cols_array(&_self) + let output: [f64; 4] = bevy::math::DMat2::to_cols_array(&_self) .into(); output }, @@ -18998,7 +18600,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "to_cols_array_2d", |_self: Ref| { - let output: [[f64; 2]; 2] = ::bevy::math::DMat2::to_cols_array_2d( + let output: [[f64; 2]; 2] = bevy::math::DMat2::to_cols_array_2d( &_self, ) .into(); @@ -19008,7 +18610,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "from_diagonal", |diagonal: Val| { - let output: Val = ::bevy::math::DMat2::from_diagonal( + let output: Val = bevy::math::DMat2::from_diagonal( diagonal.into_inner(), ) .into(); @@ -19018,7 +18620,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "from_scale_angle", |scale: Val, angle: f64| { - let output: Val = ::bevy::math::DMat2::from_scale_angle( + let output: Val = bevy::math::DMat2::from_scale_angle( scale.into_inner(), angle, ) @@ -19029,7 +18631,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "from_angle", |angle: f64| { - let output: Val = ::bevy::math::DMat2::from_angle( + let output: Val = bevy::math::DMat2::from_angle( angle, ) .into(); @@ -19039,7 +18641,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "from_mat3", |m: Val| { - let output: Val = ::bevy::math::DMat2::from_mat3( + let output: Val = bevy::math::DMat2::from_mat3( m.into_inner(), ) .into(); @@ -19049,7 +18651,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "from_mat3_minor", |m: Val, i: usize, j: usize| { - let output: Val = ::bevy::math::DMat2::from_mat3_minor( + let output: Val = bevy::math::DMat2::from_mat3_minor( m.into_inner(), i, j, @@ -19061,7 +18663,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "col", |_self: Ref, index: usize| { - let output: Val = ::bevy::math::DMat2::col( + let output: Val = bevy::math::DMat2::col( &_self, index, ) @@ -19072,7 +18674,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "row", |_self: Ref, index: usize| { - let output: Val = ::bevy::math::DMat2::row( + let output: Val = bevy::math::DMat2::row( &_self, index, ) @@ -19083,21 +18685,21 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "is_finite", |_self: Ref| { - let output: bool = ::bevy::math::DMat2::is_finite(&_self).into(); + let output: bool = bevy::math::DMat2::is_finite(&_self).into(); output }, ) .overwrite_script_function( "is_nan", |_self: Ref| { - let output: bool = ::bevy::math::DMat2::is_nan(&_self).into(); + let output: bool = bevy::math::DMat2::is_nan(&_self).into(); output }, ) .overwrite_script_function( "transpose", |_self: Ref| { - let output: Val = ::bevy::math::DMat2::transpose( + let output: Val = bevy::math::DMat2::transpose( &_self, ) .into(); @@ -19107,14 +18709,14 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "determinant", |_self: Ref| { - let output: f64 = ::bevy::math::DMat2::determinant(&_self).into(); + let output: f64 = bevy::math::DMat2::determinant(&_self).into(); output }, ) .overwrite_script_function( "inverse", |_self: Ref| { - let output: Val = ::bevy::math::DMat2::inverse( + let output: Val = bevy::math::DMat2::inverse( &_self, ) .into(); @@ -19124,7 +18726,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "mul_vec2", |_self: Ref, rhs: Val| { - let output: Val = ::bevy::math::DMat2::mul_vec2( + let output: Val = bevy::math::DMat2::mul_vec2( &_self, rhs.into_inner(), ) @@ -19135,7 +18737,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "mul_mat2", |_self: Ref, rhs: Ref| { - let output: Val = ::bevy::math::DMat2::mul_mat2( + let output: Val = bevy::math::DMat2::mul_mat2( &_self, &rhs, ) @@ -19146,7 +18748,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "add_mat2", |_self: Ref, rhs: Ref| { - let output: Val = ::bevy::math::DMat2::add_mat2( + let output: Val = bevy::math::DMat2::add_mat2( &_self, &rhs, ) @@ -19157,7 +18759,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "sub_mat2", |_self: Ref, rhs: Ref| { - let output: Val = ::bevy::math::DMat2::sub_mat2( + let output: Val = bevy::math::DMat2::sub_mat2( &_self, &rhs, ) @@ -19168,7 +18770,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "mul_scalar", |_self: Ref, rhs: f64| { - let output: Val = ::bevy::math::DMat2::mul_scalar( + let output: Val = bevy::math::DMat2::mul_scalar( &_self, rhs, ) @@ -19179,7 +18781,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "div_scalar", |_self: Ref, rhs: f64| { - let output: Val = ::bevy::math::DMat2::div_scalar( + let output: Val = bevy::math::DMat2::div_scalar( &_self, rhs, ) @@ -19194,7 +18796,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { rhs: Val, max_abs_diff: f64| { - let output: bool = ::bevy::math::DMat2::abs_diff_eq( + let output: bool = bevy::math::DMat2::abs_diff_eq( &_self, rhs.into_inner(), max_abs_diff, @@ -19206,7 +18808,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "abs", |_self: Ref| { - let output: Val = ::bevy::math::DMat2::abs(&_self) + let output: Val = bevy::math::DMat2::abs(&_self) .into(); output }, @@ -19214,7 +18816,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "as_mat2", |_self: Ref| { - let output: Val = ::bevy::math::DMat2::as_mat2( + let output: Val = bevy::math::DMat2::as_mat2( &_self, ) .into(); @@ -19224,7 +18826,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "neg", |_self: Val| { - let output: Val = ::bevy::math::DMat2::neg( + let output: Val = ::neg( _self.into_inner(), ) .into(); @@ -19235,10 +18837,9 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "mul", |_self: Val, rhs: f64| { - let output: Val = ::bevy::math::DMat3::mul( - _self.into_inner(), - rhs, - ) + let output: Val = >::mul(_self.into_inner(), rhs) .into(); output }, @@ -19246,7 +18847,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "clone", |_self: Ref| { - let output: Val = ::bevy::math::DMat3::clone( + let output: Val = ::clone( &_self, ) .into(); @@ -19256,10 +18857,9 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "add", |_self: Val, rhs: Val| { - let output: Val = ::bevy::math::DMat3::add( - _self.into_inner(), - rhs.into_inner(), - ) + let output: Val = >::add(_self.into_inner(), rhs.into_inner()) .into(); output }, @@ -19267,10 +18867,9 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "mul", |_self: Val, rhs: Val| { - let output: Val = ::bevy::math::DMat3::mul( - _self.into_inner(), - rhs.into_inner(), - ) + let output: Val = >::mul(_self.into_inner(), rhs.into_inner()) .into(); output }, @@ -19278,10 +18877,9 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "sub", |_self: Val, rhs: Val| { - let output: Val = ::bevy::math::DMat3::sub( - _self.into_inner(), - rhs.into_inner(), - ) + let output: Val = >::sub(_self.into_inner(), rhs.into_inner()) .into(); output }, @@ -19293,7 +18891,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { y_axis: Val, z_axis: Val| { - let output: Val = ::bevy::math::DMat3::from_cols( + let output: Val = bevy::math::DMat3::from_cols( x_axis.into_inner(), y_axis.into_inner(), z_axis.into_inner(), @@ -19305,7 +18903,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "to_cols_array", |_self: Ref| { - let output: [f64; 9] = ::bevy::math::DMat3::to_cols_array(&_self) + let output: [f64; 9] = bevy::math::DMat3::to_cols_array(&_self) .into(); output }, @@ -19313,7 +18911,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "to_cols_array_2d", |_self: Ref| { - let output: [[f64; 3]; 3] = ::bevy::math::DMat3::to_cols_array_2d( + let output: [[f64; 3]; 3] = bevy::math::DMat3::to_cols_array_2d( &_self, ) .into(); @@ -19323,7 +18921,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "from_diagonal", |diagonal: Val| { - let output: Val = ::bevy::math::DMat3::from_diagonal( + let output: Val = bevy::math::DMat3::from_diagonal( diagonal.into_inner(), ) .into(); @@ -19333,7 +18931,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "from_mat4", |m: Val| { - let output: Val = ::bevy::math::DMat3::from_mat4( + let output: Val = bevy::math::DMat3::from_mat4( m.into_inner(), ) .into(); @@ -19343,7 +18941,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "from_mat4_minor", |m: Val, i: usize, j: usize| { - let output: Val = ::bevy::math::DMat3::from_mat4_minor( + let output: Val = bevy::math::DMat3::from_mat4_minor( m.into_inner(), i, j, @@ -19355,7 +18953,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "from_quat", |rotation: Val| { - let output: Val = ::bevy::math::DMat3::from_quat( + let output: Val = bevy::math::DMat3::from_quat( rotation.into_inner(), ) .into(); @@ -19365,7 +18963,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "from_axis_angle", |axis: Val, angle: f64| { - let output: Val = ::bevy::math::DMat3::from_axis_angle( + let output: Val = bevy::math::DMat3::from_axis_angle( axis.into_inner(), angle, ) @@ -19376,7 +18974,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "from_euler", |order: Val, a: f64, b: f64, c: f64| { - let output: Val = ::bevy::math::DMat3::from_euler( + let output: Val = bevy::math::DMat3::from_euler( order.into_inner(), a, b, @@ -19389,7 +18987,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "to_euler", |_self: Ref, order: Val| { - let output: (f64, f64, f64) = ::bevy::math::DMat3::to_euler( + let output: (f64, f64, f64) = bevy::math::DMat3::to_euler( &_self, order.into_inner(), ) @@ -19400,7 +18998,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "from_rotation_x", |angle: f64| { - let output: Val = ::bevy::math::DMat3::from_rotation_x( + let output: Val = bevy::math::DMat3::from_rotation_x( angle, ) .into(); @@ -19410,7 +19008,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "from_rotation_y", |angle: f64| { - let output: Val = ::bevy::math::DMat3::from_rotation_y( + let output: Val = bevy::math::DMat3::from_rotation_y( angle, ) .into(); @@ -19420,7 +19018,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "from_rotation_z", |angle: f64| { - let output: Val = ::bevy::math::DMat3::from_rotation_z( + let output: Val = bevy::math::DMat3::from_rotation_z( angle, ) .into(); @@ -19430,7 +19028,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "from_translation", |translation: Val| { - let output: Val = ::bevy::math::DMat3::from_translation( + let output: Val = bevy::math::DMat3::from_translation( translation.into_inner(), ) .into(); @@ -19440,7 +19038,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "from_angle", |angle: f64| { - let output: Val = ::bevy::math::DMat3::from_angle( + let output: Val = bevy::math::DMat3::from_angle( angle, ) .into(); @@ -19454,7 +19052,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { angle: f64, translation: Val| { - let output: Val = ::bevy::math::DMat3::from_scale_angle_translation( + let output: Val = bevy::math::DMat3::from_scale_angle_translation( scale.into_inner(), angle, translation.into_inner(), @@ -19466,7 +19064,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "from_scale", |scale: Val| { - let output: Val = ::bevy::math::DMat3::from_scale( + let output: Val = bevy::math::DMat3::from_scale( scale.into_inner(), ) .into(); @@ -19476,7 +19074,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "from_mat2", |m: Val| { - let output: Val = ::bevy::math::DMat3::from_mat2( + let output: Val = bevy::math::DMat3::from_mat2( m.into_inner(), ) .into(); @@ -19486,7 +19084,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "col", |_self: Ref, index: usize| { - let output: Val = ::bevy::math::DMat3::col( + let output: Val = bevy::math::DMat3::col( &_self, index, ) @@ -19497,7 +19095,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "row", |_self: Ref, index: usize| { - let output: Val = ::bevy::math::DMat3::row( + let output: Val = bevy::math::DMat3::row( &_self, index, ) @@ -19508,21 +19106,21 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "is_finite", |_self: Ref| { - let output: bool = ::bevy::math::DMat3::is_finite(&_self).into(); + let output: bool = bevy::math::DMat3::is_finite(&_self).into(); output }, ) .overwrite_script_function( "is_nan", |_self: Ref| { - let output: bool = ::bevy::math::DMat3::is_nan(&_self).into(); + let output: bool = bevy::math::DMat3::is_nan(&_self).into(); output }, ) .overwrite_script_function( "transpose", |_self: Ref| { - let output: Val = ::bevy::math::DMat3::transpose( + let output: Val = bevy::math::DMat3::transpose( &_self, ) .into(); @@ -19532,14 +19130,14 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "determinant", |_self: Ref| { - let output: f64 = ::bevy::math::DMat3::determinant(&_self).into(); + let output: f64 = bevy::math::DMat3::determinant(&_self).into(); output }, ) .overwrite_script_function( "inverse", |_self: Ref| { - let output: Val = ::bevy::math::DMat3::inverse( + let output: Val = bevy::math::DMat3::inverse( &_self, ) .into(); @@ -19549,7 +19147,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "transform_point2", |_self: Ref, rhs: Val| { - let output: Val = ::bevy::math::DMat3::transform_point2( + let output: Val = bevy::math::DMat3::transform_point2( &_self, rhs.into_inner(), ) @@ -19560,7 +19158,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "transform_vector2", |_self: Ref, rhs: Val| { - let output: Val = ::bevy::math::DMat3::transform_vector2( + let output: Val = bevy::math::DMat3::transform_vector2( &_self, rhs.into_inner(), ) @@ -19571,7 +19169,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "mul_vec3", |_self: Ref, rhs: Val| { - let output: Val = ::bevy::math::DMat3::mul_vec3( + let output: Val = bevy::math::DMat3::mul_vec3( &_self, rhs.into_inner(), ) @@ -19582,7 +19180,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "mul_mat3", |_self: Ref, rhs: Ref| { - let output: Val = ::bevy::math::DMat3::mul_mat3( + let output: Val = bevy::math::DMat3::mul_mat3( &_self, &rhs, ) @@ -19593,7 +19191,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "add_mat3", |_self: Ref, rhs: Ref| { - let output: Val = ::bevy::math::DMat3::add_mat3( + let output: Val = bevy::math::DMat3::add_mat3( &_self, &rhs, ) @@ -19604,7 +19202,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "sub_mat3", |_self: Ref, rhs: Ref| { - let output: Val = ::bevy::math::DMat3::sub_mat3( + let output: Val = bevy::math::DMat3::sub_mat3( &_self, &rhs, ) @@ -19615,7 +19213,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "mul_scalar", |_self: Ref, rhs: f64| { - let output: Val = ::bevy::math::DMat3::mul_scalar( + let output: Val = bevy::math::DMat3::mul_scalar( &_self, rhs, ) @@ -19626,7 +19224,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "div_scalar", |_self: Ref, rhs: f64| { - let output: Val = ::bevy::math::DMat3::div_scalar( + let output: Val = bevy::math::DMat3::div_scalar( &_self, rhs, ) @@ -19641,7 +19239,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { rhs: Val, max_abs_diff: f64| { - let output: bool = ::bevy::math::DMat3::abs_diff_eq( + let output: bool = bevy::math::DMat3::abs_diff_eq( &_self, rhs.into_inner(), max_abs_diff, @@ -19653,7 +19251,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "abs", |_self: Ref| { - let output: Val = ::bevy::math::DMat3::abs(&_self) + let output: Val = bevy::math::DMat3::abs(&_self) .into(); output }, @@ -19661,7 +19259,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "as_mat3", |_self: Ref| { - let output: Val = ::bevy::math::DMat3::as_mat3( + let output: Val = bevy::math::DMat3::as_mat3( &_self, ) .into(); @@ -19671,10 +19269,9 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "div", |_self: Val, rhs: f64| { - let output: Val = ::bevy::math::DMat3::div( - _self.into_inner(), - rhs, - ) + let output: Val = >::div(_self.into_inner(), rhs) .into(); output }, @@ -19682,10 +19279,9 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "mul", |_self: Val, rhs: Val| { - let output: Val = ::bevy::math::DMat3::mul( - _self.into_inner(), - rhs.into_inner(), - ) + let output: Val = >::mul(_self.into_inner(), rhs.into_inner()) .into(); output }, @@ -19693,10 +19289,9 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "mul", |_self: Val, rhs: Val| { - let output: Val = ::bevy::math::DMat3::mul( - _self.into_inner(), - rhs.into_inner(), - ) + let output: Val = >::mul(_self.into_inner(), rhs.into_inner()) .into(); output }, @@ -19704,14 +19299,17 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "eq", |_self: Ref, rhs: Ref| { - let output: bool = ::bevy::math::DMat3::eq(&_self, &rhs).into(); + let output: bool = >::eq(&_self, &rhs) + .into(); output }, ) .overwrite_script_function( "neg", |_self: Val| { - let output: Val = ::bevy::math::DMat3::neg( + let output: Val = ::neg( _self.into_inner(), ) .into(); @@ -19722,10 +19320,9 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "sub", |_self: Val, rhs: Val| { - let output: Val = ::bevy::math::DMat4::sub( - _self.into_inner(), - rhs.into_inner(), - ) + let output: Val = >::sub(_self.into_inner(), rhs.into_inner()) .into(); output }, @@ -19733,10 +19330,9 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "mul", |_self: Val, rhs: Val| { - let output: Val = ::bevy::math::DMat4::mul( - _self.into_inner(), - rhs.into_inner(), - ) + let output: Val = >::mul(_self.into_inner(), rhs.into_inner()) .into(); output }, @@ -19744,10 +19340,9 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "mul", |_self: Val, rhs: Val| { - let output: Val = ::bevy::math::DMat4::mul( - _self.into_inner(), - rhs.into_inner(), - ) + let output: Val = >::mul(_self.into_inner(), rhs.into_inner()) .into(); output }, @@ -19755,7 +19350,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "clone", |_self: Ref| { - let output: Val = ::bevy::math::DMat4::clone( + let output: Val = ::clone( &_self, ) .into(); @@ -19765,17 +19360,19 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "eq", |_self: Ref, rhs: Ref| { - let output: bool = ::bevy::math::DMat4::eq(&_self, &rhs).into(); + let output: bool = >::eq(&_self, &rhs) + .into(); output }, ) .overwrite_script_function( "mul", |_self: Val, rhs: f64| { - let output: Val = ::bevy::math::DMat4::mul( - _self.into_inner(), - rhs, - ) + let output: Val = >::mul(_self.into_inner(), rhs) .into(); output }, @@ -19783,10 +19380,9 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "mul", |_self: Val, rhs: Val| { - let output: Val = ::bevy::math::DMat4::mul( - _self.into_inner(), - rhs.into_inner(), - ) + let output: Val = >::mul(_self.into_inner(), rhs.into_inner()) .into(); output }, @@ -19799,7 +19395,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { z_axis: Val, w_axis: Val| { - let output: Val = ::bevy::math::DMat4::from_cols( + let output: Val = bevy::math::DMat4::from_cols( x_axis.into_inner(), y_axis.into_inner(), z_axis.into_inner(), @@ -19812,7 +19408,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "to_cols_array", |_self: Ref| { - let output: [f64; 16] = ::bevy::math::DMat4::to_cols_array(&_self) + let output: [f64; 16] = bevy::math::DMat4::to_cols_array(&_self) .into(); output }, @@ -19820,7 +19416,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "to_cols_array_2d", |_self: Ref| { - let output: [[f64; 4]; 4] = ::bevy::math::DMat4::to_cols_array_2d( + let output: [[f64; 4]; 4] = bevy::math::DMat4::to_cols_array_2d( &_self, ) .into(); @@ -19830,7 +19426,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "from_diagonal", |diagonal: Val| { - let output: Val = ::bevy::math::DMat4::from_diagonal( + let output: Val = bevy::math::DMat4::from_diagonal( diagonal.into_inner(), ) .into(); @@ -19844,7 +19440,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { rotation: Val, translation: Val| { - let output: Val = ::bevy::math::DMat4::from_scale_rotation_translation( + let output: Val = bevy::math::DMat4::from_scale_rotation_translation( scale.into_inner(), rotation.into_inner(), translation.into_inner(), @@ -19856,7 +19452,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "from_rotation_translation", |rotation: Val, translation: Val| { - let output: Val = ::bevy::math::DMat4::from_rotation_translation( + let output: Val = bevy::math::DMat4::from_rotation_translation( rotation.into_inner(), translation.into_inner(), ) @@ -19867,7 +19463,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "from_quat", |rotation: Val| { - let output: Val = ::bevy::math::DMat4::from_quat( + let output: Val = bevy::math::DMat4::from_quat( rotation.into_inner(), ) .into(); @@ -19877,7 +19473,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "from_mat3", |m: Val| { - let output: Val = ::bevy::math::DMat4::from_mat3( + let output: Val = bevy::math::DMat4::from_mat3( m.into_inner(), ) .into(); @@ -19887,7 +19483,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "from_translation", |translation: Val| { - let output: Val = ::bevy::math::DMat4::from_translation( + let output: Val = bevy::math::DMat4::from_translation( translation.into_inner(), ) .into(); @@ -19897,7 +19493,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "from_axis_angle", |axis: Val, angle: f64| { - let output: Val = ::bevy::math::DMat4::from_axis_angle( + let output: Val = bevy::math::DMat4::from_axis_angle( axis.into_inner(), angle, ) @@ -19908,7 +19504,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "from_euler", |order: Val, a: f64, b: f64, c: f64| { - let output: Val = ::bevy::math::DMat4::from_euler( + let output: Val = bevy::math::DMat4::from_euler( order.into_inner(), a, b, @@ -19921,7 +19517,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "to_euler", |_self: Ref, order: Val| { - let output: (f64, f64, f64) = ::bevy::math::DMat4::to_euler( + let output: (f64, f64, f64) = bevy::math::DMat4::to_euler( &_self, order.into_inner(), ) @@ -19932,7 +19528,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "from_rotation_x", |angle: f64| { - let output: Val = ::bevy::math::DMat4::from_rotation_x( + let output: Val = bevy::math::DMat4::from_rotation_x( angle, ) .into(); @@ -19942,7 +19538,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "from_rotation_y", |angle: f64| { - let output: Val = ::bevy::math::DMat4::from_rotation_y( + let output: Val = bevy::math::DMat4::from_rotation_y( angle, ) .into(); @@ -19952,7 +19548,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "from_rotation_z", |angle: f64| { - let output: Val = ::bevy::math::DMat4::from_rotation_z( + let output: Val = bevy::math::DMat4::from_rotation_z( angle, ) .into(); @@ -19962,7 +19558,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "from_scale", |scale: Val| { - let output: Val = ::bevy::math::DMat4::from_scale( + let output: Val = bevy::math::DMat4::from_scale( scale.into_inner(), ) .into(); @@ -19972,7 +19568,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "col", |_self: Ref, index: usize| { - let output: Val = ::bevy::math::DMat4::col( + let output: Val = bevy::math::DMat4::col( &_self, index, ) @@ -19983,7 +19579,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "row", |_self: Ref, index: usize| { - let output: Val = ::bevy::math::DMat4::row( + let output: Val = bevy::math::DMat4::row( &_self, index, ) @@ -19994,21 +19590,21 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "is_finite", |_self: Ref| { - let output: bool = ::bevy::math::DMat4::is_finite(&_self).into(); + let output: bool = bevy::math::DMat4::is_finite(&_self).into(); output }, ) .overwrite_script_function( "is_nan", |_self: Ref| { - let output: bool = ::bevy::math::DMat4::is_nan(&_self).into(); + let output: bool = bevy::math::DMat4::is_nan(&_self).into(); output }, ) .overwrite_script_function( "transpose", |_self: Ref| { - let output: Val = ::bevy::math::DMat4::transpose( + let output: Val = bevy::math::DMat4::transpose( &_self, ) .into(); @@ -20018,14 +19614,14 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "determinant", |_self: Ref| { - let output: f64 = ::bevy::math::DMat4::determinant(&_self).into(); + let output: f64 = bevy::math::DMat4::determinant(&_self).into(); output }, ) .overwrite_script_function( "inverse", |_self: Ref| { - let output: Val = ::bevy::math::DMat4::inverse( + let output: Val = bevy::math::DMat4::inverse( &_self, ) .into(); @@ -20039,7 +19635,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { dir: Val, up: Val| { - let output: Val = ::bevy::math::DMat4::look_to_lh( + let output: Val = bevy::math::DMat4::look_to_lh( eye.into_inner(), dir.into_inner(), up.into_inner(), @@ -20055,7 +19651,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { dir: Val, up: Val| { - let output: Val = ::bevy::math::DMat4::look_to_rh( + let output: Val = bevy::math::DMat4::look_to_rh( eye.into_inner(), dir.into_inner(), up.into_inner(), @@ -20071,7 +19667,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { center: Val, up: Val| { - let output: Val = ::bevy::math::DMat4::look_at_lh( + let output: Val = bevy::math::DMat4::look_at_lh( eye.into_inner(), center.into_inner(), up.into_inner(), @@ -20087,7 +19683,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { center: Val, up: Val| { - let output: Val = ::bevy::math::DMat4::look_at_rh( + let output: Val = bevy::math::DMat4::look_at_rh( eye.into_inner(), center.into_inner(), up.into_inner(), @@ -20099,7 +19695,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "perspective_rh_gl", |fov_y_radians: f64, aspect_ratio: f64, z_near: f64, z_far: f64| { - let output: Val = ::bevy::math::DMat4::perspective_rh_gl( + let output: Val = bevy::math::DMat4::perspective_rh_gl( fov_y_radians, aspect_ratio, z_near, @@ -20112,7 +19708,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "perspective_lh", |fov_y_radians: f64, aspect_ratio: f64, z_near: f64, z_far: f64| { - let output: Val = ::bevy::math::DMat4::perspective_lh( + let output: Val = bevy::math::DMat4::perspective_lh( fov_y_radians, aspect_ratio, z_near, @@ -20125,7 +19721,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "perspective_rh", |fov_y_radians: f64, aspect_ratio: f64, z_near: f64, z_far: f64| { - let output: Val = ::bevy::math::DMat4::perspective_rh( + let output: Val = bevy::math::DMat4::perspective_rh( fov_y_radians, aspect_ratio, z_near, @@ -20138,7 +19734,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "perspective_infinite_lh", |fov_y_radians: f64, aspect_ratio: f64, z_near: f64| { - let output: Val = ::bevy::math::DMat4::perspective_infinite_lh( + let output: Val = bevy::math::DMat4::perspective_infinite_lh( fov_y_radians, aspect_ratio, z_near, @@ -20150,7 +19746,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "perspective_infinite_reverse_lh", |fov_y_radians: f64, aspect_ratio: f64, z_near: f64| { - let output: Val = ::bevy::math::DMat4::perspective_infinite_reverse_lh( + let output: Val = bevy::math::DMat4::perspective_infinite_reverse_lh( fov_y_radians, aspect_ratio, z_near, @@ -20162,7 +19758,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "perspective_infinite_rh", |fov_y_radians: f64, aspect_ratio: f64, z_near: f64| { - let output: Val = ::bevy::math::DMat4::perspective_infinite_rh( + let output: Val = bevy::math::DMat4::perspective_infinite_rh( fov_y_radians, aspect_ratio, z_near, @@ -20174,7 +19770,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "perspective_infinite_reverse_rh", |fov_y_radians: f64, aspect_ratio: f64, z_near: f64| { - let output: Val = ::bevy::math::DMat4::perspective_infinite_reverse_rh( + let output: Val = bevy::math::DMat4::perspective_infinite_reverse_rh( fov_y_radians, aspect_ratio, z_near, @@ -20186,7 +19782,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "orthographic_rh_gl", |left: f64, right: f64, bottom: f64, top: f64, near: f64, far: f64| { - let output: Val = ::bevy::math::DMat4::orthographic_rh_gl( + let output: Val = bevy::math::DMat4::orthographic_rh_gl( left, right, bottom, @@ -20201,7 +19797,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "orthographic_lh", |left: f64, right: f64, bottom: f64, top: f64, near: f64, far: f64| { - let output: Val = ::bevy::math::DMat4::orthographic_lh( + let output: Val = bevy::math::DMat4::orthographic_lh( left, right, bottom, @@ -20216,7 +19812,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "orthographic_rh", |left: f64, right: f64, bottom: f64, top: f64, near: f64, far: f64| { - let output: Val = ::bevy::math::DMat4::orthographic_rh( + let output: Val = bevy::math::DMat4::orthographic_rh( left, right, bottom, @@ -20231,7 +19827,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "project_point3", |_self: Ref, rhs: Val| { - let output: Val = ::bevy::math::DMat4::project_point3( + let output: Val = bevy::math::DMat4::project_point3( &_self, rhs.into_inner(), ) @@ -20242,7 +19838,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "transform_point3", |_self: Ref, rhs: Val| { - let output: Val = ::bevy::math::DMat4::transform_point3( + let output: Val = bevy::math::DMat4::transform_point3( &_self, rhs.into_inner(), ) @@ -20253,7 +19849,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "transform_vector3", |_self: Ref, rhs: Val| { - let output: Val = ::bevy::math::DMat4::transform_vector3( + let output: Val = bevy::math::DMat4::transform_vector3( &_self, rhs.into_inner(), ) @@ -20264,7 +19860,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "mul_vec4", |_self: Ref, rhs: Val| { - let output: Val = ::bevy::math::DMat4::mul_vec4( + let output: Val = bevy::math::DMat4::mul_vec4( &_self, rhs.into_inner(), ) @@ -20275,7 +19871,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "mul_mat4", |_self: Ref, rhs: Ref| { - let output: Val = ::bevy::math::DMat4::mul_mat4( + let output: Val = bevy::math::DMat4::mul_mat4( &_self, &rhs, ) @@ -20286,7 +19882,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "add_mat4", |_self: Ref, rhs: Ref| { - let output: Val = ::bevy::math::DMat4::add_mat4( + let output: Val = bevy::math::DMat4::add_mat4( &_self, &rhs, ) @@ -20297,7 +19893,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "sub_mat4", |_self: Ref, rhs: Ref| { - let output: Val = ::bevy::math::DMat4::sub_mat4( + let output: Val = bevy::math::DMat4::sub_mat4( &_self, &rhs, ) @@ -20308,7 +19904,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "mul_scalar", |_self: Ref, rhs: f64| { - let output: Val = ::bevy::math::DMat4::mul_scalar( + let output: Val = bevy::math::DMat4::mul_scalar( &_self, rhs, ) @@ -20319,7 +19915,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "div_scalar", |_self: Ref, rhs: f64| { - let output: Val = ::bevy::math::DMat4::div_scalar( + let output: Val = bevy::math::DMat4::div_scalar( &_self, rhs, ) @@ -20334,7 +19930,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { rhs: Val, max_abs_diff: f64| { - let output: bool = ::bevy::math::DMat4::abs_diff_eq( + let output: bool = bevy::math::DMat4::abs_diff_eq( &_self, rhs.into_inner(), max_abs_diff, @@ -20346,7 +19942,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "abs", |_self: Ref| { - let output: Val = ::bevy::math::DMat4::abs(&_self) + let output: Val = bevy::math::DMat4::abs(&_self) .into(); output }, @@ -20354,7 +19950,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "as_mat4", |_self: Ref| { - let output: Val = ::bevy::math::DMat4::as_mat4( + let output: Val = bevy::math::DMat4::as_mat4( &_self, ) .into(); @@ -20364,10 +19960,9 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "div", |_self: Val, rhs: f64| { - let output: Val = ::bevy::math::DMat4::div( - _self.into_inner(), - rhs, - ) + let output: Val = >::div(_self.into_inner(), rhs) .into(); output }, @@ -20375,7 +19970,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "neg", |_self: Val| { - let output: Val = ::bevy::math::DMat4::neg( + let output: Val = ::neg( _self.into_inner(), ) .into(); @@ -20385,10 +19980,9 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "add", |_self: Val, rhs: Val| { - let output: Val = ::bevy::math::DMat4::add( - _self.into_inner(), - rhs.into_inner(), - ) + let output: Val = >::add(_self.into_inner(), rhs.into_inner()) .into(); output }, @@ -20401,7 +19995,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { y_axis: Val, z_axis: Val| { - let output: Val = ::bevy::math::Affine2::from_cols( + let output: Val = bevy::math::Affine2::from_cols( x_axis.into_inner(), y_axis.into_inner(), z_axis.into_inner(), @@ -20413,7 +20007,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "to_cols_array", |_self: Ref| { - let output: [f32; 6] = ::bevy::math::Affine2::to_cols_array(&_self) + let output: [f32; 6] = bevy::math::Affine2::to_cols_array(&_self) .into(); output }, @@ -20421,7 +20015,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "to_cols_array_2d", |_self: Ref| { - let output: [[f32; 2]; 3] = ::bevy::math::Affine2::to_cols_array_2d( + let output: [[f32; 2]; 3] = bevy::math::Affine2::to_cols_array_2d( &_self, ) .into(); @@ -20431,7 +20025,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "from_scale", |scale: Val| { - let output: Val = ::bevy::math::Affine2::from_scale( + let output: Val = bevy::math::Affine2::from_scale( scale.into_inner(), ) .into(); @@ -20441,7 +20035,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "from_angle", |angle: f32| { - let output: Val = ::bevy::math::Affine2::from_angle( + let output: Val = bevy::math::Affine2::from_angle( angle, ) .into(); @@ -20451,7 +20045,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "from_translation", |translation: Val| { - let output: Val = ::bevy::math::Affine2::from_translation( + let output: Val = bevy::math::Affine2::from_translation( translation.into_inner(), ) .into(); @@ -20461,7 +20055,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "from_mat2", |matrix2: Val| { - let output: Val = ::bevy::math::Affine2::from_mat2( + let output: Val = bevy::math::Affine2::from_mat2( matrix2.into_inner(), ) .into(); @@ -20471,7 +20065,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "from_mat2_translation", |matrix2: Val, translation: Val| { - let output: Val = ::bevy::math::Affine2::from_mat2_translation( + let output: Val = bevy::math::Affine2::from_mat2_translation( matrix2.into_inner(), translation.into_inner(), ) @@ -20486,7 +20080,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { angle: f32, translation: Val| { - let output: Val = ::bevy::math::Affine2::from_scale_angle_translation( + let output: Val = bevy::math::Affine2::from_scale_angle_translation( scale.into_inner(), angle, translation.into_inner(), @@ -20498,7 +20092,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "from_angle_translation", |angle: f32, translation: Val| { - let output: Val = ::bevy::math::Affine2::from_angle_translation( + let output: Val = bevy::math::Affine2::from_angle_translation( angle, translation.into_inner(), ) @@ -20509,7 +20103,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "from_mat3", |m: Val| { - let output: Val = ::bevy::math::Affine2::from_mat3( + let output: Val = bevy::math::Affine2::from_mat3( m.into_inner(), ) .into(); @@ -20519,7 +20113,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "from_mat3a", |m: Val| { - let output: Val = ::bevy::math::Affine2::from_mat3a( + let output: Val = bevy::math::Affine2::from_mat3a( m.into_inner(), ) .into(); @@ -20529,7 +20123,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "transform_point2", |_self: Ref, rhs: Val| { - let output: Val = ::bevy::math::Affine2::transform_point2( + let output: Val = bevy::math::Affine2::transform_point2( &_self, rhs.into_inner(), ) @@ -20540,7 +20134,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "transform_vector2", |_self: Ref, rhs: Val| { - let output: Val = ::bevy::math::Affine2::transform_vector2( + let output: Val = bevy::math::Affine2::transform_vector2( &_self, rhs.into_inner(), ) @@ -20551,14 +20145,14 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "is_finite", |_self: Ref| { - let output: bool = ::bevy::math::Affine2::is_finite(&_self).into(); + let output: bool = bevy::math::Affine2::is_finite(&_self).into(); output }, ) .overwrite_script_function( "is_nan", |_self: Ref| { - let output: bool = ::bevy::math::Affine2::is_nan(&_self).into(); + let output: bool = bevy::math::Affine2::is_nan(&_self).into(); output }, ) @@ -20569,7 +20163,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { rhs: Val, max_abs_diff: f32| { - let output: bool = ::bevy::math::Affine2::abs_diff_eq( + let output: bool = bevy::math::Affine2::abs_diff_eq( &_self, rhs.into_inner(), max_abs_diff, @@ -20581,7 +20175,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "inverse", |_self: Ref| { - let output: Val = ::bevy::math::Affine2::inverse( + let output: Val = bevy::math::Affine2::inverse( &_self, ) .into(); @@ -20591,10 +20185,9 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "mul", |_self: Val, rhs: Val| { - let output: Val = ::bevy::math::Affine2::mul( - _self.into_inner(), - rhs.into_inner(), - ) + let output: Val = >::mul(_self.into_inner(), rhs.into_inner()) .into(); output }, @@ -20602,10 +20195,9 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "mul", |_self: Val, rhs: Val| { - let output: Val = ::bevy::math::Affine2::mul( - _self.into_inner(), - rhs.into_inner(), - ) + let output: Val = >::mul(_self.into_inner(), rhs.into_inner()) .into(); output }, @@ -20613,10 +20205,9 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "mul", |_self: Val, rhs: Val| { - let output: Val = ::bevy::math::Affine2::mul( - _self.into_inner(), - rhs.into_inner(), - ) + let output: Val = >::mul(_self.into_inner(), rhs.into_inner()) .into(); output }, @@ -20624,14 +20215,17 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "eq", |_self: Ref, rhs: Ref| { - let output: bool = ::bevy::math::Affine2::eq(&_self, &rhs).into(); + let output: bool = >::eq(&_self, &rhs) + .into(); output }, ) .overwrite_script_function( "clone", |_self: Ref| { - let output: Val = ::bevy::math::Affine2::clone( + let output: Val = ::clone( &_self, ) .into(); @@ -20647,7 +20241,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { z_axis: Val, w_axis: Val| { - let output: Val = ::bevy::math::Affine3A::from_cols( + let output: Val = bevy::math::Affine3A::from_cols( x_axis.into_inner(), y_axis.into_inner(), z_axis.into_inner(), @@ -20660,7 +20254,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "to_cols_array", |_self: Ref| { - let output: [f32; 12] = ::bevy::math::Affine3A::to_cols_array(&_self) + let output: [f32; 12] = bevy::math::Affine3A::to_cols_array(&_self) .into(); output }, @@ -20668,7 +20262,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "to_cols_array_2d", |_self: Ref| { - let output: [[f32; 3]; 4] = ::bevy::math::Affine3A::to_cols_array_2d( + let output: [[f32; 3]; 4] = bevy::math::Affine3A::to_cols_array_2d( &_self, ) .into(); @@ -20678,7 +20272,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "from_scale", |scale: Val| { - let output: Val = ::bevy::math::Affine3A::from_scale( + let output: Val = bevy::math::Affine3A::from_scale( scale.into_inner(), ) .into(); @@ -20688,7 +20282,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "from_quat", |rotation: Val| { - let output: Val = ::bevy::math::Affine3A::from_quat( + let output: Val = bevy::math::Affine3A::from_quat( rotation.into_inner(), ) .into(); @@ -20698,7 +20292,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "from_axis_angle", |axis: Val, angle: f32| { - let output: Val = ::bevy::math::Affine3A::from_axis_angle( + let output: Val = bevy::math::Affine3A::from_axis_angle( axis.into_inner(), angle, ) @@ -20709,7 +20303,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "from_rotation_x", |angle: f32| { - let output: Val = ::bevy::math::Affine3A::from_rotation_x( + let output: Val = bevy::math::Affine3A::from_rotation_x( angle, ) .into(); @@ -20719,7 +20313,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "from_rotation_y", |angle: f32| { - let output: Val = ::bevy::math::Affine3A::from_rotation_y( + let output: Val = bevy::math::Affine3A::from_rotation_y( angle, ) .into(); @@ -20729,7 +20323,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "from_rotation_z", |angle: f32| { - let output: Val = ::bevy::math::Affine3A::from_rotation_z( + let output: Val = bevy::math::Affine3A::from_rotation_z( angle, ) .into(); @@ -20739,7 +20333,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "from_translation", |translation: Val| { - let output: Val = ::bevy::math::Affine3A::from_translation( + let output: Val = bevy::math::Affine3A::from_translation( translation.into_inner(), ) .into(); @@ -20749,7 +20343,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "from_mat3", |mat3: Val| { - let output: Val = ::bevy::math::Affine3A::from_mat3( + let output: Val = bevy::math::Affine3A::from_mat3( mat3.into_inner(), ) .into(); @@ -20759,7 +20353,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "from_mat3_translation", |mat3: Val, translation: Val| { - let output: Val = ::bevy::math::Affine3A::from_mat3_translation( + let output: Val = bevy::math::Affine3A::from_mat3_translation( mat3.into_inner(), translation.into_inner(), ) @@ -20774,7 +20368,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { rotation: Val, translation: Val| { - let output: Val = ::bevy::math::Affine3A::from_scale_rotation_translation( + let output: Val = bevy::math::Affine3A::from_scale_rotation_translation( scale.into_inner(), rotation.into_inner(), translation.into_inner(), @@ -20786,7 +20380,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "from_rotation_translation", |rotation: Val, translation: Val| { - let output: Val = ::bevy::math::Affine3A::from_rotation_translation( + let output: Val = bevy::math::Affine3A::from_rotation_translation( rotation.into_inner(), translation.into_inner(), ) @@ -20797,7 +20391,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "from_mat4", |m: Val| { - let output: Val = ::bevy::math::Affine3A::from_mat4( + let output: Val = bevy::math::Affine3A::from_mat4( m.into_inner(), ) .into(); @@ -20811,7 +20405,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { dir: Val, up: Val| { - let output: Val = ::bevy::math::Affine3A::look_to_lh( + let output: Val = bevy::math::Affine3A::look_to_lh( eye.into_inner(), dir.into_inner(), up.into_inner(), @@ -20827,7 +20421,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { dir: Val, up: Val| { - let output: Val = ::bevy::math::Affine3A::look_to_rh( + let output: Val = bevy::math::Affine3A::look_to_rh( eye.into_inner(), dir.into_inner(), up.into_inner(), @@ -20843,7 +20437,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { center: Val, up: Val| { - let output: Val = ::bevy::math::Affine3A::look_at_lh( + let output: Val = bevy::math::Affine3A::look_at_lh( eye.into_inner(), center.into_inner(), up.into_inner(), @@ -20859,7 +20453,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { center: Val, up: Val| { - let output: Val = ::bevy::math::Affine3A::look_at_rh( + let output: Val = bevy::math::Affine3A::look_at_rh( eye.into_inner(), center.into_inner(), up.into_inner(), @@ -20871,7 +20465,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "transform_point3", |_self: Ref, rhs: Val| { - let output: Val = ::bevy::math::Affine3A::transform_point3( + let output: Val = bevy::math::Affine3A::transform_point3( &_self, rhs.into_inner(), ) @@ -20882,7 +20476,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "transform_vector3", |_self: Ref, rhs: Val| { - let output: Val = ::bevy::math::Affine3A::transform_vector3( + let output: Val = bevy::math::Affine3A::transform_vector3( &_self, rhs.into_inner(), ) @@ -20893,7 +20487,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "transform_point3a", |_self: Ref, rhs: Val| { - let output: Val = ::bevy::math::Affine3A::transform_point3a( + let output: Val = bevy::math::Affine3A::transform_point3a( &_self, rhs.into_inner(), ) @@ -20904,7 +20498,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "transform_vector3a", |_self: Ref, rhs: Val| { - let output: Val = ::bevy::math::Affine3A::transform_vector3a( + let output: Val = bevy::math::Affine3A::transform_vector3a( &_self, rhs.into_inner(), ) @@ -20915,14 +20509,14 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "is_finite", |_self: Ref| { - let output: bool = ::bevy::math::Affine3A::is_finite(&_self).into(); + let output: bool = bevy::math::Affine3A::is_finite(&_self).into(); output }, ) .overwrite_script_function( "is_nan", |_self: Ref| { - let output: bool = ::bevy::math::Affine3A::is_nan(&_self).into(); + let output: bool = bevy::math::Affine3A::is_nan(&_self).into(); output }, ) @@ -20933,7 +20527,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { rhs: Val, max_abs_diff: f32| { - let output: bool = ::bevy::math::Affine3A::abs_diff_eq( + let output: bool = bevy::math::Affine3A::abs_diff_eq( &_self, rhs.into_inner(), max_abs_diff, @@ -20945,7 +20539,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "inverse", |_self: Ref| { - let output: Val = ::bevy::math::Affine3A::inverse( + let output: Val = bevy::math::Affine3A::inverse( &_self, ) .into(); @@ -20955,10 +20549,9 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "mul", |_self: Val, rhs: Val| { - let output: Val = ::bevy::math::Affine3A::mul( - _self.into_inner(), - rhs.into_inner(), - ) + let output: Val = >::mul(_self.into_inner(), rhs.into_inner()) .into(); output }, @@ -20966,17 +20559,19 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "eq", |_self: Ref, rhs: Ref| { - let output: bool = ::bevy::math::Affine3A::eq(&_self, &rhs).into(); + let output: bool = >::eq(&_self, &rhs) + .into(); output }, ) .overwrite_script_function( "mul", |_self: Val, rhs: Val| { - let output: Val = ::bevy::math::Affine3A::mul( - _self.into_inner(), - rhs.into_inner(), - ) + let output: Val = >::mul(_self.into_inner(), rhs.into_inner()) .into(); output }, @@ -20984,7 +20579,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "clone", |_self: Ref| { - let output: Val = ::bevy::math::Affine3A::clone( + let output: Val = ::clone( &_self, ) .into(); @@ -20995,10 +20590,9 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "mul", |_self: Val, rhs: Val| { - let output: Val = ::bevy::math::DAffine2::mul( - _self.into_inner(), - rhs.into_inner(), - ) + let output: Val = >::mul(_self.into_inner(), rhs.into_inner()) .into(); output }, @@ -21006,14 +20600,17 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "eq", |_self: Ref, rhs: Ref| { - let output: bool = ::bevy::math::DAffine2::eq(&_self, &rhs).into(); + let output: bool = >::eq(&_self, &rhs) + .into(); output }, ) .overwrite_script_function( "clone", |_self: Ref| { - let output: Val = ::bevy::math::DAffine2::clone( + let output: Val = ::clone( &_self, ) .into(); @@ -21027,7 +20624,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { y_axis: Val, z_axis: Val| { - let output: Val = ::bevy::math::DAffine2::from_cols( + let output: Val = bevy::math::DAffine2::from_cols( x_axis.into_inner(), y_axis.into_inner(), z_axis.into_inner(), @@ -21039,7 +20636,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "to_cols_array", |_self: Ref| { - let output: [f64; 6] = ::bevy::math::DAffine2::to_cols_array(&_self) + let output: [f64; 6] = bevy::math::DAffine2::to_cols_array(&_self) .into(); output }, @@ -21047,7 +20644,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "to_cols_array_2d", |_self: Ref| { - let output: [[f64; 2]; 3] = ::bevy::math::DAffine2::to_cols_array_2d( + let output: [[f64; 2]; 3] = bevy::math::DAffine2::to_cols_array_2d( &_self, ) .into(); @@ -21057,7 +20654,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "from_scale", |scale: Val| { - let output: Val = ::bevy::math::DAffine2::from_scale( + let output: Val = bevy::math::DAffine2::from_scale( scale.into_inner(), ) .into(); @@ -21067,7 +20664,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "from_angle", |angle: f64| { - let output: Val = ::bevy::math::DAffine2::from_angle( + let output: Val = bevy::math::DAffine2::from_angle( angle, ) .into(); @@ -21077,7 +20674,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "from_translation", |translation: Val| { - let output: Val = ::bevy::math::DAffine2::from_translation( + let output: Val = bevy::math::DAffine2::from_translation( translation.into_inner(), ) .into(); @@ -21087,7 +20684,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "from_mat2", |matrix2: Val| { - let output: Val = ::bevy::math::DAffine2::from_mat2( + let output: Val = bevy::math::DAffine2::from_mat2( matrix2.into_inner(), ) .into(); @@ -21097,7 +20694,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "from_mat2_translation", |matrix2: Val, translation: Val| { - let output: Val = ::bevy::math::DAffine2::from_mat2_translation( + let output: Val = bevy::math::DAffine2::from_mat2_translation( matrix2.into_inner(), translation.into_inner(), ) @@ -21112,7 +20709,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { angle: f64, translation: Val| { - let output: Val = ::bevy::math::DAffine2::from_scale_angle_translation( + let output: Val = bevy::math::DAffine2::from_scale_angle_translation( scale.into_inner(), angle, translation.into_inner(), @@ -21124,7 +20721,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "from_angle_translation", |angle: f64, translation: Val| { - let output: Val = ::bevy::math::DAffine2::from_angle_translation( + let output: Val = bevy::math::DAffine2::from_angle_translation( angle, translation.into_inner(), ) @@ -21135,7 +20732,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "from_mat3", |m: Val| { - let output: Val = ::bevy::math::DAffine2::from_mat3( + let output: Val = bevy::math::DAffine2::from_mat3( m.into_inner(), ) .into(); @@ -21145,7 +20742,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "transform_point2", |_self: Ref, rhs: Val| { - let output: Val = ::bevy::math::DAffine2::transform_point2( + let output: Val = bevy::math::DAffine2::transform_point2( &_self, rhs.into_inner(), ) @@ -21156,7 +20753,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "transform_vector2", |_self: Ref, rhs: Val| { - let output: Val = ::bevy::math::DAffine2::transform_vector2( + let output: Val = bevy::math::DAffine2::transform_vector2( &_self, rhs.into_inner(), ) @@ -21167,14 +20764,14 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "is_finite", |_self: Ref| { - let output: bool = ::bevy::math::DAffine2::is_finite(&_self).into(); + let output: bool = bevy::math::DAffine2::is_finite(&_self).into(); output }, ) .overwrite_script_function( "is_nan", |_self: Ref| { - let output: bool = ::bevy::math::DAffine2::is_nan(&_self).into(); + let output: bool = bevy::math::DAffine2::is_nan(&_self).into(); output }, ) @@ -21185,7 +20782,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { rhs: Val, max_abs_diff: f64| { - let output: bool = ::bevy::math::DAffine2::abs_diff_eq( + let output: bool = bevy::math::DAffine2::abs_diff_eq( &_self, rhs.into_inner(), max_abs_diff, @@ -21197,7 +20794,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "inverse", |_self: Ref| { - let output: Val = ::bevy::math::DAffine2::inverse( + let output: Val = bevy::math::DAffine2::inverse( &_self, ) .into(); @@ -21207,10 +20804,9 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "mul", |_self: Val, rhs: Val| { - let output: Val = ::bevy::math::DAffine2::mul( - _self.into_inner(), - rhs.into_inner(), - ) + let output: Val = >::mul(_self.into_inner(), rhs.into_inner()) .into(); output }, @@ -21219,10 +20815,9 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "mul", |_self: Val, rhs: Val| { - let output: Val = ::bevy::math::DAffine3::mul( - _self.into_inner(), - rhs.into_inner(), - ) + let output: Val = >::mul(_self.into_inner(), rhs.into_inner()) .into(); output }, @@ -21230,7 +20825,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "clone", |_self: Ref| { - let output: Val = ::bevy::math::DAffine3::clone( + let output: Val = ::clone( &_self, ) .into(); @@ -21240,7 +20835,10 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "eq", |_self: Ref, rhs: Ref| { - let output: bool = ::bevy::math::DAffine3::eq(&_self, &rhs).into(); + let output: bool = >::eq(&_self, &rhs) + .into(); output }, ) @@ -21252,7 +20850,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { z_axis: Val, w_axis: Val| { - let output: Val = ::bevy::math::DAffine3::from_cols( + let output: Val = bevy::math::DAffine3::from_cols( x_axis.into_inner(), y_axis.into_inner(), z_axis.into_inner(), @@ -21265,7 +20863,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "to_cols_array", |_self: Ref| { - let output: [f64; 12] = ::bevy::math::DAffine3::to_cols_array(&_self) + let output: [f64; 12] = bevy::math::DAffine3::to_cols_array(&_self) .into(); output }, @@ -21273,7 +20871,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "to_cols_array_2d", |_self: Ref| { - let output: [[f64; 3]; 4] = ::bevy::math::DAffine3::to_cols_array_2d( + let output: [[f64; 3]; 4] = bevy::math::DAffine3::to_cols_array_2d( &_self, ) .into(); @@ -21283,7 +20881,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "from_scale", |scale: Val| { - let output: Val = ::bevy::math::DAffine3::from_scale( + let output: Val = bevy::math::DAffine3::from_scale( scale.into_inner(), ) .into(); @@ -21293,7 +20891,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "from_quat", |rotation: Val| { - let output: Val = ::bevy::math::DAffine3::from_quat( + let output: Val = bevy::math::DAffine3::from_quat( rotation.into_inner(), ) .into(); @@ -21303,7 +20901,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "from_axis_angle", |axis: Val, angle: f64| { - let output: Val = ::bevy::math::DAffine3::from_axis_angle( + let output: Val = bevy::math::DAffine3::from_axis_angle( axis.into_inner(), angle, ) @@ -21314,7 +20912,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "from_rotation_x", |angle: f64| { - let output: Val = ::bevy::math::DAffine3::from_rotation_x( + let output: Val = bevy::math::DAffine3::from_rotation_x( angle, ) .into(); @@ -21324,7 +20922,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "from_rotation_y", |angle: f64| { - let output: Val = ::bevy::math::DAffine3::from_rotation_y( + let output: Val = bevy::math::DAffine3::from_rotation_y( angle, ) .into(); @@ -21334,7 +20932,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "from_rotation_z", |angle: f64| { - let output: Val = ::bevy::math::DAffine3::from_rotation_z( + let output: Val = bevy::math::DAffine3::from_rotation_z( angle, ) .into(); @@ -21344,7 +20942,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "from_translation", |translation: Val| { - let output: Val = ::bevy::math::DAffine3::from_translation( + let output: Val = bevy::math::DAffine3::from_translation( translation.into_inner(), ) .into(); @@ -21354,7 +20952,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "from_mat3", |mat3: Val| { - let output: Val = ::bevy::math::DAffine3::from_mat3( + let output: Val = bevy::math::DAffine3::from_mat3( mat3.into_inner(), ) .into(); @@ -21364,7 +20962,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "from_mat3_translation", |mat3: Val, translation: Val| { - let output: Val = ::bevy::math::DAffine3::from_mat3_translation( + let output: Val = bevy::math::DAffine3::from_mat3_translation( mat3.into_inner(), translation.into_inner(), ) @@ -21379,7 +20977,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { rotation: Val, translation: Val| { - let output: Val = ::bevy::math::DAffine3::from_scale_rotation_translation( + let output: Val = bevy::math::DAffine3::from_scale_rotation_translation( scale.into_inner(), rotation.into_inner(), translation.into_inner(), @@ -21391,7 +20989,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "from_rotation_translation", |rotation: Val, translation: Val| { - let output: Val = ::bevy::math::DAffine3::from_rotation_translation( + let output: Val = bevy::math::DAffine3::from_rotation_translation( rotation.into_inner(), translation.into_inner(), ) @@ -21402,7 +21000,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "from_mat4", |m: Val| { - let output: Val = ::bevy::math::DAffine3::from_mat4( + let output: Val = bevy::math::DAffine3::from_mat4( m.into_inner(), ) .into(); @@ -21416,7 +21014,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { dir: Val, up: Val| { - let output: Val = ::bevy::math::DAffine3::look_to_lh( + let output: Val = bevy::math::DAffine3::look_to_lh( eye.into_inner(), dir.into_inner(), up.into_inner(), @@ -21432,7 +21030,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { dir: Val, up: Val| { - let output: Val = ::bevy::math::DAffine3::look_to_rh( + let output: Val = bevy::math::DAffine3::look_to_rh( eye.into_inner(), dir.into_inner(), up.into_inner(), @@ -21448,7 +21046,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { center: Val, up: Val| { - let output: Val = ::bevy::math::DAffine3::look_at_lh( + let output: Val = bevy::math::DAffine3::look_at_lh( eye.into_inner(), center.into_inner(), up.into_inner(), @@ -21464,7 +21062,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { center: Val, up: Val| { - let output: Val = ::bevy::math::DAffine3::look_at_rh( + let output: Val = bevy::math::DAffine3::look_at_rh( eye.into_inner(), center.into_inner(), up.into_inner(), @@ -21476,7 +21074,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "transform_point3", |_self: Ref, rhs: Val| { - let output: Val = ::bevy::math::DAffine3::transform_point3( + let output: Val = bevy::math::DAffine3::transform_point3( &_self, rhs.into_inner(), ) @@ -21487,7 +21085,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "transform_vector3", |_self: Ref, rhs: Val| { - let output: Val = ::bevy::math::DAffine3::transform_vector3( + let output: Val = bevy::math::DAffine3::transform_vector3( &_self, rhs.into_inner(), ) @@ -21498,14 +21096,14 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "is_finite", |_self: Ref| { - let output: bool = ::bevy::math::DAffine3::is_finite(&_self).into(); + let output: bool = bevy::math::DAffine3::is_finite(&_self).into(); output }, ) .overwrite_script_function( "is_nan", |_self: Ref| { - let output: bool = ::bevy::math::DAffine3::is_nan(&_self).into(); + let output: bool = bevy::math::DAffine3::is_nan(&_self).into(); output }, ) @@ -21516,7 +21114,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { rhs: Val, max_abs_diff: f64| { - let output: bool = ::bevy::math::DAffine3::abs_diff_eq( + let output: bool = bevy::math::DAffine3::abs_diff_eq( &_self, rhs.into_inner(), max_abs_diff, @@ -21528,7 +21126,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "inverse", |_self: Ref| { - let output: Val = ::bevy::math::DAffine3::inverse( + let output: Val = bevy::math::DAffine3::inverse( &_self, ) .into(); @@ -21538,10 +21136,9 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "mul", |_self: Val, rhs: Val| { - let output: Val = ::bevy::math::DAffine3::mul( - _self.into_inner(), - rhs.into_inner(), - ) + let output: Val = >::mul(_self.into_inner(), rhs.into_inner()) .into(); output }, @@ -21550,10 +21147,9 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "mul", |_self: Val, rhs: f64| { - let output: Val = ::bevy::math::DQuat::mul( - _self.into_inner(), - rhs, - ) + let output: Val = >::mul(_self.into_inner(), rhs) .into(); output }, @@ -21561,10 +21157,9 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "add", |_self: Val, rhs: Val| { - let output: Val = ::bevy::math::DQuat::add( - _self.into_inner(), - rhs.into_inner(), - ) + let output: Val = >::add(_self.into_inner(), rhs.into_inner()) .into(); output }, @@ -21572,14 +21167,17 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "eq", |_self: Ref, rhs: Ref| { - let output: bool = ::bevy::math::DQuat::eq(&_self, &rhs).into(); + let output: bool = >::eq(&_self, &rhs) + .into(); output }, ) .overwrite_script_function( "neg", |_self: Val| { - let output: Val = ::bevy::math::DQuat::neg( + let output: Val = ::neg( _self.into_inner(), ) .into(); @@ -21589,7 +21187,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "clone", |_self: Ref| { - let output: Val = ::bevy::math::DQuat::clone( + let output: Val = ::clone( &_self, ) .into(); @@ -21599,10 +21197,9 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "div", |_self: Val, rhs: f64| { - let output: Val = ::bevy::math::DQuat::div( - _self.into_inner(), - rhs, - ) + let output: Val = >::div(_self.into_inner(), rhs) .into(); output }, @@ -21610,7 +21207,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "from_xyzw", |x: f64, y: f64, z: f64, w: f64| { - let output: Val = ::bevy::math::DQuat::from_xyzw( + let output: Val = bevy::math::DQuat::from_xyzw( x, y, z, @@ -21623,9 +21220,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "from_array", |a: [f64; 4]| { - let output: Val = ::bevy::math::DQuat::from_array( - a, - ) + let output: Val = bevy::math::DQuat::from_array(a) .into(); output }, @@ -21633,7 +21228,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "from_vec4", |v: Val| { - let output: Val = ::bevy::math::DQuat::from_vec4( + let output: Val = bevy::math::DQuat::from_vec4( v.into_inner(), ) .into(); @@ -21643,7 +21238,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "from_axis_angle", |axis: Val, angle: f64| { - let output: Val = ::bevy::math::DQuat::from_axis_angle( + let output: Val = bevy::math::DQuat::from_axis_angle( axis.into_inner(), angle, ) @@ -21654,7 +21249,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "from_scaled_axis", |v: Val| { - let output: Val = ::bevy::math::DQuat::from_scaled_axis( + let output: Val = bevy::math::DQuat::from_scaled_axis( v.into_inner(), ) .into(); @@ -21664,7 +21259,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "from_rotation_x", |angle: f64| { - let output: Val = ::bevy::math::DQuat::from_rotation_x( + let output: Val = bevy::math::DQuat::from_rotation_x( angle, ) .into(); @@ -21674,7 +21269,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "from_rotation_y", |angle: f64| { - let output: Val = ::bevy::math::DQuat::from_rotation_y( + let output: Val = bevy::math::DQuat::from_rotation_y( angle, ) .into(); @@ -21684,7 +21279,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "from_rotation_z", |angle: f64| { - let output: Val = ::bevy::math::DQuat::from_rotation_z( + let output: Val = bevy::math::DQuat::from_rotation_z( angle, ) .into(); @@ -21694,7 +21289,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "from_euler", |euler: Val, a: f64, b: f64, c: f64| { - let output: Val = ::bevy::math::DQuat::from_euler( + let output: Val = bevy::math::DQuat::from_euler( euler.into_inner(), a, b, @@ -21707,7 +21302,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "from_mat3", |mat: Ref| { - let output: Val = ::bevy::math::DQuat::from_mat3( + let output: Val = bevy::math::DQuat::from_mat3( &mat, ) .into(); @@ -21717,7 +21312,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "from_mat4", |mat: Ref| { - let output: Val = ::bevy::math::DQuat::from_mat4( + let output: Val = bevy::math::DQuat::from_mat4( &mat, ) .into(); @@ -21727,7 +21322,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "from_rotation_arc", |from: Val, to: Val| { - let output: Val = ::bevy::math::DQuat::from_rotation_arc( + let output: Val = bevy::math::DQuat::from_rotation_arc( from.into_inner(), to.into_inner(), ) @@ -21738,7 +21333,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "from_rotation_arc_colinear", |from: Val, to: Val| { - let output: Val = ::bevy::math::DQuat::from_rotation_arc_colinear( + let output: Val = bevy::math::DQuat::from_rotation_arc_colinear( from.into_inner(), to.into_inner(), ) @@ -21749,7 +21344,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "from_rotation_arc_2d", |from: Val, to: Val| { - let output: Val = ::bevy::math::DQuat::from_rotation_arc_2d( + let output: Val = bevy::math::DQuat::from_rotation_arc_2d( from.into_inner(), to.into_inner(), ) @@ -21760,7 +21355,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "to_scaled_axis", |_self: Val| { - let output: Val = ::bevy::math::DQuat::to_scaled_axis( + let output: Val = bevy::math::DQuat::to_scaled_axis( _self.into_inner(), ) .into(); @@ -21770,7 +21365,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "to_euler", |_self: Val, order: Val| { - let output: (f64, f64, f64) = ::bevy::math::DQuat::to_euler( + let output: (f64, f64, f64) = bevy::math::DQuat::to_euler( _self.into_inner(), order.into_inner(), ) @@ -21781,14 +21376,14 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "to_array", |_self: Ref| { - let output: [f64; 4] = ::bevy::math::DQuat::to_array(&_self).into(); + let output: [f64; 4] = bevy::math::DQuat::to_array(&_self).into(); output }, ) .overwrite_script_function( "xyz", |_self: Val| { - let output: Val = ::bevy::math::DQuat::xyz( + let output: Val = bevy::math::DQuat::xyz( _self.into_inner(), ) .into(); @@ -21798,7 +21393,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "conjugate", |_self: Val| { - let output: Val = ::bevy::math::DQuat::conjugate( + let output: Val = bevy::math::DQuat::conjugate( _self.into_inner(), ) .into(); @@ -21808,7 +21403,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "inverse", |_self: Val| { - let output: Val = ::bevy::math::DQuat::inverse( + let output: Val = bevy::math::DQuat::inverse( _self.into_inner(), ) .into(); @@ -21818,7 +21413,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "dot", |_self: Val, rhs: Val| { - let output: f64 = ::bevy::math::DQuat::dot( + let output: f64 = bevy::math::DQuat::dot( _self.into_inner(), rhs.into_inner(), ) @@ -21829,7 +21424,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "length", |_self: Val| { - let output: f64 = ::bevy::math::DQuat::length(_self.into_inner()) + let output: f64 = bevy::math::DQuat::length(_self.into_inner()) .into(); output }, @@ -21837,7 +21432,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "length_squared", |_self: Val| { - let output: f64 = ::bevy::math::DQuat::length_squared( + let output: f64 = bevy::math::DQuat::length_squared( _self.into_inner(), ) .into(); @@ -21847,9 +21442,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "length_recip", |_self: Val| { - let output: f64 = ::bevy::math::DQuat::length_recip( - _self.into_inner(), - ) + let output: f64 = bevy::math::DQuat::length_recip(_self.into_inner()) .into(); output }, @@ -21857,7 +21450,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "normalize", |_self: Val| { - let output: Val = ::bevy::math::DQuat::normalize( + let output: Val = bevy::math::DQuat::normalize( _self.into_inner(), ) .into(); @@ -21867,7 +21460,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "is_finite", |_self: Val| { - let output: bool = ::bevy::math::DQuat::is_finite(_self.into_inner()) + let output: bool = bevy::math::DQuat::is_finite(_self.into_inner()) .into(); output }, @@ -21875,7 +21468,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "is_nan", |_self: Val| { - let output: bool = ::bevy::math::DQuat::is_nan(_self.into_inner()) + let output: bool = bevy::math::DQuat::is_nan(_self.into_inner()) .into(); output }, @@ -21883,7 +21476,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "is_normalized", |_self: Val| { - let output: bool = ::bevy::math::DQuat::is_normalized( + let output: bool = bevy::math::DQuat::is_normalized( _self.into_inner(), ) .into(); @@ -21893,7 +21486,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "is_near_identity", |_self: Val| { - let output: bool = ::bevy::math::DQuat::is_near_identity( + let output: bool = bevy::math::DQuat::is_near_identity( _self.into_inner(), ) .into(); @@ -21903,7 +21496,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "angle_between", |_self: Val, rhs: Val| { - let output: f64 = ::bevy::math::DQuat::angle_between( + let output: f64 = bevy::math::DQuat::angle_between( _self.into_inner(), rhs.into_inner(), ) @@ -21918,7 +21511,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { rhs: Val, max_angle: f64| { - let output: Val = ::bevy::math::DQuat::rotate_towards( + let output: Val = bevy::math::DQuat::rotate_towards( &_self, rhs.into_inner(), max_angle, @@ -21934,7 +21527,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { rhs: Val, max_abs_diff: f64| { - let output: bool = ::bevy::math::DQuat::abs_diff_eq( + let output: bool = bevy::math::DQuat::abs_diff_eq( _self.into_inner(), rhs.into_inner(), max_abs_diff, @@ -21946,7 +21539,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "lerp", |_self: Val, end: Val, s: f64| { - let output: Val = ::bevy::math::DQuat::lerp( + let output: Val = bevy::math::DQuat::lerp( _self.into_inner(), end.into_inner(), s, @@ -21958,7 +21551,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "slerp", |_self: Val, end: Val, s: f64| { - let output: Val = ::bevy::math::DQuat::slerp( + let output: Val = bevy::math::DQuat::slerp( _self.into_inner(), end.into_inner(), s, @@ -21970,7 +21563,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "mul_vec3", |_self: Val, rhs: Val| { - let output: Val = ::bevy::math::DQuat::mul_vec3( + let output: Val = bevy::math::DQuat::mul_vec3( _self.into_inner(), rhs.into_inner(), ) @@ -21981,7 +21574,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "mul_quat", |_self: Val, rhs: Val| { - let output: Val = ::bevy::math::DQuat::mul_quat( + let output: Val = bevy::math::DQuat::mul_quat( _self.into_inner(), rhs.into_inner(), ) @@ -21992,7 +21585,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "from_affine3", |a: Ref| { - let output: Val = ::bevy::math::DQuat::from_affine3( + let output: Val = bevy::math::DQuat::from_affine3( &a, ) .into(); @@ -22002,7 +21595,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "as_quat", |_self: Val| { - let output: Val = ::bevy::math::DQuat::as_quat( + let output: Val = bevy::math::DQuat::as_quat( _self.into_inner(), ) .into(); @@ -22012,10 +21605,9 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "sub", |_self: Val, rhs: Val| { - let output: Val = ::bevy::math::DQuat::sub( - _self.into_inner(), - rhs.into_inner(), - ) + let output: Val = >::sub(_self.into_inner(), rhs.into_inner()) .into(); output }, @@ -22023,10 +21615,9 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "mul", |_self: Val, rhs: Val| { - let output: Val = ::bevy::math::DQuat::mul( - _self.into_inner(), - rhs.into_inner(), - ) + let output: Val = >::mul(_self.into_inner(), rhs.into_inner()) .into(); output }, @@ -22034,10 +21625,9 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "mul", |_self: Val, rhs: Val| { - let output: Val = ::bevy::math::DQuat::mul( - _self.into_inner(), - rhs.into_inner(), - ) + let output: Val = >::mul(_self.into_inner(), rhs.into_inner()) .into(); output }, @@ -22046,14 +21636,17 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "eq", |_self: Ref, other: Ref| { - let output: bool = ::bevy::math::EulerRot::eq(&_self, &other).into(); + let output: bool = >::eq(&_self, &other) + .into(); output }, ) .overwrite_script_function( "assert_receiver_is_total_eq", |_self: Ref| { - let output: () = ::bevy::math::EulerRot::assert_receiver_is_total_eq( + let output: () = ::assert_receiver_is_total_eq( &_self, ) .into(); @@ -22063,7 +21656,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "clone", |_self: Ref| { - let output: Val = ::bevy::math::EulerRot::clone( + let output: Val = ::clone( &_self, ) .into(); @@ -22074,7 +21667,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "new", |x: bool, y: bool, z: bool| { - let output: Val = ::bevy::math::BVec3A::new( + let output: Val = bevy::math::BVec3A::new( x, y, z, @@ -22086,7 +21679,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "splat", |v: bool| { - let output: Val = ::bevy::math::BVec3A::splat(v) + let output: Val = bevy::math::BVec3A::splat(v) .into(); output }, @@ -22094,7 +21687,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "from_array", |a: [bool; 3]| { - let output: Val = ::bevy::math::BVec3A::from_array( + let output: Val = bevy::math::BVec3A::from_array( a, ) .into(); @@ -22104,7 +21697,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "bitmask", |_self: Val| { - let output: u32 = ::bevy::math::BVec3A::bitmask(_self.into_inner()) + let output: u32 = bevy::math::BVec3A::bitmask(_self.into_inner()) .into(); output }, @@ -22112,7 +21705,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "any", |_self: Val| { - let output: bool = ::bevy::math::BVec3A::any(_self.into_inner()) + let output: bool = bevy::math::BVec3A::any(_self.into_inner()) .into(); output }, @@ -22120,7 +21713,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "all", |_self: Val| { - let output: bool = ::bevy::math::BVec3A::all(_self.into_inner()) + let output: bool = bevy::math::BVec3A::all(_self.into_inner()) .into(); output }, @@ -22128,14 +21721,14 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "test", |_self: Ref, index: usize| { - let output: bool = ::bevy::math::BVec3A::test(&_self, index).into(); + let output: bool = bevy::math::BVec3A::test(&_self, index).into(); output }, ) .overwrite_script_function( "set", |mut _self: Mut, index: usize, value: bool| { - let output: () = ::bevy::math::BVec3A::set(&mut _self, index, value) + let output: () = bevy::math::BVec3A::set(&mut _self, index, value) .into(); output }, @@ -22143,7 +21736,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "clone", |_self: Ref| { - let output: Val = ::bevy::math::BVec3A::clone( + let output: Val = ::clone( &_self, ) .into(); @@ -22153,7 +21746,10 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "eq", |_self: Ref, rhs: Ref| { - let output: bool = ::bevy::math::BVec3A::eq(&_self, &rhs).into(); + let output: bool = >::eq(&_self, &rhs) + .into(); output }, ); @@ -22161,7 +21757,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "clone", |_self: Ref| { - let output: Val = ::bevy::math::BVec4A::clone( + let output: Val = ::clone( &_self, ) .into(); @@ -22171,7 +21767,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "new", |x: bool, y: bool, z: bool, w: bool| { - let output: Val = ::bevy::math::BVec4A::new( + let output: Val = bevy::math::BVec4A::new( x, y, z, @@ -22184,7 +21780,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "splat", |v: bool| { - let output: Val = ::bevy::math::BVec4A::splat(v) + let output: Val = bevy::math::BVec4A::splat(v) .into(); output }, @@ -22192,7 +21788,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "from_array", |a: [bool; 4]| { - let output: Val = ::bevy::math::BVec4A::from_array( + let output: Val = bevy::math::BVec4A::from_array( a, ) .into(); @@ -22202,7 +21798,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "bitmask", |_self: Val| { - let output: u32 = ::bevy::math::BVec4A::bitmask(_self.into_inner()) + let output: u32 = bevy::math::BVec4A::bitmask(_self.into_inner()) .into(); output }, @@ -22210,7 +21806,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "any", |_self: Val| { - let output: bool = ::bevy::math::BVec4A::any(_self.into_inner()) + let output: bool = bevy::math::BVec4A::any(_self.into_inner()) .into(); output }, @@ -22218,7 +21814,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "all", |_self: Val| { - let output: bool = ::bevy::math::BVec4A::all(_self.into_inner()) + let output: bool = bevy::math::BVec4A::all(_self.into_inner()) .into(); output }, @@ -22226,14 +21822,14 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "test", |_self: Ref, index: usize| { - let output: bool = ::bevy::math::BVec4A::test(&_self, index).into(); + let output: bool = bevy::math::BVec4A::test(&_self, index).into(); output }, ) .overwrite_script_function( "set", |mut _self: Mut, index: usize, value: bool| { - let output: () = ::bevy::math::BVec4A::set(&mut _self, index, value) + let output: () = bevy::math::BVec4A::set(&mut _self, index, value) .into(); output }, @@ -22241,7 +21837,10 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "eq", |_self: Ref, rhs: Ref| { - let output: bool = ::bevy::math::BVec4A::eq(&_self, &rhs).into(); + let output: bool = >::eq(&_self, &rhs) + .into(); output }, ); @@ -22249,7 +21848,7 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "to_string", |_self: Ref| { - let output: std::string::String = ::smol_str::SmolStr::to_string( + let output: std::string::String = smol_str::SmolStr::to_string( &_self, ) .into(); @@ -22259,21 +21858,21 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "len", |_self: Ref| { - let output: usize = ::smol_str::SmolStr::len(&_self).into(); + let output: usize = smol_str::SmolStr::len(&_self).into(); output }, ) .overwrite_script_function( "is_empty", |_self: Ref| { - let output: bool = ::smol_str::SmolStr::is_empty(&_self).into(); + let output: bool = smol_str::SmolStr::is_empty(&_self).into(); output }, ) .overwrite_script_function( "is_heap_allocated", |_self: Ref| { - let output: bool = ::smol_str::SmolStr::is_heap_allocated(&_self) + let output: bool = smol_str::SmolStr::is_heap_allocated(&_self) .into(); output }, @@ -22281,14 +21880,17 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "eq", |_self: Ref, other: Ref| { - let output: bool = ::smol_str::SmolStr::eq(&_self, &other).into(); + let output: bool = >::eq(&_self, &other) + .into(); output }, ) .overwrite_script_function( "clone", |_self: Ref| { - let output: Val = ::smol_str::SmolStr::clone( + let output: Val = ::clone( &_self, ) .into(); @@ -22299,35 +21901,35 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "nil", || { - let output: Val = ::uuid::Uuid::nil().into(); + let output: Val = uuid::Uuid::nil().into(); output }, ) .overwrite_script_function( "max", || { - let output: Val = ::uuid::Uuid::max().into(); + let output: Val = uuid::Uuid::max().into(); output }, ) .overwrite_script_function( "from_u128", |v: u128| { - let output: Val = ::uuid::Uuid::from_u128(v).into(); + let output: Val = uuid::Uuid::from_u128(v).into(); output }, ) .overwrite_script_function( "from_u128_le", |v: u128| { - let output: Val = ::uuid::Uuid::from_u128_le(v).into(); + let output: Val = uuid::Uuid::from_u128_le(v).into(); output }, ) .overwrite_script_function( "from_u64_pair", |high_bits: u64, low_bits: u64| { - let output: Val = ::uuid::Uuid::from_u64_pair( + let output: Val = uuid::Uuid::from_u64_pair( high_bits, low_bits, ) @@ -22338,21 +21940,23 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "from_bytes", |bytes: [u8; 16]| { - let output: Val = ::uuid::Uuid::from_bytes(bytes).into(); + let output: Val = uuid::Uuid::from_bytes(bytes).into(); output }, ) .overwrite_script_function( "from_bytes_le", |b: [u8; 16]| { - let output: Val = ::uuid::Uuid::from_bytes_le(b).into(); + let output: Val = uuid::Uuid::from_bytes_le(b).into(); output }, ) .overwrite_script_function( "assert_receiver_is_total_eq", |_self: Ref| { - let output: () = ::uuid::Uuid::assert_receiver_is_total_eq(&_self) + let output: () = ::assert_receiver_is_total_eq( + &_self, + ) .into(); output }, @@ -22360,35 +21964,35 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "get_version_num", |_self: Ref| { - let output: usize = ::uuid::Uuid::get_version_num(&_self).into(); + let output: usize = uuid::Uuid::get_version_num(&_self).into(); output }, ) .overwrite_script_function( "as_u128", |_self: Ref| { - let output: u128 = ::uuid::Uuid::as_u128(&_self).into(); + let output: u128 = uuid::Uuid::as_u128(&_self).into(); output }, ) .overwrite_script_function( "to_u128_le", |_self: Ref| { - let output: u128 = ::uuid::Uuid::to_u128_le(&_self).into(); + let output: u128 = uuid::Uuid::to_u128_le(&_self).into(); output }, ) .overwrite_script_function( "as_u64_pair", |_self: Ref| { - let output: (u64, u64) = ::uuid::Uuid::as_u64_pair(&_self).into(); + let output: (u64, u64) = uuid::Uuid::as_u64_pair(&_self).into(); output }, ) .overwrite_script_function( "into_bytes", |_self: Val| { - let output: [u8; 16] = ::uuid::Uuid::into_bytes(_self.into_inner()) + let output: [u8; 16] = uuid::Uuid::into_bytes(_self.into_inner()) .into(); output }, @@ -22396,28 +22000,28 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { .overwrite_script_function( "to_bytes_le", |_self: Ref| { - let output: [u8; 16] = ::uuid::Uuid::to_bytes_le(&_self).into(); + let output: [u8; 16] = uuid::Uuid::to_bytes_le(&_self).into(); output }, ) .overwrite_script_function( "is_nil", |_self: Ref| { - let output: bool = ::uuid::Uuid::is_nil(&_self).into(); + let output: bool = uuid::Uuid::is_nil(&_self).into(); output }, ) .overwrite_script_function( "is_max", |_self: Ref| { - let output: bool = ::uuid::Uuid::is_max(&_self).into(); + let output: bool = uuid::Uuid::is_max(&_self).into(); output }, ) .overwrite_script_function( "encode_buffer", || { - let output: [u8; 45] = ::uuid::Uuid::encode_buffer().into(); + let output: [u8; 45] = uuid::Uuid::encode_buffer().into(); output }, ) @@ -22426,28 +22030,34 @@ impl ::bevy::app::Plugin for BevyReflectScriptingPlugin { |_self: Ref| { let output: bevy::reflect::erased_serde::__private::serde::__private::Option< [u8; 6], - > = ::uuid::Uuid::get_node_id(&_self).into(); + > = uuid::Uuid::get_node_id(&_self).into(); output }, ) .overwrite_script_function( "eq", |_self: Ref, other: Ref| { - let output: bool = ::uuid::Uuid::eq(&_self, &other).into(); + let output: bool = >::eq(&_self, &other) + .into(); output }, ) .overwrite_script_function( "new_v4", || { - let output: Val = ::uuid::Uuid::new_v4().into(); + let output: Val = uuid::Uuid::new_v4().into(); output }, ) .overwrite_script_function( "clone", |_self: Ref| { - let output: Val = ::uuid::Uuid::clone(&_self).into(); + let output: Val = ::clone( + &_self, + ) + .into(); output }, ); diff --git a/crates/bevy_mod_scripting_functions/src/bevy_bindings/bevy_time.rs b/crates/bevy_mod_scripting_functions/src/bevy_bindings/bevy_time.rs index 325c38597b..ecbed790e0 100644 --- a/crates/bevy_mod_scripting_functions/src/bevy_bindings/bevy_time.rs +++ b/crates/bevy_mod_scripting_functions/src/bevy_bindings/bevy_time.rs @@ -17,7 +17,7 @@ impl ::bevy::app::Plugin for BevyTimeScriptingPlugin { .overwrite_script_function( "clone", |_self: Ref| { - let output: Val = ::bevy::time::prelude::Fixed::clone( + let output: Val = ::clone( &_self, ) .into(); @@ -28,7 +28,7 @@ impl ::bevy::app::Plugin for BevyTimeScriptingPlugin { .overwrite_script_function( "clone", |_self: Ref| { - let output: Val = ::bevy::time::prelude::Real::clone( + let output: Val = ::clone( &_self, ) .into(); @@ -39,7 +39,7 @@ impl ::bevy::app::Plugin for BevyTimeScriptingPlugin { .overwrite_script_function( "assert_receiver_is_total_eq", |_self: Ref| { - let output: () = ::bevy::time::prelude::Timer::assert_receiver_is_total_eq( + let output: () = ::assert_receiver_is_total_eq( &_self, ) .into(); @@ -49,7 +49,7 @@ impl ::bevy::app::Plugin for BevyTimeScriptingPlugin { .overwrite_script_function( "from_seconds", |duration: f32, mode: Val| { - let output: Val = ::bevy::time::prelude::Timer::from_seconds( + let output: Val = bevy::time::prelude::Timer::from_seconds( duration, mode.into_inner(), ) @@ -60,7 +60,7 @@ impl ::bevy::app::Plugin for BevyTimeScriptingPlugin { .overwrite_script_function( "finished", |_self: Ref| { - let output: bool = ::bevy::time::prelude::Timer::finished(&_self) + let output: bool = bevy::time::prelude::Timer::finished(&_self) .into(); output }, @@ -68,9 +68,7 @@ impl ::bevy::app::Plugin for BevyTimeScriptingPlugin { .overwrite_script_function( "just_finished", |_self: Ref| { - let output: bool = ::bevy::time::prelude::Timer::just_finished( - &_self, - ) + let output: bool = bevy::time::prelude::Timer::just_finished(&_self) .into(); output }, @@ -78,7 +76,7 @@ impl ::bevy::app::Plugin for BevyTimeScriptingPlugin { .overwrite_script_function( "elapsed_secs", |_self: Ref| { - let output: f32 = ::bevy::time::prelude::Timer::elapsed_secs(&_self) + let output: f32 = bevy::time::prelude::Timer::elapsed_secs(&_self) .into(); output }, @@ -86,7 +84,7 @@ impl ::bevy::app::Plugin for BevyTimeScriptingPlugin { .overwrite_script_function( "elapsed_secs_f64", |_self: Ref| { - let output: f64 = ::bevy::time::prelude::Timer::elapsed_secs_f64( + let output: f64 = bevy::time::prelude::Timer::elapsed_secs_f64( &_self, ) .into(); @@ -96,7 +94,7 @@ impl ::bevy::app::Plugin for BevyTimeScriptingPlugin { .overwrite_script_function( "mode", |_self: Ref| { - let output: Val = ::bevy::time::prelude::Timer::mode( + let output: Val = bevy::time::prelude::Timer::mode( &_self, ) .into(); @@ -109,7 +107,7 @@ impl ::bevy::app::Plugin for BevyTimeScriptingPlugin { mut _self: Mut, mode: Val| { - let output: () = ::bevy::time::prelude::Timer::set_mode( + let output: () = bevy::time::prelude::Timer::set_mode( &mut _self, mode.into_inner(), ) @@ -120,7 +118,7 @@ impl ::bevy::app::Plugin for BevyTimeScriptingPlugin { .overwrite_script_function( "pause", |mut _self: Mut| { - let output: () = ::bevy::time::prelude::Timer::pause(&mut _self) + let output: () = bevy::time::prelude::Timer::pause(&mut _self) .into(); output }, @@ -128,7 +126,7 @@ impl ::bevy::app::Plugin for BevyTimeScriptingPlugin { .overwrite_script_function( "unpause", |mut _self: Mut| { - let output: () = ::bevy::time::prelude::Timer::unpause(&mut _self) + let output: () = bevy::time::prelude::Timer::unpause(&mut _self) .into(); output }, @@ -136,15 +134,14 @@ impl ::bevy::app::Plugin for BevyTimeScriptingPlugin { .overwrite_script_function( "paused", |_self: Ref| { - let output: bool = ::bevy::time::prelude::Timer::paused(&_self) - .into(); + let output: bool = bevy::time::prelude::Timer::paused(&_self).into(); output }, ) .overwrite_script_function( "reset", |mut _self: Mut| { - let output: () = ::bevy::time::prelude::Timer::reset(&mut _self) + let output: () = bevy::time::prelude::Timer::reset(&mut _self) .into(); output }, @@ -152,7 +149,7 @@ impl ::bevy::app::Plugin for BevyTimeScriptingPlugin { .overwrite_script_function( "fraction", |_self: Ref| { - let output: f32 = ::bevy::time::prelude::Timer::fraction(&_self) + let output: f32 = bevy::time::prelude::Timer::fraction(&_self) .into(); output }, @@ -160,7 +157,7 @@ impl ::bevy::app::Plugin for BevyTimeScriptingPlugin { .overwrite_script_function( "fraction_remaining", |_self: Ref| { - let output: f32 = ::bevy::time::prelude::Timer::fraction_remaining( + let output: f32 = bevy::time::prelude::Timer::fraction_remaining( &_self, ) .into(); @@ -170,9 +167,7 @@ impl ::bevy::app::Plugin for BevyTimeScriptingPlugin { .overwrite_script_function( "remaining_secs", |_self: Ref| { - let output: f32 = ::bevy::time::prelude::Timer::remaining_secs( - &_self, - ) + let output: f32 = bevy::time::prelude::Timer::remaining_secs(&_self) .into(); output }, @@ -180,7 +175,7 @@ impl ::bevy::app::Plugin for BevyTimeScriptingPlugin { .overwrite_script_function( "times_finished_this_tick", |_self: Ref| { - let output: u32 = ::bevy::time::prelude::Timer::times_finished_this_tick( + let output: u32 = bevy::time::prelude::Timer::times_finished_this_tick( &_self, ) .into(); @@ -190,7 +185,7 @@ impl ::bevy::app::Plugin for BevyTimeScriptingPlugin { .overwrite_script_function( "clone", |_self: Ref| { - let output: Val = ::bevy::time::prelude::Timer::clone( + let output: Val = ::clone( &_self, ) .into(); @@ -203,7 +198,9 @@ impl ::bevy::app::Plugin for BevyTimeScriptingPlugin { _self: Ref, other: Ref| { - let output: bool = ::bevy::time::prelude::Timer::eq(&_self, &other) + let output: bool = >::eq(&_self, &other) .into(); output }, @@ -215,10 +212,9 @@ impl ::bevy::app::Plugin for BevyTimeScriptingPlugin { _self: Ref, other: Ref| { - let output: bool = ::bevy::time::prelude::TimerMode::eq( - &_self, - &other, - ) + let output: bool = >::eq(&_self, &other) .into(); output }, @@ -226,7 +222,7 @@ impl ::bevy::app::Plugin for BevyTimeScriptingPlugin { .overwrite_script_function( "assert_receiver_is_total_eq", |_self: Ref| { - let output: () = ::bevy::time::prelude::TimerMode::assert_receiver_is_total_eq( + let output: () = ::assert_receiver_is_total_eq( &_self, ) .into(); @@ -236,7 +232,7 @@ impl ::bevy::app::Plugin for BevyTimeScriptingPlugin { .overwrite_script_function( "clone", |_self: Ref| { - let output: Val = ::bevy::time::prelude::TimerMode::clone( + let output: Val = ::clone( &_self, ) .into(); @@ -247,7 +243,7 @@ impl ::bevy::app::Plugin for BevyTimeScriptingPlugin { .overwrite_script_function( "clone", |_self: Ref| { - let output: Val = ::bevy::time::prelude::Virtual::clone( + let output: Val = ::clone( &_self, ) .into(); @@ -258,7 +254,7 @@ impl ::bevy::app::Plugin for BevyTimeScriptingPlugin { .overwrite_script_function( "assert_receiver_is_total_eq", |_self: Ref| { - let output: () = ::bevy::time::Stopwatch::assert_receiver_is_total_eq( + let output: () = ::assert_receiver_is_total_eq( &_self, ) .into(); @@ -268,7 +264,7 @@ impl ::bevy::app::Plugin for BevyTimeScriptingPlugin { .overwrite_script_function( "new", || { - let output: Val = ::bevy::time::Stopwatch::new() + let output: Val = bevy::time::Stopwatch::new() .into(); output }, @@ -276,15 +272,14 @@ impl ::bevy::app::Plugin for BevyTimeScriptingPlugin { .overwrite_script_function( "elapsed_secs", |_self: Ref| { - let output: f32 = ::bevy::time::Stopwatch::elapsed_secs(&_self) - .into(); + let output: f32 = bevy::time::Stopwatch::elapsed_secs(&_self).into(); output }, ) .overwrite_script_function( "elapsed_secs_f64", |_self: Ref| { - let output: f64 = ::bevy::time::Stopwatch::elapsed_secs_f64(&_self) + let output: f64 = bevy::time::Stopwatch::elapsed_secs_f64(&_self) .into(); output }, @@ -292,35 +287,37 @@ impl ::bevy::app::Plugin for BevyTimeScriptingPlugin { .overwrite_script_function( "pause", |mut _self: Mut| { - let output: () = ::bevy::time::Stopwatch::pause(&mut _self).into(); + let output: () = bevy::time::Stopwatch::pause(&mut _self).into(); output }, ) .overwrite_script_function( "unpause", |mut _self: Mut| { - let output: () = ::bevy::time::Stopwatch::unpause(&mut _self).into(); + let output: () = bevy::time::Stopwatch::unpause(&mut _self).into(); output }, ) .overwrite_script_function( "is_paused", |_self: Ref| { - let output: bool = ::bevy::time::Stopwatch::is_paused(&_self).into(); + let output: bool = bevy::time::Stopwatch::is_paused(&_self).into(); output }, ) .overwrite_script_function( "reset", |mut _self: Mut| { - let output: () = ::bevy::time::Stopwatch::reset(&mut _self).into(); + let output: () = bevy::time::Stopwatch::reset(&mut _self).into(); output }, ) .overwrite_script_function( "eq", |_self: Ref, other: Ref| { - let output: bool = ::bevy::time::Stopwatch::eq(&_self, &other) + let output: bool = >::eq(&_self, &other) .into(); output }, @@ -328,7 +325,7 @@ impl ::bevy::app::Plugin for BevyTimeScriptingPlugin { .overwrite_script_function( "clone", |_self: Ref| { - let output: Val = ::bevy::time::Stopwatch::clone( + let output: Val = ::clone( &_self, ) .into(); diff --git a/crates/bevy_mod_scripting_functions/src/bevy_bindings/bevy_transform.rs b/crates/bevy_mod_scripting_functions/src/bevy_bindings/bevy_transform.rs index 7a753a3bed..5f675b030d 100644 --- a/crates/bevy_mod_scripting_functions/src/bevy_bindings/bevy_transform.rs +++ b/crates/bevy_mod_scripting_functions/src/bevy_bindings/bevy_transform.rs @@ -20,7 +20,7 @@ impl ::bevy::app::Plugin for BevyTransformScriptingPlugin { .overwrite_script_function( "clone", |_self: Ref| { - let output: Val = ::bevy::transform::components::GlobalTransform::clone( + let output: Val = ::clone( &_self, ) .into(); @@ -33,10 +33,9 @@ impl ::bevy::app::Plugin for BevyTransformScriptingPlugin { _self: Ref, other: Ref| { - let output: bool = ::bevy::transform::components::GlobalTransform::eq( - &_self, - &other, - ) + let output: bool = >::eq(&_self, &other) .into(); output }, @@ -44,7 +43,7 @@ impl ::bevy::app::Plugin for BevyTransformScriptingPlugin { .overwrite_script_function( "from_xyz", |x: f32, y: f32, z: f32| { - let output: Val = ::bevy::transform::components::GlobalTransform::from_xyz( + let output: Val = bevy::transform::components::GlobalTransform::from_xyz( x, y, z, @@ -56,7 +55,7 @@ impl ::bevy::app::Plugin for BevyTransformScriptingPlugin { .overwrite_script_function( "compute_transform", |_self: Ref| { - let output: Val = ::bevy::transform::components::GlobalTransform::compute_transform( + let output: Val = bevy::transform::components::GlobalTransform::compute_transform( &_self, ) .into(); @@ -69,7 +68,7 @@ impl ::bevy::app::Plugin for BevyTransformScriptingPlugin { _self: Ref, parent: Ref| { - let output: Val = ::bevy::transform::components::GlobalTransform::reparented_to( + let output: Val = bevy::transform::components::GlobalTransform::reparented_to( &_self, &parent, ) @@ -83,7 +82,7 @@ impl ::bevy::app::Plugin for BevyTransformScriptingPlugin { _self: Ref, transform: Val| { - let output: Val = ::bevy::transform::components::GlobalTransform::mul_transform( + let output: Val = bevy::transform::components::GlobalTransform::mul_transform( &_self, transform.into_inner(), ) @@ -97,10 +96,9 @@ impl ::bevy::app::Plugin for BevyTransformScriptingPlugin { _self: Val, global_transform: Val| { - let output: Val = ::bevy::transform::components::GlobalTransform::mul( - _self.into_inner(), - global_transform.into_inner(), - ) + let output: Val = >::mul(_self.into_inner(), global_transform.into_inner()) .into(); output }, @@ -111,10 +109,9 @@ impl ::bevy::app::Plugin for BevyTransformScriptingPlugin { _self: Val, transform: Val| { - let output: Val = ::bevy::transform::components::GlobalTransform::mul( - _self.into_inner(), - transform.into_inner(), - ) + let output: Val = >::mul(_self.into_inner(), transform.into_inner()) .into(); output }, @@ -123,7 +120,7 @@ impl ::bevy::app::Plugin for BevyTransformScriptingPlugin { .overwrite_script_function( "clone", |_self: Ref| { - let output: Val = ::bevy::transform::components::Transform::clone( + let output: Val = ::clone( &_self, ) .into(); @@ -136,10 +133,9 @@ impl ::bevy::app::Plugin for BevyTransformScriptingPlugin { _self: Ref, other: Ref| { - let output: bool = ::bevy::transform::components::Transform::eq( - &_self, - &other, - ) + let output: bool = >::eq(&_self, &other) .into(); output }, @@ -150,10 +146,9 @@ impl ::bevy::app::Plugin for BevyTransformScriptingPlugin { _self: Val, global_transform: Val| { - let output: Val = ::bevy::transform::components::Transform::mul( - _self.into_inner(), - global_transform.into_inner(), - ) + let output: Val = >::mul(_self.into_inner(), global_transform.into_inner()) .into(); output }, @@ -161,7 +156,7 @@ impl ::bevy::app::Plugin for BevyTransformScriptingPlugin { .overwrite_script_function( "from_xyz", |x: f32, y: f32, z: f32| { - let output: Val = ::bevy::transform::components::Transform::from_xyz( + let output: Val = bevy::transform::components::Transform::from_xyz( x, y, z, @@ -173,7 +168,7 @@ impl ::bevy::app::Plugin for BevyTransformScriptingPlugin { .overwrite_script_function( "rotate_x", |mut _self: Mut, angle: f32| { - let output: () = ::bevy::transform::components::Transform::rotate_x( + let output: () = bevy::transform::components::Transform::rotate_x( &mut _self, angle, ) @@ -184,7 +179,7 @@ impl ::bevy::app::Plugin for BevyTransformScriptingPlugin { .overwrite_script_function( "rotate_y", |mut _self: Mut, angle: f32| { - let output: () = ::bevy::transform::components::Transform::rotate_y( + let output: () = bevy::transform::components::Transform::rotate_y( &mut _self, angle, ) @@ -195,7 +190,7 @@ impl ::bevy::app::Plugin for BevyTransformScriptingPlugin { .overwrite_script_function( "rotate_z", |mut _self: Mut, angle: f32| { - let output: () = ::bevy::transform::components::Transform::rotate_z( + let output: () = bevy::transform::components::Transform::rotate_z( &mut _self, angle, ) @@ -206,7 +201,7 @@ impl ::bevy::app::Plugin for BevyTransformScriptingPlugin { .overwrite_script_function( "rotate_local_x", |mut _self: Mut, angle: f32| { - let output: () = ::bevy::transform::components::Transform::rotate_local_x( + let output: () = bevy::transform::components::Transform::rotate_local_x( &mut _self, angle, ) @@ -217,7 +212,7 @@ impl ::bevy::app::Plugin for BevyTransformScriptingPlugin { .overwrite_script_function( "rotate_local_y", |mut _self: Mut, angle: f32| { - let output: () = ::bevy::transform::components::Transform::rotate_local_y( + let output: () = bevy::transform::components::Transform::rotate_local_y( &mut _self, angle, ) @@ -228,7 +223,7 @@ impl ::bevy::app::Plugin for BevyTransformScriptingPlugin { .overwrite_script_function( "rotate_local_z", |mut _self: Mut, angle: f32| { - let output: () = ::bevy::transform::components::Transform::rotate_local_z( + let output: () = bevy::transform::components::Transform::rotate_local_z( &mut _self, angle, ) @@ -242,7 +237,7 @@ impl ::bevy::app::Plugin for BevyTransformScriptingPlugin { _self: Ref, transform: Val| { - let output: Val = ::bevy::transform::components::Transform::mul_transform( + let output: Val = bevy::transform::components::Transform::mul_transform( &_self, transform.into_inner(), ) @@ -253,7 +248,7 @@ impl ::bevy::app::Plugin for BevyTransformScriptingPlugin { .overwrite_script_function( "is_finite", |_self: Ref| { - let output: bool = ::bevy::transform::components::Transform::is_finite( + let output: bool = bevy::transform::components::Transform::is_finite( &_self, ) .into(); @@ -266,10 +261,9 @@ impl ::bevy::app::Plugin for BevyTransformScriptingPlugin { _self: Val, transform: Val| { - let output: Val = ::bevy::transform::components::Transform::mul( - _self.into_inner(), - transform.into_inner(), - ) + let output: Val = >::mul(_self.into_inner(), transform.into_inner()) .into(); output },