ACE3/addons/repair/data/model.cfg
commy2 bc520c7fe7 add dmg materials to spare tracks and wheel (#4450)
* add dmg materials to spare tracks and wheel

* attempt to fix damage rvmats by making FIRE GEO components convex

* get materials to work
2016-09-24 22:08:56 +02:00

45 lines
820 B
INI

class CfgSkeletons {
class Default {
isDiscrete = 1;
skeletonInherit = "";
skeletonBones[] = {};
};
class ace_wheel: Default {
skeletonBones[] = {
"zbytek", ""
};
};
class ace_track: Default {
skeletonBones[] = {
"zbytek", ""
};
};
};
class CfgModels {
class Default {
skeletonName = "";
sectionsInherit = "";
sections[] = {};
};
class ace_wheel: Default {
skeletonName = "ace_wheel";
sectionsInherit = "";
sections[] = {
"mat_tyre",
"mat_rim"
};
};
class ace_track: Default {
skeletonName = "ace_track";
sectionsInherit = "";
sections[] = {
"mat_track"
};
};
};