LuaPill (日本語)



LuaPill ("Practical Isometric Layering Library for Lua" の短縮形) は Love2D および Lua 用の等大マップを生成するためのエンジンです。

function love.load()
   map = require "luapill"
   local config = {
      tilewidth = 128,
      tileheight = 64,
      folder = "images"
   }
   map:setup(config)
end

function love.update(dt)
end

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


config = {
      tilewidth = number, -- 必要
      tilewidth = number, -- 必要
      folder = "path", -- 必要
      sortFolder = boolean, -- 選択制、標準では false です。
      defaultTile = number, -- 選択制、標準では 1 です。
      tileIndex = number -- 選択制、標準では 1 です。
   }

入手および見解を得るには [1] からどうぞ。そちらには完全に動作するデモがあります。

お楽しみください!

そのほかの言語