getSkinInverseBindMatrix.lua 616 B

1234567891011121314151617181920212223242526
  1. return {
  2. summary = 'Get the inverse bind matrix for a joint in the skin.',
  3. description = 'Returns the inverse bind matrix for a joint in the skin.',
  4. arguments = {
  5. skin = {
  6. type = 'number',
  7. description = 'The index of a skin.'
  8. },
  9. joint = {
  10. type = 'number',
  11. description = 'The index of a joint in the skin.'
  12. }
  13. },
  14. returns = {
  15. ['...'] = {
  16. type = 'number',
  17. description = 'The 16 components of the 4x4 inverse bind matrix, in column-major order.'
  18. }
  19. },
  20. variants = {
  21. {
  22. arguments = { 'skin', 'joint' },
  23. returns = { '...' }
  24. }
  25. }
  26. }