Skip to content

JarrettBillingsley/Simple-Tiled-Implementation

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

8 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Simple Tiled Implementation


Simple Tiled Implementation is a Tiled Map Editor library designed for the awesome LÖVE framework.

Quick Example


local sti = require "sti"
local myMap

function love.load()
    -- Load a map exported from Tiled as a lua file
    myMap = sti.new("assets/maps/map01.lua")
end

function love.update(dt)
	myMap:update(dt) -- this doesn't do anything (yet)!
end

function love.draw()
	myMap:draw()
end

License


This code is licensed under the MIT Open Source License. Check out the LICENSE file for more information.

About

Tiled library for LÖVE

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Lua 100.0%