The issue with the getButton("menu") not functioning correctly while other NeedleXRControllerButtonName buttons do work may stem from specific mapping or input configurations for the “menu” button in your controller layout.
Steps to Debug:
Verify Button Mapping: Ensure that the “menu” button is correctly defined in your controller layout’s mapping. Check the components object to see if the button is included and mapped properly.
Check Input Source: Verify if the input source (e.g., Oculus Quest) supports the “menu” button and is correctly connected. Sometimes, the input source might not be recognized as capable of certain actions.
Test Other Controls: Try using other defined buttons to determine if the issue is isolated to the “menu” button or affecting multiple buttons.
Example Button Check
You might want to implement a simple test to iterate through defined button names and log their state for better debugging. For example:
Hi, thanks we’ll check it.
Until its been added: GetButton is a shorthand to access the gamepad buttons, you can also the xrgamepad directly via the gamepad property to get the menu buttons. Below are the relevant links
For quest controllers the menu button is the last index in the buttons array
Thanks.
ill do that temporarily
xrgamepad should certainly work at the last index
but if i understood correctly its a good practice in Needle to use the getGesture/getButton
@marwie1
now that im thinking about it
lets say for a this.context.xr?.session.addEventListener("squeezestart") for a grip squeeze
is that more process efficient than onUpdateXR hook? or is it about the same?
It’s not a big difference.
Although the squeeze event might be invoked at a different point in the frame since the squeeze event is invoked by the browser and might happen between frames and the onUpdateXR event is invoked by needle engine at the same time in the frame