Browse Source

rm Model:getMesh;

bjorn 6 years ago
parent
commit
f7484ddf37
2 changed files with 0 additions and 37 deletions
  1. 0 22
      api/init.lua
  2. 0 15
      api/lovr/graphics/Model/getMesh.lua

+ 0 - 22
api/init.lua

@@ -11862,28 +11862,6 @@ return {
                 }
               }
             },
-            {
-              name = "getMesh",
-              summary = "Get the Model's underlying Mesh object.",
-              description = "Returns the underlying `Mesh` object for the Model.",
-              key = "Model:getMesh",
-              module = "lovr.graphics",
-              related = {
-                "Mesh"
-              },
-              variants = {
-                {
-                  arguments = {},
-                  returns = {
-                    {
-                      name = "mesh",
-                      type = "Mesh",
-                      description = "The Mesh object for the model, containing all of the raw vertex data."
-                    }
-                  }
-                }
-              }
-            },
             {
               name = "setAnimator",
               summary = "Attach an Animator to the Model.",

+ 0 - 15
api/lovr/graphics/Model/getMesh.lua

@@ -1,15 +0,0 @@
-return {
-  summary = 'Get the Model\'s underlying Mesh object.',
-  description = 'Returns the underlying `Mesh` object for the Model.',
-  arguments = {},
-  returns = {
-    {
-      name = 'mesh',
-      type = 'Mesh',
-      description = 'The Mesh object for the model, containing all of the raw vertex data.'
-    }
-  },
-  related = {
-    'Mesh'
-  }
-}