getFormat.lua 343 B

12345678910111213141516
  1. return {
  2. summary = 'Get the pixel format of the TextureData.',
  3. description = 'Returns the format of the TextureData.',
  4. arguments = {},
  5. returns = {
  6. {
  7. name = 'format',
  8. type = 'TextureFormat',
  9. description = 'The format of the TextureData.'
  10. }
  11. },
  12. related = {
  13. 'TextureFormat',
  14. 'Texture:getFormat'
  15. }
  16. }