Install Steam
login
|
language
简体中文 (Simplified Chinese)
繁體中文 (Traditional Chinese)
日本語 (Japanese)
한국어 (Korean)
ไทย (Thai)
Български (Bulgarian)
Čeština (Czech)
Dansk (Danish)
Deutsch (German)
Español - España (Spanish - Spain)
Español - Latinoamérica (Spanish - Latin America)
Ελληνικά (Greek)
Français (French)
Italiano (Italian)
Bahasa Indonesia (Indonesian)
Magyar (Hungarian)
Nederlands (Dutch)
Norsk (Norwegian)
Polski (Polish)
Português (Portuguese - Portugal)
Português - Brasil (Portuguese - Brazil)
Română (Romanian)
Русский (Russian)
Suomi (Finnish)
Svenska (Swedish)
Türkçe (Turkish)
Tiếng Việt (Vietnamese)
Українська (Ukrainian)
Report a translation problem
This isn't currently possible in the framework.
It is possible to just have different patterns and no color variation (see angelfish for example). It's a little laborious but you could just make all your color variants into their own pattern. There's no limit to the number of patterns, you could have 20 different ones.
Right now that is your best option.
I suppose in a perfect world, you would want something like a color/hue array for each pattern?:
{
"0":[0,0.1,0.3], // pattern 0 has 3 hues
"1":[0,0.1,0.3], // pattern 1 has 3 hues
"2":[0], // pattern 2 has no hues
}
This is something I can look into in the future, but it's unfortunately not possible right now. I hope that answers your question. :)
More something like:
{
"0":{"Base":["fish_basestyle1"]; "hues":[0,0.1,0.3]; "patterns":["fish_pat_1","fish_pat_2"]},
"1":{"Base":["fish_basestyle2"]; "hues":[0,0.5,0.7]; "patterns":["fish_pat_1","fish_pat_2"]},
"2":{"Base":["fish_basestyle3"]; "hues":[null]; "patterns":[null]}
}
That would actually solve the naming too. Since the third style would use no patterns.
I understand that some "revamp" like that is going to be low priority for now.
You could achieve this with multiple patterns I think? Like have a high vibrancy pattern and a low vibrancy pattern, then the same hue looks different depending on the pattern.