lets say the rgb values are R:156 G: 188 B: 235 How would i convert this into the info.json's color format? beamng's color system (example): "Ice": "0.63 0.69 0.83 1.35",
I Think BeamNG is rgba (red, green, blue, alpha) with alpha controlling how shiny or matte the finish is. In which case dividing by 255 (or 256, not sure which is technically correct in this case but it makes near enough no difference) should probably get you the colour you want. Then use 1.35 as the 4th value. You may wish to adjust the 4th slightly to your preference in terms of chrome vs matte. What I tend to do is make the colours in beamng and save them as user preset colours. There is then a file you can look in where they are stored and you can copy and paste them from there.
let me make sure i got that right, is it R=156/255 G=188/255 B=235/255 if wrong, can you write out an equation?