安装 Steam
登录
|
语言
繁體中文(繁体中文)
日本語(日语)
한국어(韩语)
ไทย(泰语)
български(保加利亚语)
Čeština(捷克语)
Dansk(丹麦语)
Deutsch(德语)
English(英语)
Español-España(西班牙语 - 西班牙)
Español - Latinoamérica(西班牙语 - 拉丁美洲)
Ελληνικά(希腊语)
Français(法语)
Italiano(意大利语)
Bahasa Indonesia(印度尼西亚语)
Magyar(匈牙利语)
Nederlands(荷兰语)
Norsk(挪威语)
Polski(波兰语)
Português(葡萄牙语 - 葡萄牙)
Português-Brasil(葡萄牙语 - 巴西)
Română(罗马尼亚语)
Русский(俄语)
Suomi(芬兰语)
Svenska(瑞典语)
Türkçe(土耳其语)
Tiếng Việt(越南语)
Українська(乌克兰语)
报告翻译问题




The state is stored in the engine state and passed to the Gui state frequently and also stored in the savegame file. It's size can indeed be critical, but not for the memory. Relatively "small" state size can slow down the game (CPU and probably FPS as well) because it has to go through the pipeline.
The game uses RAM (and VRAM) in many different ways, it is hard to capture and give general advice. The RAM is mostly influenced through savegame. Map size and number of elements, especially edges (streets+tracks).
Some say, the Timetable mod increases RAM consumption significantly.
I had a look through the code of that mod and it doesn't seem to call garbage collection at all relaying on the automated process, I suspect that might be the reason. My mod was ballooning memory usage to over 50GB during a long session (swapping heavily) before I enabled garbage collection. Now it's memory usage is stable.
There are some other mods that might hit memory hard too. Advanced Statistics comes to mind. (I've had some performance issues with it, and the author suggested trying its flush memory option.)