Browse Source

Clarify touchpad directions;

bjorn 7 years ago
parent
commit
c5d24bb858
2 changed files with 4 additions and 4 deletions
  1. 2 2
      api/init.lua
  2. 2 2
      api/lovr/headset/ControllerAxis.lua

+ 2 - 2
api/init.lua

@@ -4790,11 +4790,11 @@ return {
             },
             {
               name = "touchx",
-              description = "The x axis of the touchpad."
+              description = "The x axis of the touchpad.  Positive values are to the right."
             },
             {
               name = "touchy",
-              description = "The y axis of the touchpad."
+              description = "The y axis of the touchpad.  Positive values are upwards."
             }
           }
         },

+ 2 - 2
api/lovr/headset/ControllerAxis.lua

@@ -7,11 +7,11 @@ return {
     },
     {
       name = 'touchx',
-      description = 'The x axis of the touchpad.'
+      description = 'The x axis of the touchpad.  Positive values are to the right.'
     },
     {
       name = 'touchy',
-      description = 'The y axis of the touchpad.'
+      description = 'The y axis of the touchpad.  Positive values are upwards.'
     }
   }
 }