Browse Source

rm AudioStream:seek;

bjorn 7 years ago
parent
commit
1663fa4219
2 changed files with 0 additions and 34 deletions
  1. 0 19
      api/init.lua
  2. 0 15
      api/lovr/data/AudioStream/seek.lua

+ 0 - 19
api/init.lua

@@ -2769,25 +2769,6 @@ return {
                   }
                 }
               }
-            },
-            {
-              name = "seek",
-              summary = "Seek the stream to a new position.",
-              description = "Seeks the AudioStream to the specified position.  This will cause any Sources created from the stream to also seek their playback position.",
-              key = "AudioStream:seek",
-              module = "lovr.data",
-              variants = {
-                {
-                  arguments = {
-                    {
-                      name = "time",
-                      type = "number",
-                      description = "The time to seek to, in seconds."
-                    }
-                  },
-                  returns = {}
-                }
-              }
             }
           },
           constructors = {

+ 0 - 15
api/lovr/data/AudioStream/seek.lua

@@ -1,15 +0,0 @@
-return {
-  summary = 'Seek the stream to a new position.',
-  description = [[
-    Seeks the AudioStream to the specified position.  This will cause any Sources created from the
-    stream to also seek their playback position.
-  ]],
-  arguments = {
-    {
-      name = 'time',
-      type = 'number',
-      description = 'The time to seek to, in seconds.'
-    }
-  },
-  returns = {}
-}