Browse Source

rm headset bounds visibility functions;

bjorn 7 years ago
parent
commit
d19c6fd294
3 changed files with 0 additions and 69 deletions
  1. 0 40
      api/init.lua
  2. 0 16
      api/lovr/headset/isBoundsVisible.lua
  3. 0 13
      api/lovr/headset/setBoundsVisible.lua

+ 0 - 40
api/init.lua

@@ -7441,26 +7441,6 @@ return {
             }
             }
           }
           }
         },
         },
-        {
-          name = "isBoundsVisible",
-          tag = "playArea",
-          summary = "Get whether the chaperone is currently visible.",
-          description = "Returns whether or not the boundary indicator is visible, indicating that the user is near the edge of the play area.",
-          key = "lovr.headset.isBoundsVisible",
-          module = "lovr.headset",
-          variants = {
-            {
-              arguments = {},
-              returns = {
-                {
-                  name = "isVisible",
-                  type = "boolean",
-                  description = "Whether or not the bounds are visible."
-                }
-              }
-            }
-          }
-        },
         {
         {
           name = "isMirrored",
           name = "isMirrored",
           tag = "headset",
           tag = "headset",
@@ -7531,26 +7511,6 @@ return {
             }
             }
           }
           }
         },
         },
-        {
-          name = "setBoundsVisible",
-          tag = "playArea",
-          summary = "Request that the chaperone be shown or hidden.",
-          description = "Requests that the boundary indicator be shown or hidden.",
-          key = "lovr.headset.setBoundsVisible",
-          module = "lovr.headset",
-          variants = {
-            {
-              arguments = {
-                {
-                  name = "visible",
-                  type = "boolean",
-                  description = "Whether the bounds should be visible or invisible."
-                }
-              },
-              returns = {}
-            }
-          }
-        },
         {
         {
           name = "setClipDistance",
           name = "setClipDistance",
           tag = "headset",
           tag = "headset",

+ 0 - 16
api/lovr/headset/isBoundsVisible.lua

@@ -1,16 +0,0 @@
-return {
-  tag = 'playArea',
-  summary = 'Get whether the chaperone is currently visible.',
-  description = [[
-    Returns whether or not the boundary indicator is visible, indicating that the user is near the
-    edge of the play area.
-  ]],
-  arguments = {},
-  returns = {
-    {
-      name = 'isVisible',
-      type = 'boolean',
-      description = 'Whether or not the bounds are visible.'
-    }
-  }
-}

+ 0 - 13
api/lovr/headset/setBoundsVisible.lua

@@ -1,13 +0,0 @@
-return {
-  tag = 'playArea',
-  summary = 'Request that the chaperone be shown or hidden.',
-  description = 'Requests that the boundary indicator be shown or hidden.',
-  arguments = {
-    {
-      name = 'visible',
-      type = 'boolean',
-      description = 'Whether the bounds should be visible or invisible.'
-    }
-  },
-  returns = {}
-}