getType.lua 346 B

123456789101112131415161718
  1. return {
  2. tag = 'texture-metadata',
  3. summary = 'Get the type of the Texture.',
  4. description = 'Returns the type of the texture.',
  5. arguments = {},
  6. returns = {
  7. type = {
  8. type = 'TextureType',
  9. description = 'The type of the Texture.'
  10. }
  11. },
  12. variants = {
  13. {
  14. arguments = {},
  15. returns = { 'type' }
  16. }
  17. }
  18. }