Merge pull request #565 from SlimeVR/imu-id-1

Make IMU trackers start at # 1
This commit is contained in:
Eiren Rain
2023-02-09 17:34:08 +02:00
committed by GitHub

View File

@@ -735,7 +735,8 @@ public class IMUTracker
@Override
public String getDisplayName() {
return "IMU Tracker #" + getTrackerId();
return "IMU Tracker #"
+ (getTrackerId() - vrserver.humanPoseManager.getShareableTracker().size());
}
@Override