mirror of
https://github.com/acemod/ACE3.git
synced 2024-08-30 18:23:18 +00:00
a72312738e
Remove Old Earplugs Use 3 Object instead of 9 for IVBag with Using of Model Config
24 lines
496 B
INI
24 lines
496 B
INI
class CfgSkeletons {
|
|
class Default {
|
|
isDiscrete = 1;
|
|
skeletonInherit = "";
|
|
skeletonBones[] = {};
|
|
};
|
|
};
|
|
|
|
class CfgModels {
|
|
class Default {
|
|
sectionsInherit="";
|
|
sections[] = {""};
|
|
skeletonName = "";
|
|
};
|
|
class IVBagBase: Default {
|
|
sectionsInherit = "";
|
|
sections[] = {"camo"};
|
|
skeletonName = "";
|
|
};
|
|
|
|
class IVBag_250ml: IVBagBase {};
|
|
class IVBag_500ml: IVBagBase {};
|
|
class IVBag_1000ml: IVBagBase {};
|
|
}; |