Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: disconnect event listeners in InteractiveGroup #29975

Open
wants to merge 1 commit into
base: dev
Choose a base branch
from

Conversation

bbsimong
Copy link

Description

Noticed this when messing with the InteractiveGroup utility. The event listeners are bound in the listenTo methods, but they're not removed when the group is removed from the scene. I added a disconnect method which does this explicitly.

As there's a stopPropagation in the onPointerEvent, adding an interactive group to the scene and removing it later would prevent any of the pointer event listeners firing that were bound earlier.

listenToXRControllerEvents( controller ) {

this.controllers.push( controller );
controller.addEventListener( 'move', this._onXRControllerEvent );
Copy link
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I ported this over, but I don't think move is an actual XR event? It's not listed on the MDN https://developer.mozilla.org/en-US/docs/Web/API/XRSession/select_event

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant