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?