Page 1 of 1

different colorsets

Posted: 01 Oct 2021, 09:50
by rlgsbt
Hi,
in HH5, How can I use different colorsets and manage them in the setup/global menu (via the scrolling menu) ? what is the way to edit the \Resources\Colors\ColorSet.ini to get different colorsets ? 1 file ? several files ?
and... is it possible to change the color set dynamicaly, without restarting Usine
thanks

SB

Re: different colorsets

Posted: 04 Oct 2021, 07:56
by senso
To add a new color set just edit the resources/colors/ColorSet.ini
you can add any new color set you want:

Code: Select all

[Global]
Numberofset = 2
setname1    = default
setname1    = my new colorset
...

[ColorSet2]
// Gray Scales
g0                     = $FF111111
g1                     = $FF1E1E1E
g2                     = $FF242424
g3                     = $FF2A2A2A
g4                     = $FF393939
Another (better) solution is to create a file

Code: Select all

/config/Override-ColorSet.ini
and make the modifications you want.
This file can contain only color lines you want to modify. For example if you want to modify only the color g0 just add the lines:

Code: Select all

[ColorSet1]
g0                     = $FF000000
But actually you must restart usine to apply the new colorSet, no way to do that in real time.