CoordinateSpace.lua 361 B

12345678910111213141516
  1. return {
  2. description = 'Different coordinate spaces for nodes in a Model.',
  3. values = {
  4. {
  5. name = 'local',
  6. description = 'The coordinate space relative to the node\'s parent.'
  7. },
  8. {
  9. name = 'global',
  10. description = 'The coordinate space relative to the root node of the Model.'
  11. }
  12. },
  13. related = {
  14. 'Model:pose'
  15. }
  16. }