1
0

update docs

This commit is contained in:
Jon Michael Aanes 2025-04-17 16:41:44 +02:00
parent b55f024473
commit 5c18f2cd44

View File

@ -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