mirror of
https://github.com/acemod/ACE3.git
synced 2024-08-30 18:23:18 +00:00
more goggles code cleanup
This commit is contained in:
parent
dc882a3c66
commit
945ec7a388
@ -1,17 +1,15 @@
|
|||||||
class CfgSkeletons
|
|
||||||
{
|
class CfgSkeletons {
|
||||||
class Default
|
class Default {
|
||||||
{
|
|
||||||
isDiscrete = 1;
|
isDiscrete = 1;
|
||||||
skeletonInherit = "";
|
skeletonInherit = "";
|
||||||
skeletonBones[] = {};
|
skeletonBones[] = {};
|
||||||
};
|
};
|
||||||
class OFP2_ManSkeleton
|
|
||||||
{
|
class OFP2_ManSkeleton {
|
||||||
isDiscrete = 0;
|
isDiscrete = 0;
|
||||||
skeletonInherit = "";
|
skeletonInherit = "";
|
||||||
skeletonBones[] =
|
skeletonBones[] = {
|
||||||
{
|
|
||||||
"Pelvis","",
|
"Pelvis","",
|
||||||
"Spine","Pelvis",
|
"Spine","Pelvis",
|
||||||
"Spine1","Spine",
|
"Spine1","Spine",
|
||||||
@ -20,10 +18,12 @@ class CfgSkeletons
|
|||||||
"Camera","Pelvis",
|
"Camera","Pelvis",
|
||||||
"weapon","Spine1",
|
"weapon","Spine1",
|
||||||
"launcher","Spine1",
|
"launcher","Spine1",
|
||||||
|
|
||||||
//Head skeleton in hierarchy
|
//Head skeleton in hierarchy
|
||||||
"neck","Spine3",
|
"neck","Spine3",
|
||||||
"neck1","neck",
|
"neck1","neck",
|
||||||
"head","neck1",
|
"head","neck1",
|
||||||
|
|
||||||
//New facial features
|
//New facial features
|
||||||
"Face_Hub","head",
|
"Face_Hub","head",
|
||||||
"Face_Jawbone","Face_Hub",
|
"Face_Jawbone","Face_Hub",
|
||||||
@ -61,6 +61,7 @@ class CfgSkeletons
|
|||||||
"Face_EyelidLowerLeft","Face_Hub",
|
"Face_EyelidLowerLeft","Face_Hub",
|
||||||
"EyeLeft","Face_Hub",
|
"EyeLeft","Face_Hub",
|
||||||
"EyeRight","Face_Hub",
|
"EyeRight","Face_Hub",
|
||||||
|
|
||||||
//Left upper side
|
//Left upper side
|
||||||
"LeftShoulder","Spine3",
|
"LeftShoulder","Spine3",
|
||||||
"LeftArm","LeftShoulder",
|
"LeftArm","LeftShoulder",
|
||||||
@ -84,6 +85,7 @@ class CfgSkeletons
|
|||||||
"LeftHandThumb1","LeftHand",
|
"LeftHandThumb1","LeftHand",
|
||||||
"LeftHandThumb2","LeftHandThumb1",
|
"LeftHandThumb2","LeftHandThumb1",
|
||||||
"LeftHandThumb3","LeftHandThumb2",
|
"LeftHandThumb3","LeftHandThumb2",
|
||||||
|
|
||||||
//Right upper side
|
//Right upper side
|
||||||
"RightShoulder","Spine3",
|
"RightShoulder","Spine3",
|
||||||
"RightArm","RightShoulder",
|
"RightArm","RightShoulder",
|
||||||
@ -107,6 +109,7 @@ class CfgSkeletons
|
|||||||
"RightHandThumb1","RightHand",
|
"RightHandThumb1","RightHand",
|
||||||
"RightHandThumb2","RightHandThumb1",
|
"RightHandThumb2","RightHandThumb1",
|
||||||
"RightHandThumb3","RightHandThumb2",
|
"RightHandThumb3","RightHandThumb2",
|
||||||
|
|
||||||
//Left lower side
|
//Left lower side
|
||||||
"LeftUpLeg","Pelvis",
|
"LeftUpLeg","Pelvis",
|
||||||
"LeftUpLegRoll","LeftUpLeg",
|
"LeftUpLegRoll","LeftUpLeg",
|
||||||
@ -114,6 +117,7 @@ class CfgSkeletons
|
|||||||
"LeftLegRoll","LeftLeg",
|
"LeftLegRoll","LeftLeg",
|
||||||
"LeftFoot","LeftLegRoll",
|
"LeftFoot","LeftLegRoll",
|
||||||
"LeftToeBase","LeftFoot",
|
"LeftToeBase","LeftFoot",
|
||||||
|
|
||||||
//Right lower side
|
//Right lower side
|
||||||
"RightUpLeg","Pelvis",
|
"RightUpLeg","Pelvis",
|
||||||
"RightUpLegRoll","RightUpLeg",
|
"RightUpLegRoll","RightUpLeg",
|
||||||
@ -122,6 +126,7 @@ class CfgSkeletons
|
|||||||
"RightFoot","RightLegRoll",
|
"RightFoot","RightLegRoll",
|
||||||
"RightToeBase","RightFoot"
|
"RightToeBase","RightFoot"
|
||||||
};
|
};
|
||||||
|
|
||||||
// location of pivot points (local axes) for hierarchical animation
|
// location of pivot points (local axes) for hierarchical animation
|
||||||
pivotsModel="A3\anims_f\data\skeleton\SkeletonPivots.p3d";
|
pivotsModel="A3\anims_f\data\skeleton\SkeletonPivots.p3d";
|
||||||
};
|
};
|
||||||
|
Loading…
Reference in New Issue
Block a user