Page 1 of 1

Fast Start Up

Posted: Sun Mar 13, 2022 1:02 am
by Danjen
Is there a sort of "developer mode" you can use with Factorio that allows it to omit certain things on start up, like Steam cloud sync, ultra low resolution sprites, no music, etc?
I just figure that if you were building a mod, it would be nice to get into the game asap to test things rapidly.
Or even a command line thing that would check the mod integrity / files to make sure it's all correct without launching the game

Re: Fast Start Up

Posted: Sun Mar 13, 2022 1:34 am
by DaveMcW

Re: Fast Start Up

Posted: Sun Mar 13, 2022 2:27 am
by Danjen
That'd do it, thanks

Re: Fast Start Up

Posted: Sun Mar 13, 2022 12:32 pm
by Qon
As said in the other thread: When updating control.lua you don't need to restart the game. Loading the map works too.
But what is even faster is

Code: Select all

/c game.reload_mods()
which is instant.

Most of the times where I have to restart the game it's because I changed prototype graphics, so trying to not load graphics seems like a waste of time since then I can't properly check if things look right visually. And if graphics don't change because I updated settings.lua or something like that then you can ctrl + alt + click the settings button on the start menu and then click the secret debug options under "The rest". In there use ctrl + f and search for cache and enable the options there (cache-sprite-atlas, cache-prototype-data). Then everything loads fast (as long as no graphics or prototypes has changed) and you get full quality assets.