@@ -8213,34 +8213,6 @@ return {
description = "The new Mesh."
}
- },
- {
- arguments = {
- name = "vertices",
- type = "table",
- description = "A table of vertices. Each vertex is a table containing the vertex data."
- name = "mode",
- type = "MeshDrawMode",
- description = "How the Mesh will connect its vertices into triangles.",
- default = "'fan'"
- name = "usage",
- type = "MeshUsage",
- description = "An optimization hint indicating how often the data in the Mesh will be updated.",
- default = "'dynamic'"
- }
- returns = {
- name = "mesh",
- type = "Mesh",
- description = "The new Mesh."
},
@@ -63,10 +63,6 @@ return {
{
arguments = { 'format', 'vertices', 'mode', 'usage' },
returns = { 'mesh' }
- arguments = { 'vertices', 'mode', 'usage' },
- returns = { 'mesh' }
notes = 'Once created, the size of the Mesh can\'t be changed.'