getWrap.lua 402 B

1234567891011121314151617
  1. return {
  2. summary = 'Get the WrapMode for the Texture.',
  3. description = 'Returns the current WrapMode for the Texture.',
  4. arguments = {},
  5. returns = {
  6. {
  7. name = 'horizontal',
  8. type = 'WrapMode',
  9. description = 'How the texture wraps horizontally.'
  10. },
  11. {
  12. name = 'vertical',
  13. type = 'WrapMode',
  14. description = 'How the texture wraps vertically.'
  15. }
  16. }
  17. }