diff --git a/modules/graphics/types/Quad.lua b/modules/graphics/types/Quad.lua index 95ee5ce..9bd75e2 100644 --- a/modules/graphics/types/Quad.lua +++ b/modules/graphics/types/Quad.lua @@ -89,16 +89,20 @@ return { { type = 'number', name = 'sw', - description = 'The reference width, the width of the Image. (Must be greater than 0.)', + description = + 'Optional new reference width, the width of the Texture. Must be greater than 0 if set.', + default = 'nil' }, { type = 'number', name = 'sh', - description = 'The reference height, the height of the Image. (Must be greater than 0.)', + description = + 'Optional new reference height, the height of the Texture. Must be greater than 0 if set.', + default = 'nil' }, }, }, }, }, }, -} \ No newline at end of file +}