getNodeName.lua 504 B

1234567891011121314151617181920212223
  1. return {
  2. summary = 'Get the name of a node in the Model.',
  3. description = 'Returns the name of one of the nodes (bones) in the Model.',
  4. arguments = {
  5. {
  6. name = 'index',
  7. type = 'number',
  8. description = 'The index of the node to get the name of.'
  9. }
  10. },
  11. returns = {
  12. {
  13. name = 'name',
  14. type = 'string',
  15. description = 'The name of the node.'
  16. }
  17. },
  18. related = {
  19. 'Model:getNodeCount',
  20. 'Model:getAnimationName',
  21. 'Model:getMaterialName'
  22. }
  23. }