press button on non-active hand to swap raycaster in menu mode (fixes #9)
This commit is contained in:
@@ -3,38 +3,40 @@
|
||||
* Position controller in front of camera.
|
||||
*/
|
||||
AFRAME.registerComponent('debug-controller', {
|
||||
schema: {
|
||||
enabled: { default: false },
|
||||
},
|
||||
|
||||
init: function() {
|
||||
init: function () {
|
||||
var primaryHand;
|
||||
var secondaryHand;
|
||||
|
||||
if (!this.data.enabled && !AFRAME.utils.getUrlParameter('debug')) {
|
||||
return;
|
||||
}
|
||||
if (!AFRAME.utils.getUrlParameter('debug')) { return; }
|
||||
|
||||
console.log('%c debug-controller enabled ', 'background: #111; color: red');
|
||||
|
||||
this.isCloning = false;
|
||||
this.isDeleting = false;
|
||||
this.isTriggerDown = false;
|
||||
|
||||
primaryHand = document.getElementById('leftGloveContainer');
|
||||
secondaryHand = document.getElementById('rightGloveContainer');
|
||||
primaryHand = document.getElementById('rightHand');
|
||||
secondaryHand = document.getElementById('leftHand');
|
||||
|
||||
primaryHand.setAttribute('position', { x: 0.2, y: 1.5, z: -0.5 });
|
||||
secondaryHand.setAttribute('position', { x: -0.2, y: 1.5, z: -0.5 });
|
||||
primaryHand.setAttribute('rotation', { x: 0, y: 0, z: 0 });
|
||||
secondaryHand.setAttribute('rotation', { x: 0, y: 0, z: 0 });
|
||||
if (AFRAME.utils.getUrlParameter('debug') === 'oculus') {
|
||||
primaryHand.emit('controllerconnected', {name: 'oculus-touch-controls'});
|
||||
secondaryHand.emit('controllerconnected', {name: 'oculus-touch-controls'});
|
||||
primaryHand.setAttribute('controller', 'controllerType', 'oculus-touch-controls');
|
||||
secondaryHand.setAttribute('controller', 'controllerType', 'oculus-touch-controls');
|
||||
} else {
|
||||
primaryHand.emit('controllerconnected', {name: 'vive-controls'});
|
||||
secondaryHand.emit('controllerconnected', {name: 'vive-controls'});
|
||||
primaryHand.setAttribute('controller', 'controllerType', 'vive-controls');
|
||||
secondaryHand.setAttribute('controller', 'controllerType', 'vive-controls');
|
||||
}
|
||||
|
||||
document.addEventListener('keydown', evt => {
|
||||
var primaryPosition;
|
||||
var primaryRotation;
|
||||
var secondaryPosition;
|
||||
var secondaryRotation;
|
||||
|
||||
if (!evt.shiftKey) {
|
||||
return;
|
||||
}
|
||||
if (!evt.shiftKey) { return; }
|
||||
|
||||
// <space> for trigger.
|
||||
if (evt.keyCode === 32) {
|
||||
@@ -48,6 +50,18 @@ AFRAME.registerComponent('debug-controller', {
|
||||
return;
|
||||
}
|
||||
|
||||
// <q> for secondary trigger.
|
||||
if (evt.keyCode === 81) {
|
||||
if (this.isSecondaryTriggerDown) {
|
||||
secondaryHand.emit('triggerup');
|
||||
this.isSecondaryTriggerDown = false;
|
||||
} else {
|
||||
secondaryHand.emit('triggerdown');
|
||||
this.isSecondaryTriggerDown = true;
|
||||
}
|
||||
return;
|
||||
}
|
||||
|
||||
// <n> secondary grip.
|
||||
if (evt.keyCode === 78) {
|
||||
if (this.secondaryGripDown) {
|
||||
@@ -70,48 +84,63 @@ AFRAME.registerComponent('debug-controller', {
|
||||
}
|
||||
}
|
||||
|
||||
// Menu button <1>.
|
||||
if (evt.keyCode === 49) {
|
||||
secondaryHand.emit('menudown');
|
||||
}
|
||||
|
||||
// Position bindings.
|
||||
if (!evt.ctrlKey) {
|
||||
primaryPosition = primaryHand.object3D.position;
|
||||
if (evt.keyCode === 72) {
|
||||
primaryPosition.x -= 0.01;
|
||||
} // h.
|
||||
if (evt.keyCode === 74) {
|
||||
primaryPosition.y -= 0.01;
|
||||
} // j.
|
||||
if (evt.keyCode === 75) {
|
||||
primaryPosition.y += 0.01;
|
||||
} // k.
|
||||
if (evt.keyCode === 76) {
|
||||
primaryPosition.x += 0.01;
|
||||
} // l.
|
||||
if (evt.keyCode === 59 || evt.keyCode === 186) {
|
||||
primaryPosition.z -= 0.01;
|
||||
} // ;.
|
||||
if (evt.keyCode === 222) {
|
||||
primaryPosition.z += 0.01;
|
||||
} // ;.
|
||||
if (evt.ctrlKey) {
|
||||
secondaryPosition = secondaryHand.getAttribute('position');
|
||||
if (evt.keyCode === 72) { secondaryPosition.x -= 0.01 } // h.
|
||||
if (evt.keyCode === 74) { secondaryPosition.y -= 0.01 } // j.
|
||||
if (evt.keyCode === 75) { secondaryPosition.y += 0.01 } // k.
|
||||
if (evt.keyCode === 76) { secondaryPosition.x += 0.01 } // l.
|
||||
if (evt.keyCode === 59 || evt.keyCode === 186) { secondaryPosition.z -= 0.01 } // ;.
|
||||
if (evt.keyCode === 222) { secondaryPosition.z += 0.01 } // ;.
|
||||
secondaryHand.setAttribute('position', AFRAME.utils.clone(secondaryPosition));
|
||||
} else {
|
||||
secondaryPosition = secondaryHand.object3D.position;
|
||||
if (evt.keyCode === 72) {
|
||||
secondaryPosition.x -= 0.01;
|
||||
} // h.
|
||||
if (evt.keyCode === 74) {
|
||||
secondaryPosition.y -= 0.01;
|
||||
} // j.
|
||||
if (evt.keyCode === 75) {
|
||||
secondaryPosition.y += 0.01;
|
||||
} // k.
|
||||
if (evt.keyCode === 76) {
|
||||
secondaryPosition.x += 0.01;
|
||||
} // l.
|
||||
if (evt.keyCode === 59 || evt.keyCode === 186) {
|
||||
secondaryPosition.z -= 0.01;
|
||||
} // ;.
|
||||
if (evt.keyCode === 222) {
|
||||
secondaryPosition.z += 0.01;
|
||||
} // ;.
|
||||
primaryPosition = primaryHand.getAttribute('position');
|
||||
if (evt.keyCode === 72) { primaryPosition.x -= 0.01 } // h.
|
||||
if (evt.keyCode === 74) { primaryPosition.y -= 0.01 } // j.
|
||||
if (evt.keyCode === 75) { primaryPosition.y += 0.01 } // k.
|
||||
if (evt.keyCode === 76) { primaryPosition.x += 0.01 } // l.
|
||||
if (evt.keyCode === 59 || evt.keyCode === 186) { primaryPosition.z -= 0.01 } // ;.
|
||||
if (evt.keyCode === 222) { primaryPosition.z += 0.01 } // ;.
|
||||
primaryHand.setAttribute('position', AFRAME.utils.clone(primaryPosition));
|
||||
}
|
||||
|
||||
// Rotation bindings.
|
||||
if (evt.ctrlKey) {
|
||||
secondaryRotation = secondaryHand.getAttribute('rotation');
|
||||
if (evt.keyCode === 89) { secondaryRotation.x -= 10 } // y.
|
||||
if (evt.keyCode === 79) { secondaryRotation.x += 10 } // o.
|
||||
if (evt.keyCode === 85) { secondaryRotation.y -= 10 } // u.
|
||||
if (evt.keyCode === 73) { secondaryRotation.y += 10 } // i.
|
||||
secondaryHand.setAttribute('rotation', AFRAME.utils.clone(secondaryRotation));
|
||||
} else {
|
||||
primaryRotation = primaryHand.getAttribute('rotation');
|
||||
if (evt.keyCode === 89) { primaryRotation.x -= 10 } // y.
|
||||
if (evt.keyCode === 79) { primaryRotation.x += 10 } // o.
|
||||
if (evt.keyCode === 85) { primaryRotation.y -= 10 } // u.
|
||||
if (evt.keyCode === 73) { primaryRotation.y += 10 } // i.
|
||||
primaryHand.setAttribute('rotation', AFRAME.utils.clone(primaryRotation));
|
||||
}
|
||||
});
|
||||
},
|
||||
|
||||
play: function () {
|
||||
var primaryHand;
|
||||
var secondaryHand;
|
||||
|
||||
if (!AFRAME.utils.getUrlParameter('debug')) { return; }
|
||||
|
||||
primaryHand = document.getElementById('rightHand');
|
||||
secondaryHand = document.getElementById('leftHand');
|
||||
|
||||
secondaryHand.object3D.position.set(-0.2, 1.5, -0.5);
|
||||
primaryHand.object3D.position.set(0.2, 1.5, -0.5);
|
||||
secondaryHand.setAttribute('rotation', {x: 35, y: 0, z: 0});
|
||||
primaryHand.setAttribute('rotation', {x: 35, y: 0, z: 0});
|
||||
}
|
||||
});
|
||||
|
||||
Reference in New Issue
Block a user