getVertexFormat.lua 499 B

123456789101112131415161718
  1. return {
  2. summary = 'Get the vertex format of the Mesh.',
  3. description = [[
  4. Get the format table of the Mesh's vertices. The format table describes the set of data that
  5. each vertex contains.
  6. ]],
  7. arguments = {},
  8. returns = {
  9. {
  10. name = 'format',
  11. type = 'table',
  12. description = [[
  13. The table of vertex attributes. Each attribute is a table containing the name of the
  14. attribute, the `AttributeType`, and the number of components.
  15. ]]
  16. }
  17. }
  18. }