Skip to content
This repository has been archived by the owner on Apr 15, 2023. It is now read-only.

Commit

Permalink
Several device logic fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
KimihikoAkayasaki committed Apr 15, 2022
1 parent 90cc6f2 commit b51736f
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 8 deletions.
4 changes: 2 additions & 2 deletions device_KinectBasis_Basic/DeviceHandler.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -55,8 +55,8 @@ void DeviceHandler::update()
trackingStates[i] = ktvr::State_Tracked;
}

// Mark the device as initialized
initialized = true;
// Mark that we see the user
skeletonTracked = true;
}
}

Expand Down
4 changes: 2 additions & 2 deletions device_KinectBasis_Full/DeviceHandler.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -50,8 +50,8 @@ void DeviceHandler::update()
trackingStates[i] = ktvr::State_Tracked;
}

// Mark the device as initialized
initialized = true;
// Mark that we see the user
skeletonTracked = true;
}
}

Expand Down
4 changes: 2 additions & 2 deletions device_KinectBasis_Full_Settings/DeviceHandler.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -50,8 +50,8 @@ void DeviceHandler::update()
trackingStates[i] = ktvr::State_Tracked;
}

// Mark the device as initialized
initialized = true;
// Mark that we see the user
skeletonTracked = true;
}
}

Expand Down
4 changes: 2 additions & 2 deletions device_KinectBasis_Simple/DeviceHandler.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -55,8 +55,8 @@ void DeviceHandler::update()
trackingStates[i] = ktvr::State_Tracked;
}

// Mark the device as initialized
initialized = true;
// Mark that we see the user
skeletonTracked = true;
}
}

Expand Down
1 change: 1 addition & 0 deletions external/vendor/KinectToVR_API_Devices.h
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@
#include <string>
#include <vector>
#include <variant>
#include <array>

#include <Eigen/Dense>

Expand Down

0 comments on commit b51736f

Please sign in to comment.