aframe-teleport-controls icon indicating copy to clipboard operation
aframe-teleport-controls copied to clipboard

ANy news about a oculus-quest-controller?

Open gino8080 opened this issue 5 years ago • 8 comments

is there any way to make it working with oculus quest controller?

gino8080 avatar Jul 02 '19 15:07 gino8080

Also would love some sort of update on how to get this working on the Oculus Quest

ianpetrarca avatar Aug 04 '19 16:08 ianpetrarca

So... still no news?

bearni95 avatar Sep 20 '19 19:09 bearni95

this just got merged into aframe, so maybe soon https://github.com/aframevr/aframe/pull/4073

micahstubbs avatar Nov 02 '19 21:11 micahstubbs

this might also be a useful approach https://github.com/TakashiYoshinaga/Oculus-Quest-Interaction-Sample

micahstubbs avatar Nov 02 '19 21:11 micahstubbs

Thanks indeed @micahstubbs that's a working example from @TakashiYoshinaga !

Utopiah avatar Jan 30 '20 16:01 Utopiah

I wish it is also helpful for you. https://github.com/TakashiYoshinaga/Oculus-Quest-Input-Sample

TakashiYoshinaga avatar Jan 30 '20 18:01 TakashiYoshinaga

I've had success with Oculus Quest today, for reference, here's what I added to my scene :

<script
    src="https://rawgit.com/fernandojsg/aframe-teleport-controls/master/dist/aframe-teleport-controls.min.js"></script>

...

<a-entity id="cameraRig">
    <a-entity id="head" camera="active: true" look-controls wasd-controls position="0 1.6 0"></a-entity>
    <a-entity oculus-touch-controls="hand: left" teleport-controls="button: trigger; collisionEntities: .collidable; cameraRig: #cameraRig; teleportOrigin: #head;"></a-entity>
    <a-entity oculus-touch-controls="hand: right" teleport-controls="button: trigger; collisionEntities: .collidable; cameraRig: #cameraRig; teleportOrigin: #head;"></a-entity>
</a-entity>

Note that the key this is mostly the default setup, except for the button: trigger (as I could not get it to work with the default trackpad value).

Raycaster then picks every entity with a class collidable, such as :

<a-plane class="collidable" position="0 0 0" width="10" height="10" color="#7BC8A4"></a-plane>

rotoglup avatar Feb 10 '20 11:02 rotoglup

Hi everyone, i am using aframe with a quest and i can use the teleportation system but the only buttons that i can use are: ['trackpad', 'trigger', 'grip', 'menu'] is there a way to use the X button or something. Thanks :D

Koroshibi avatar Sep 16 '20 08:09 Koroshibi