Gene based Apparel Textures - SmArtKar/AthenaFramework GitHub Wiki
CompProperties_ApparelGeneVariations
allows apparel to have alternative textures specific to certain genes or xenotypes.
public class CompProperties_ApparelGeneVariations : CompProperties
{
public List<ApparelGeneVariationPackage> variations;
}
public class ApparelGeneVariationPackage
{
// Genes and xenotype required to activate this package
public List<GeneDef> genes;
public XenotypeDef xenotype;
// Alternate texture path
public string wornTexPath;
// If set to true, then this variation would also use bodytypes
public bool useBodytypes = false;
}