From 5c18f2cd447ef01b4e47796b8794dd183e1b90c8 Mon Sep 17 00:00:00 2001 From: Jon Michael Aanes Date: Thu, 17 Apr 2025 16:41:44 +0200 Subject: [PATCH] update docs --- spritesheet.lua | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/spritesheet.lua b/spritesheet.lua index b4e1c4f..135896b 100644 --- a/spritesheet.lua +++ b/spritesheet.lua @@ -1,4 +1,4 @@ --- # Spritesheet +--- # Spritesheet -- -- Library for managing sprite sheets of textures and animations. -- @@ -10,6 +10,8 @@ -- - When drawing an image or animation when a shader is defined the library may -- send certain useful constants along, notably `spritesheet_inverse_width` and -- `spritesheet_inverse_height`. +-- - Checks that LÖVE is defined; if not, run in information loading +-- mode only. local _VERSION = '0.1.3' @@ -24,8 +26,6 @@ local error, error_internal do end -------------------------------------------------------------------------------- --- Checks that LÖVE is defined; if not, run in information loading --- mode only. local define_love = true if type(love) ~= 'table' then