Created
June 21, 2020 13:24
-
-
Save marfillaster/eaa9b7ca7db04ba7ad2d1561cb34fc94 to your computer and use it in GitHub Desktop.
Factorio screenshot
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# output directory %AppData%\Roaming\Factorio\script-output | |
# stitch with https://www.microsoft.com/en-us/research/product/computational-photography-applications/image-composite-editor/ | |
/c | |
game.player.surface.always_day=true | |
local r=8 | |
local rr=-8 | |
local z=0 | |
for y=rr,r-1 do | |
for x=rr,r-1 do | |
z = z + 1 | |
game.take_screenshot{position={(x*32) + 16, (y*32) + 16}, path="screenshot-"..(string.format("%03d", z)).."_"..(x+7).."_"..(y+7)..".jpg" , zoom=0.909, show_entity_info=true } | |
end | |
end | |
game.player.surface.always_day=false |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment