2015-11-26 13:56:19 +00:00
|
|
|
class CfgSkeletons {
|
|
|
|
class Default {
|
|
|
|
isDiscrete = 1;
|
|
|
|
skeletonInherit = "";
|
|
|
|
skeletonBones[] = {};
|
|
|
|
};
|
2015-11-29 23:14:46 +00:00
|
|
|
class ace_friesAnchorBar_skeleton: Default {
|
2015-11-26 13:56:19 +00:00
|
|
|
isDiscrete = 1;
|
|
|
|
skeletonInherit = "Default";
|
|
|
|
skeletonBones[] = {
|
2015-12-28 16:48:47 +00:00
|
|
|
"barRight", "",
|
|
|
|
"barLeft", ""
|
2015-11-26 13:56:19 +00:00
|
|
|
};
|
|
|
|
};
|
2016-01-31 18:25:31 +00:00
|
|
|
class ace_friesGantry_skeleton: Default {
|
|
|
|
isDiscrete = 1;
|
|
|
|
skeletonInherit = "Default";
|
|
|
|
skeletonBones[] = {
|
|
|
|
"gantryRight", "",
|
|
|
|
"gantryLeft", ""
|
|
|
|
};
|
|
|
|
};
|
2015-11-26 13:56:19 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
class CfgModels {
|
|
|
|
class Default {
|
|
|
|
sectionsInherit = "";
|
|
|
|
sections[] = {""};
|
|
|
|
skeletonName = "";
|
|
|
|
};
|
2015-11-29 23:14:46 +00:00
|
|
|
class friesAnchorBar: Default {
|
|
|
|
skeletonName = "ace_friesAnchorBar_skeleton";
|
2015-11-26 13:56:19 +00:00
|
|
|
sectionsInherit = "";
|
2015-12-28 16:48:47 +00:00
|
|
|
sections[] = {"ropeOriginRight", "ropeOriginLeft"};
|
2015-11-26 13:56:19 +00:00
|
|
|
class animations {
|
|
|
|
class extendHookRight {
|
|
|
|
type = "translation";
|
|
|
|
source = "";
|
2015-12-28 16:48:47 +00:00
|
|
|
selection = "barRight";
|
2015-11-26 13:56:19 +00:00
|
|
|
axis = "slideAxis";
|
|
|
|
animPeriod = 0;
|
|
|
|
minValue = 0;
|
|
|
|
maxValue = 1;
|
|
|
|
minPhase = 0;
|
|
|
|
maxPhase = 1;
|
|
|
|
offset0 = 0;
|
2015-12-28 16:48:47 +00:00
|
|
|
offset1 = 0.45;
|
2015-11-26 13:56:19 +00:00
|
|
|
};
|
|
|
|
class extendHookLeft: extendHookRight {
|
2015-12-28 16:48:47 +00:00
|
|
|
selection = "barLeft";
|
|
|
|
offset1 = -0.45;
|
2015-11-26 13:56:19 +00:00
|
|
|
};
|
|
|
|
};
|
|
|
|
};
|
2016-01-31 18:25:31 +00:00
|
|
|
class friesGantry: Default {
|
|
|
|
skeletonName = "ace_friesGantry_skeleton";
|
|
|
|
sectionsInherit = "";
|
|
|
|
sections[] = {"ropeOriginRight", "ropeOriginLeft"};
|
|
|
|
class animations {
|
|
|
|
class adjustWidth {
|
|
|
|
type = "translation";
|
|
|
|
source = "";
|
|
|
|
selection = "gantryRight";
|
|
|
|
axis = "axisWidth";
|
|
|
|
animPeriod = 0;
|
|
|
|
minValue = 0;
|
|
|
|
maxValue = 1;
|
|
|
|
offset0 = 0;
|
|
|
|
offset1 = 10;
|
|
|
|
};
|
|
|
|
class rotateGantryLeft {
|
|
|
|
type = "rotation";
|
|
|
|
source = "";
|
|
|
|
selection = "gantryLeft";
|
|
|
|
axis = "axisRotation";
|
|
|
|
animPeriod = 0;
|
|
|
|
minValue = 0;
|
|
|
|
maxValue = 1;
|
|
|
|
angle0 = "rad 0";
|
|
|
|
angle1 = "rad 360";
|
|
|
|
};
|
|
|
|
class rotateGantryRight {
|
|
|
|
type = "rotation";
|
|
|
|
source = "";
|
|
|
|
selection = "gantryRight";
|
|
|
|
axis = "axisRotation";
|
|
|
|
animPeriod = 0;
|
|
|
|
minValue = 0;
|
|
|
|
maxValue = 1;
|
|
|
|
angle0 = "rad 0";
|
|
|
|
angle1 = "rad 360";
|
|
|
|
};
|
|
|
|
};
|
|
|
|
};
|
2015-11-26 13:56:19 +00:00
|
|
|
};
|