Modding Help Race color options

Discussion in 'Starbound Modding' started by Furrik, Aug 10, 2017.

  1. Furrik

    Furrik Scruffy Nerf-Herder

    I'm trying to modify a race mod for private usage so that hair color always stays the same as body color. There should be 3 different colors in total: body color, belly color, and detail color. I made sure the hair is the same color as body in the PNGs. Now everything except hair works.

    I looked at other races' .species files to see how it should look and did this:
    Code:
    "altOptionAsUndyColor" : true,
    "headOptionAsHairColor" : true,
    "altOptionAsHairColor" : true,
    "hairColorAsBodySubColor" : true,
    This is how it looks in Hylotl and Avali.

    It didn't work, the hair color is always the same as in the PNG. When I deleted ""headOptionAsHairColor" : true,", hair finally worked as it should, but then belly color didn't change.

    What do these options do exactly, and what other options are there? And how can I make the colors work?
     
  2. sdfghj

    sdfghj Void-Bound Voyager

    maybe changing the hair color to the body color will work
     
  3. DrPvtSkittles

    DrPvtSkittles Master Astronaut

    Skelekin uses
    Code:
      "headOptionAsFacialhair" : true,
      "altOptionAsUndyColor" : true,
    Makes the body and 'hair' colour the same. Not sure if this will work for you, but I figure I'd throw in my 2 cents.
     

Share This Page