Also in CarGeneric. It's straightforward to add code for desired additional map camouflage types, below the line, "//==============".
private static CarProperties LoadCarProperties(SectFile sectfile, String s, Class class1)
{
CarProperties carproperties = new CarProperties();
String s1 = getS(sectfile, s, "PanzerType", null);
if(s1 == null)
s1 = "Tank";
carproperties.fnShotPanzer = TableFunctions.GetFunc2(s1 + "ShotPanzer");
carproperties.fnExplodePanzer = TableFunctions.GetFunc2(s1 + "ExplodePanzer");
carproperties.PANZER_TNT_TYPE = getF(sectfile, s, "PanzerSubtype", 0.0F, 100F);
//========================================================================
carproperties.meshSummer = getS(sectfile, s, "MeshSummer");
carproperties.meshDesert = getS(sectfile, s, "MeshDesert", carproperties.meshSummer);
carproperties.meshWinter = getS(sectfile, s, "MeshWinter", carproperties.meshSummer);
carproperties.meshSummer1 = getS(sectfile, s, "MeshSummerDamage", null);
carproperties.meshDesert1 = getS(sectfile, s, "MeshDesertDamage", carproperties.meshSummer1);
carproperties.meshWinter1 = getS(sectfile, s, "MeshWinterDamage", carproperties.meshSummer1);
float f = (carproperties.meshSummer1 != null ? 0 : 1) + (carproperties.meshDesert1 != null ? 0 : 1) + (carproperties.meshWinter1 != null ? 0 : 1);
if(f != 0 && f != 3)
{
System.out.println("Car: Uncomplete set of damage meshes for '" + s + "'");
throw new RuntimeException("Can't register car object");
}