1
0
mirror of https://github.com/Refactorio/RedMew.git synced 2024-12-12 10:04:40 +02:00
RedMew/map_gen/presets/plus.lua

16 lines
533 B
Lua
Raw Normal View History

2018-04-12 21:55:07 +02:00
-- Recommend to use generate, but generate_not_threaded may be useful for testing / debugging.
require "map_gen.shared.generate_not_threaded"
--require "map_gen.shared.generate"
local pic = require "map_gen.data.presets.plus" --or whatever you called it in data->presets
local pic = decompress(pic)
local map = picture_builder(pic)
map = single_pattern_builder(map, pic.width-1, pic.height-1)
map = translate(map, 86, 0)
-- uncomment the line below to change the size of the map scale(x, y)
2018-04-13 08:56:38 +02:00
map = scale(map, 1.5, 1.5)
2018-04-12 21:55:07 +02:00
return map