Advertisement
lavalevel

Tile LUA

Dec 23rd, 2013
125
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 1.62 KB | None | 0 0
  1. return {
  2.   version = "1.1",
  3.   luaversion = "5.1",
  4.   orientation = "orthogonal",
  5.   width = 16,
  6.   height = 16,
  7.   tilewidth = 20,
  8.   tileheight = 20,
  9.   properties = {},
  10.   tilesets = {
  11.     {
  12.       name = "TileMap",
  13.       firstgid = 1,
  14.       tilewidth = 20,
  15.       tileheight = 20,
  16.       spacing = 0,
  17.       margin = 0,
  18.       image = "../TileMap.png",
  19.       imagewidth = 100,
  20.       imageheight = 100,
  21.       properties = {},
  22.       tiles = {}
  23.     }
  24.   },
  25.   layers = {
  26.     {
  27.       type = "tilelayer",
  28.       name = "Tile Layer 1",
  29.       x = 0,
  30.       y = 0,
  31.       width = 16,
  32.       height = 16,
  33.       visible = true,
  34.       opacity = 1,
  35.       properties = {},
  36.       encoding = "lua",
  37.       data = {
  38.         5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5,
  39.         5, 5, 2, 2, 2, 5, 5, 5, 2, 2, 2, 2, 4, 4, 4, 4,
  40.         5, 2, 2, 2, 2, 2, 5, 2, 2, 2, 2, 2, 2, 4, 4, 4,
  41.         5, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 5, 2, 2, 4, 4,
  42.         5, 2, 2, 2, 2, 2, 2, 2, 2, 3, 3, 5, 3, 2, 2, 4,
  43.         5, 2, 2, 2, 2, 2, 2, 2, 3, 3, 5, 5, 3, 3, 2, 2,
  44.         5, 2, 2, 2, 2, 2, 2, 3, 3, 5, 5, 3, 3, 2, 2, 2,
  45.         5, 2, 2, 2, 2, 3, 3, 3, 5, 5, 3, 3, 2, 2, 2, 2,
  46.         5, 2, 2, 2, 3, 3, 3, 3, 5, 3, 3, 3, 2, 2, 2, 2,
  47.         5, 2, 2, 3, 3, 3, 3, 3, 5, 3, 3, 3, 2, 2, 2, 2,
  48.         5, 2, 2, 3, 3, 3, 3, 3, 5, 3, 3, 2, 2, 2, 4, 4,
  49.         5, 2, 2, 2, 2, 2, 3, 3, 5, 3, 3, 2, 2, 2, 4, 4,
  50.         5, 2, 2, 2, 2, 2, 2, 2, 5, 3, 2, 2, 2, 4, 4, 4,
  51.         5, 5, 5, 2, 2, 2, 2, 5, 5, 2, 2, 2, 2, 4, 4, 4,
  52.         5, 5, 5, 5, 5, 2, 2, 5, 5, 5, 3, 3, 4, 4, 4, 4,
  53.         5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5
  54.       }
  55.     }
  56.   }
  57. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement