We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 229399a commit 825815fCopy full SHA for 825815f
AxSlime/Bridge/BridgeController.cs
@@ -43,7 +43,14 @@ private void UpdateTracker(AxisTracker axis)
43
RegisterTracker(axis, slime);
44
}
45
46
- slime.SendPacket(new Packet17RotationData() { Rotation = AxesOffset * axis.Rotation });
+ Quaternion jankQuat = new Quaternion( //Quaternion Left to right convert
47
+ -axis.Rotation.X,
48
+ axis.Rotation.Y,
49
+ axis.Rotation.Z,
50
+ axis.Rotation.W
51
+ );
52
+
53
+ slime.SendPacket(new Packet17RotationData() { Rotation = AxesOffset * jankQuat });
54
55
if (axis.HasAcceleration)
56
{
0 commit comments