JarrettBillingsley / Simple-Tiled-Implementation

Tiled library for LÖVE

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

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

License:Other


Languages

Language:Lua 100.0%