setUserData.lua 339 B

1234567891011121314151617
  1. return {
  2. summary = 'Set the Joint\'s user data.',
  3. description = 'Sets the user data associated with the Joint.',
  4. arguments = {
  5. data = {
  6. type = '*',
  7. description = 'The custom value associated with the Joint.'
  8. }
  9. },
  10. returns = {},
  11. variants = {
  12. {
  13. arguments = { 'data' },
  14. returns = {}
  15. }
  16. }
  17. }