In other languages: Čeština Deutsch Español Français 日本語 한국어 Nederlands Polski Português, Brasil Русский Українська 简体中文

Time: Difference between revisions

From Official Factorio Wiki
Jump to navigation Jump to search
No edit summary
m (substituted links to go to official lua api documentation)
Line 8: Line 8:
Time in Factorio may also refer to:
Time in Factorio may also refer to:


* [[Lua/Game#tick|game time]]: measured in [[Game-tick]]s or [[Game-second]]s. This is very important.
* [[http://lua-api.factorio.com/latest/LuaGameScript.html#LuaGameScript.tick|game time]]: measured in [[Game-tick]]s or [[Game-second]]s. This is very important.
* [[Lua/Game#speed|game speed factor]]: the factor that is used to multiply real time to achieve game time.
* [[http://lua-api.factorio.com/latest/LuaGameScript.html#LuaGameScript.speed|game speed factor]]: the factor that is used to multiply real time to achieve game time.


Real time and game time is normally equal, so the factor is normally 1. It can be changed using the [[Console commands|console]] and setting the variable [[Lua/Game#speed|game.speed]].
Real time and game time is normally equal, so the factor is normally 1. It can be changed using the [[Console commands|console]] and setting the variable [[Lua/Game#speed|game.speed]].
Line 19: Line 19:
=== See also ===
=== See also ===


* [[Lua/Game#tick]]
* [[http://lua-api.factorio.com/latest/LuaGameScript.html]]
* [[Game-tick]]
* [[Game-tick]]
* [[Game-second]]
* [[Game-second]]
* [[Game-day]]
* [[Game-day]]
* [[Units]]
* [[Units]]

Revision as of 19:35, 3 February 2017

Crafting time icon.

Crafting time

When hovering over an item recipe, you may see a clock symbol and a number. This is the amount of time needed to craft the item in game seconds. Assembling machines have a multiplier that determines their crafting speed. Modules may also affect crafting time, either speeding it up or slowing it down for some other benefit.

Game time

Time in Factorio may also refer to:

Real time and game time is normally equal, so the factor is normally 1. It can be changed using the console and setting the variable game.speed.

Game time may also be slowed if the game processing cannot keep up (e.g. 100% of CPU resources are being used). If the game cannot keep up with real time, then the game time automatically decreases to the needed amount, resulting in stuttering gameplay.

How to limit FPS to 30?

See also