Skip to content
Snippets Groups Projects
Commit 5dc7d7a7 authored by johnshaughnessy's avatar johnshaughnessy
Browse files

Add gaze teleport to keyboard user bindings

parent 4b3c5929
No related branches found
No related tags found
No related merge requests found
......@@ -12,7 +12,9 @@ const dropWithRMBorEscBindings = [
{
src: { value: paths.device.mouse.buttonRight },
dest: { value: dropWithRMB },
xform: xforms.falling
xform: xforms.falling,
root: "rmb",
priority: 200
},
{
src: { value: paths.device.keyboard.key("Escape") },
......@@ -136,6 +138,26 @@ export const keyboardMouseUserBindings = {
value: paths.actions.logDebugFrame
},
xform: xforms.rising
},
{
src: {
value: paths.device.mouse.buttonRight
},
dest: {
value: paths.actions.startGazeTeleport
},
xform: xforms.rising,
root: "rmb",
priority: 100
},
{
src: {
value: paths.device.mouse.buttonRight
},
dest: {
value: paths.actions.stopGazeTeleport
},
xform: xforms.falling
}
],
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment