Skip to content

Commit 4862597

Browse files
committed
tracker: some small changes
1 parent cccf08e commit 4862597

3 files changed

Lines changed: 5 additions & 5 deletions

File tree

.gitignore

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ openxr_runtime/scripts/xr/OpenXR-SDK/
22
openxr_runtime/scripts/xr/OpenXR-SDK-Source/
33
openxr_runtime/scripts/xr/Vulkan-Headers/
44

5-
tracker/models/
5+
tracker/mp_models/
66

77
__pycache__/
88
.vscode/

tracker/aethervr/gui.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -135,8 +135,8 @@ def show_download_dialog(self, on_download) -> bool:
135135
response = QMessageBox.question(
136136
self,
137137
"MediaPipe Models",
138-
"The AetherVR tracker requires two MediaPipe machine learning models to run. "
139-
"These files are downloaded from Google's servers and placed in the `models` directory.\n\n"
138+
"The AetherVR tracker requires two MediaPipe machine learning models in order to run. "
139+
"These files are downloaded from Google's servers and placed in the `mp_models` directory.\n\n"
140140
"Would you like to continue and start the download?",
141141
QMessageBox.StandardButton.Yes | QMessageBox.StandardButton.Close,
142142
)
@@ -870,7 +870,7 @@ def build(self):
870870
color = "#098226"
871871
else:
872872
text = "Disconnected"
873-
color = "#6D6D6D"
873+
color = "#636363"
874874

875875
if self.application_name is not None:
876876
text += " | "

tracker/aethervr/mediapipe_models.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
from threading import Thread
44

55

6-
MODELS_DIR = Path("models")
6+
MODELS_DIR = Path("mp_models")
77
FACE_LANDMARKER_PATH = MODELS_DIR / "face_landmarker.task"
88
HAND_LANDMARKER_PATH = MODELS_DIR / "hand_landmarker.task"
99

0 commit comments

Comments
 (0)