Fixed something, broke something else

This commit is contained in:
Tklama
2024-04-26 15:00:02 +02:00
parent 84758ade4c
commit c9c98eb7eb
4 changed files with 9 additions and 8 deletions

Binary file not shown.

View File

@@ -11,7 +11,8 @@ class CfgSkeletons {
skeletonInherit = ""; skeletonInherit = "";
skeletonBones[] = { skeletonBones[] = {
"plate_front", "", "plate_front", "",
"rest", "", "dummy_bone", "",
"rest", "dummy_bone",
"plate_back", "rest", "plate_back", "rest",
"rightwheel", "rest", "rightwheel", "rest",
"leftwheel", "rest", "leftwheel", "rest",
@@ -72,8 +73,8 @@ class CfgModels {
axis = "axis_wheels"; axis = "axis_wheels";
minValue = -1440; minValue = -1440;
maxValue = 1440; maxValue = 1440;
angle0 = "rad -2880"; angle0 = "rad +2880";
angle1 = "rad +2880"; angle1 = "rad -2880";
}; };
class rightwheel_rot { class rightwheel_rot {
@@ -83,19 +84,19 @@ class CfgModels {
axis = "axis_wheels"; axis = "axis_wheels";
minValue = -1440; minValue = -1440;
maxValue = 1440; maxValue = 1440;
angle0 = "rad +2880"; angle0 = "rad -2880";
angle1 = "rad -2880"; angle1 = "rad +2880";
}; };
class howitzer_rotation { class howitzer_rotation {
type = "rotation"; type = "rotation";
source = "howitzer_rotation_source"; source = "howitzer_rotation_source";
selection = "rest"; selection = "dummy_bone";
axis = "axis_howitzer"; axis = "axis_howitzer";
minValue = -1440; minValue = -1440;
maxValue = 1440; maxValue = 1440;
angle0 = "rad +1440"; angle0 = "rad -1440";
angle1 = "rad -1440"; angle1 = "rad +1440";
}; };
class rest { class rest {