bjorn 1 year ago
parent
commit
b0640ebd71

+ 3 - 3
api/init.lua

@@ -24344,7 +24344,7 @@ return {
         {
           name = "getDisplayFrequency",
           tag = "headset",
-          summary = "Get the refresh rate of the headset display.",
+          summary = "Get the refresh rate of the display.",
           description = "Returns the refresh rate of the headset display, in Hz.",
           key = "lovr.headset.getDisplayFrequency",
           module = "lovr.headset",
@@ -24775,7 +24775,7 @@ return {
         {
           name = "getRefreshRates",
           tag = "headset",
-          summary = "Get the list of refresh rates supported by the headset display.",
+          summary = "Get the list of refresh rates supported by the display.",
           description = "Returns a table with all the refresh rates supported by the headset display, in Hz.",
           key = "lovr.headset.getRefreshRates",
           module = "lovr.headset",
@@ -25140,7 +25140,7 @@ return {
         {
           name = "isSeated",
           tag = "playArea",
-          summary = "Check if the headset coordinate space is configured for standing or sitting.",
+          summary = "Check if the headset coordinate space is standing or seated.",
           description = "Returns whether the headset coordinate space is in seated mode.\n\nSeated mode is enabled by setting `t.headset.seated` to true in `lovr.conf`.  In seated mode, `y=0` will be at eye level, instead of on the floor like in standing-scale experiences.\n\nThe seated coordinate space can be more convenient for applications that are rendering a simple interface in front of the user (like a video player) instead of a roomscale 3D scene.  y=0 will also be at the correct height at startup, whether the user is sitting or standing.",
           key = "lovr.headset.isSeated",
           module = "lovr.headset",

+ 1 - 1
api/lovr/headset/getDisplayFrequency.lua

@@ -1,7 +1,7 @@
 return {
   deprecated = true,
   tag = 'headset',
-  summary = 'Get the refresh rate of the headset display.',
+  summary = 'Get the refresh rate of the display.',
   description = 'Returns the refresh rate of the headset display, in Hz.',
   arguments = {},
   returns = {

+ 1 - 1
api/lovr/headset/getRefreshRates.lua

@@ -1,6 +1,6 @@
 return {
   tag = 'headset',
-  summary = 'Get the list of refresh rates supported by the headset display.',
+  summary = 'Get the list of refresh rates supported by the display.',
   description = [[
     Returns a table with all the refresh rates supported by the headset display, in Hz.
   ]],

+ 1 - 1
api/lovr/headset/isSeated.lua

@@ -1,6 +1,6 @@
 return {
   tag = 'playArea',
-  summary = 'Check if the headset coordinate space is configured for standing or sitting.',
+  summary = 'Check if the headset coordinate space is standing or seated.',
   description = [[
     Returns whether the headset coordinate space is in seated mode.