getVertexBuffer.lua 445 B

123456789101112131415161718192021
  1. return {
  2. summary = 'Get a Buffer containing the vertices in the Model.',
  3. description = 'Returns a `Buffer` that holds the vertices of all of the meshes in the Model.',
  4. arguments = {},
  5. returns = {
  6. buffer = {
  7. type = 'Buffer',
  8. description = 'The vertex buffer.'
  9. }
  10. },
  11. variants = {
  12. {
  13. arguments = {},
  14. returns = { 'buffer' }
  15. }
  16. },
  17. related = {
  18. 'Model:getIndexBuffer',
  19. 'Model:getMesh'
  20. }
  21. }