getFormat.lua 358 B

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