mirror of
https://github.com/Refactorio/RedMew.git
synced 2024-12-12 10:04:40 +02:00
6aed6d6317
Add map loader
15 lines
390 B
Lua
15 lines
390 B
Lua
local b = require "map_gen.shared.builders"
|
|
|
|
local pic = require "map_gen.data.presets.plus" --or whatever you called it in data->presets
|
|
pic = b.decompress(pic)
|
|
local map = b.picture(pic)
|
|
|
|
map = b.single_pattern(map, pic.width-1, pic.height-1)
|
|
|
|
map = b.translate(map, 86, 0)
|
|
|
|
-- uncomment the line below to change the size of the map b.scale(x, y)
|
|
map = b.scale(map, 1.5, 1.5)
|
|
|
|
return map
|