OriginType.lua 599 B

1234567891011121314151617181920212223
  1. return {
  2. summary = 'Different coordinate spaces for nodes in a Model.',
  3. description = 'Different coordinate spaces for nodes in a `Model`.',
  4. values = {
  5. {
  6. name = 'root',
  7. description = 'Transforms are relative to the origin (root) of the Model.'
  8. },
  9. {
  10. name = 'parent',
  11. description = 'Transforms are relative to the parent of the node.'
  12. }
  13. },
  14. related = {
  15. 'Model:getNodePosition',
  16. 'Model:getNodeOrientation',
  17. 'Model:getNodeScale',
  18. 'Model:getNodePose',
  19. 'Model:getNodeTransform',
  20. 'Model:getRootNode',
  21. 'Model:getNodeParent'
  22. }
  23. }