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?