From 718a5d69e695d9457e02a0c6c21e07cd9ed74e82 Mon Sep 17 00:00:00 2001 From: Kalle Date: Wed, 13 Jul 2016 12:01:50 -0400 Subject: [PATCH] Change lua common script to toggle three types of interaction friction. --- scripts/common.lua | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/scripts/common.lua b/scripts/common.lua index 7861bbf263..2083c2e5d3 100644 --- a/scripts/common.lua +++ b/scripts/common.lua @@ -17,8 +17,9 @@ helper.setCommonKeys = function() openspace.bindKey("COMMA", "openspace.setRenderer('Framebuffer');") openspace.bindKey("PERIOD", "openspace.setRenderer('ABuffer');") - openspace.bindKey("f", helper.property.invert('Interaction.rotationalFriction')) - openspace.bindKey("Shift+f", helper.property.invert('Interaction.zoomFriction')) + openspace.bindKey("f", helper.property.invert('Interaction.horizontalFriction')) + openspace.bindKey("Shift+f", helper.property.invert('Interaction.rotationalFriction')) + openspace.bindKey("Shift+Ctrl+f", helper.property.invert('Interaction.verticalFriction')) end helper.setDeltaTimeKeys = function(t)