removed worthless logging, and loop tag

This commit is contained in:
Jay Christy
2023-09-24 23:30:50 -04:00
parent 23ed65f06a
commit 328c574f9e

View File

@@ -82,7 +82,7 @@ pub fn hover_interaction(
(With<XRDirectInteractor>, Without<XRInteractable>),
>,
) {
'interactable: for (xr_interactable_global_transform, mut state) in
for (xr_interactable_global_transform, mut state) in
interactable_query.iter_mut()
{
let mut hovered = false;
@@ -100,7 +100,7 @@ pub fn hover_interaction(
)
< (size * size) * 2.0
{
info!("we overlapping");
//check for selections first
match interactor_state {
XRInteractorState::Idle => hovered = true,