threeVR icon indicating copy to clipboard operation
threeVR copied to clipboard

WASD / Controller Input

Open IstoraMandiri opened this issue 9 years ago • 2 comments

Hi, Loving the VR. Thanks for the library.

Just wanted to ask if you've seen an example of combining this with movement controls, such as using WASD or a Gamepad?

EDIT: it was easier than I thought. Just add something like the following inside requestAnimationFrame

pad = navigator.getGamepads()[0]
if pad
  camera.translateX pad.axes[0]
  camera.translateZ pad.axes[1]
  camera.translateY pad.buttons[0].value*-1 + pad.buttons[1].value

IstoraMandiri avatar Mar 22 '15 06:03 IstoraMandiri

I notice that you have closed this issue.

I do think we should explore adding WASD and Gamepad controls to the library (that can be enabled/disabled by the developer as required).

I'm happy to review pull requests if you are interested in contributing. Also, thank you for providing the basis of your research in to gamepad support in the edit to your post above!

richtr avatar Mar 23 '15 14:03 richtr

Okay cool, I'll re-open the issue - I may eventually get around to sending a PR, but don't let that stop anyone else from going for it!

IstoraMandiri avatar Mar 24 '15 05:03 IstoraMandiri