Additional Apparel Graphics Comps - SmArtKar/AthenaFramework GitHub Wiki
CompProperties_DraftedApparelGraphics
applies additional apparel graphics based on whenever the wearer is drafted or not
public class CompProperties_DraftedApparelGraphics : CompProperties
{
// Additiona graphics that are applied when the pawn is drafted
public List<ApparelGraphicPackage> draftedGraphics = new List<ApparelGraphicPackage>();
// Additiona graphics that are applied when the pawn is NOT drafted
public List<ApparelGraphicPackage> undraftedGraphics = new List<ApparelGraphicPackage>();
}