mirror of
https://github.com/acemod/ACE3.git
synced 2024-08-30 18:23:18 +00:00
48 lines
1.2 KiB
INI
48 lines
1.2 KiB
INI
class CfgSkeletons {
|
|
class Default {
|
|
isDiscrete = 1;
|
|
skeletonInherit = "";
|
|
skeletonBones[] = {};
|
|
};
|
|
class ace_friesAnchorBar_skeleton: Default {
|
|
isDiscrete = 1;
|
|
skeletonInherit = "Default";
|
|
skeletonBones[] = {
|
|
"tubeRight", "",
|
|
"tubeLeft", ""
|
|
};
|
|
};
|
|
};
|
|
|
|
class CfgModels {
|
|
class Default {
|
|
sectionsInherit = "";
|
|
sections[] = {""};
|
|
skeletonName = "";
|
|
};
|
|
class friesAnchorBar: Default {
|
|
skeletonName = "ace_friesAnchorBar_skeleton";
|
|
sectionsInherit = "";
|
|
sections[] = {"hookRight", "hookLeft"};
|
|
class animations {
|
|
class extendHookRight {
|
|
type = "translation";
|
|
source = "";
|
|
selection = "tubeRight";
|
|
axis = "slideAxis";
|
|
animPeriod = 0;
|
|
minValue = 0;
|
|
maxValue = 1;
|
|
minPhase = 0;
|
|
maxPhase = 1;
|
|
offset0 = 0;
|
|
offset1 = -0.5;
|
|
};
|
|
class extendHookLeft: extendHookRight {
|
|
selection = "tubeLeft";
|
|
offset1 = 0.5;
|
|
};
|
|
};
|
|
};
|
|
};
|