mirror of
https://github.com/acemod/ACE3.git
synced 2024-08-30 18:23:18 +00:00
Add model.cfg for medical blood (#4489)
This commit is contained in:
parent
6ad15e02c7
commit
bfc5af32f3
@ -18,10 +18,10 @@ GVAR(models) = [] call CBA_fnc_createNamespace;
|
|||||||
GVAR(models) setVariable [_name, _model];
|
GVAR(models) setVariable [_name, _model];
|
||||||
} forEach [
|
} forEach [
|
||||||
// higher number means bigger model
|
// higher number means bigger model
|
||||||
["blooddrop_1", QPATHTOF(data\drop_1.p3d)],
|
["blooddrop_1", QPATHTOF(data\ace_drop_1.p3d)],
|
||||||
["blooddrop_2", QPATHTOF(data\drop_2.p3d)],
|
["blooddrop_2", QPATHTOF(data\ace_drop_2.p3d)],
|
||||||
["blooddrop_3", QPATHTOF(data\drop_3.p3d)],
|
["blooddrop_3", QPATHTOF(data\ace_drop_3.p3d)],
|
||||||
["blooddrop_4", QPATHTOF(data\drop_4.p3d)]
|
["blooddrop_4", QPATHTOF(data\ace_drop_4.p3d)]
|
||||||
];
|
];
|
||||||
|
|
||||||
ADDON = true;
|
ADDON = true;
|
||||||
|
19
addons/medical_blood/data/model.cfg
Normal file
19
addons/medical_blood/data/model.cfg
Normal file
@ -0,0 +1,19 @@
|
|||||||
|
class CfgSkeletons {
|
||||||
|
class Default {
|
||||||
|
isDiscrete = 1;
|
||||||
|
skeletonInherit = "";
|
||||||
|
skeletonBones[] = {};
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
||||||
|
class CfgModels {
|
||||||
|
class Default {
|
||||||
|
sectionsInherit = "";
|
||||||
|
sections[] = {""};
|
||||||
|
skeletonName = "Default";
|
||||||
|
};
|
||||||
|
class ace_drop_1: Default {};
|
||||||
|
class ace_drop_2: Default {};
|
||||||
|
class ace_drop_3: Default {};
|
||||||
|
class ace_drop_4: Default {};
|
||||||
|
};
|
Loading…
Reference in New Issue
Block a user