安装 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(越南语)
Українська(乌克兰语)
报告翻译问题
Otherwise love the mod so much, thanks for making it!
If possible I would find very useful to have a plain and simple naming option with the generic name of the vehicle followed by "line" and incremental numbers with two of three digits, as in the following examples : "Train line 01" to 99 ; "Tram line 01" to 99 ; "Bus line 001" to 999.
If you want to change the colors used by the automatic themes, you can edit the .txt files that the mod creates in Steam\steamapps\common\Cities_Skylines.
Where the player has given a station a custom name, it will be used automatically (if it's a "naming station" based on distance)
Yes! This is another one I've thought about. I actually wrote a bunch of code to find the endpoints, but I still need to port it to Unity.
I went with a different distance metric, though: the stations are joined together to form a polygon, and then I measure the shortest path between two stations that stays inside the polygon. I think it gives better results for lines that curve back on themselves, like some of these examples[imgur.com].
Very long lines with few stops could have "Express" added to the name as a heuristic. (You can always rename it if that's not what you wanted.)
For colors, look for colors in the street and building names. eg a line that runs down Red St would likely be colored red.
Two examples: https://wesandersonpalettes.tumblr.com/ and https://epijim.uk/code-snippets/wes-anderson/
Love it.
FWIW, this is done for some specific cases already:
Districts scheme: bus/metro lines with 2 districts and <= 4 stops become "#123 ThisDistrict / ThatDistrict Express"
London scheme: all lines with <= 4 stops have "Express" added at the end
Love this too!
Perhaps integrating with "addresses and names mod" in some fashion here?
Particularly
I'm not really sure why I'd use RandomHue..., but I support:
1) color-based names (based on a swatches list, I can provide if you'd like)
2) "random category color" - maybe it's already doing it and I didn't see enough lines to get it working but when I tried category color it just seemed to be the defaults. It probably should say in parenthesis or "no change - vanilla behavior"
The name is a bit misleading, I think. (It must have seemed like a good idea at the time...)
For RandomHue, buses are always blue, metros are always green, trains are always orange, but there's a list of possible colors for each (blues.txt, etc.) and it'll pick one randomly from that list.
For "CategorisedColor", what's supposed to happen is that buses are always picked from a list of pale colors, metros from a list of bright colors, and everything else from a list of dark colors. And instead of picking randomly, it basically cycles through the list.
What's it doing for you instead? The same color for all lines?