getHeight.lua 392 B

1234567891011121314151617
  1. return {
  2. summary = 'Get the height of the TextureData.',
  3. description = 'Returns the height of the TextureData, in pixels.',
  4. arguments = {},
  5. returns = {
  6. {
  7. name = 'height',
  8. type = 'number',
  9. description = 'The height of the TextureData, in pixels.'
  10. }
  11. },
  12. related = {
  13. 'TextureData:getWidth',
  14. 'TextureData:getDimensions',
  15. 'Texture:getHeight'
  16. }
  17. }