Hair Settings - erdelf/AlienRaces GitHub Wiki

Hair Settings

All of the tags on this page, go in the tag hairSettings

        <hairSettings>

        </hairSettings>

First we define if the race even has Hair (human: true)

            <hasHair>true</hasHair>

You can also define at which age the hair of your pawns gets grey/gray. (human: true)

            <getsGreyAt>50</getsGreyAt> 

It is also possible to set custom hairTags. Set the respective tags in your HairDefs.
Note: this will overwrite faction hairTags

            <hairTags>
                <li>exampleTagHair</li>
            </hairTags>
            <shader>Cutout</shader>

Resulting HairSettings

        <hairSettings>
            <hasHair>true</hasHair>
            <getsGreyAt>50</getsGreyAt>
            <hairTags>
                <li>exampleTagHair</li>
            </hairTags>
        </hairSettings>
⚠️ **GitHub.com Fallback** ⚠️