1
0
mirror of https://github.com/Refactorio/RedMew.git synced 2024-12-14 10:13:13 +02:00

Update manhattan.lua

update2024 
-location reswanpoint
-scale 1,8 so about 20% smaller map
This commit is contained in:
Claude 2024-02-17 21:26:01 +02:00 committed by GitHub
parent d893a01be9
commit 4f09e9cc58
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -11,11 +11,11 @@ local pic = require 'map_gen.data.presets.manhattan'
local world_map = b.picture(pic)
world_map = b.choose(b.rectangle(pic.width, pic.height - 4), world_map, b.empty_shape)
local x_offset, y_offset = 100, 200
local x_offset, y_offset = 0, -400
world_map = b.translate(world_map, x_offset, y_offset)
world_map = b.rotate(world_map, degrees(-270))
local scale = 1
local scale = 1.8
world_map = b.scale(world_map, scale)