Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save marfillaster/eaa9b7ca7db04ba7ad2d1561cb34fc94 to your computer and use it in GitHub Desktop.
Save marfillaster/eaa9b7ca7db04ba7ad2d1561cb34fc94 to your computer and use it in GitHub Desktop.
Factorio screenshot
# 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