Skip to content

Commit cff9426

Browse files
author
arch
committed
add multiaxis output option
1 parent fb1a512 commit cff9426

File tree

1 file changed

+7
-3
lines changed

1 file changed

+7
-3
lines changed

funscript_editor/ui/settings_dialog.py

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -134,15 +134,19 @@ def __setup_combo_boxes(self):
134134
'y inverted (down-up)',
135135
'x (left-right)',
136136
'x inverted (right-left)',
137-
'distance (p1-p2)',
138-
'distance inverted (p2-p1)',
139137
'roll (rotation)',
140138
'roll inverted (rotation)'
141139
])
142140

143141
if self.include_multiaxis:
144142
self.ui.trackingMetricComboBox.addItems([
145-
"y + roll (up-down + rotation)"
143+
"y + roll (up-down + rotation)",
144+
"x + y + roll (left-right + up-down + rotation)",
145+
])
146+
else:
147+
self.ui.trackingMetricComboBox.addItems([
148+
'distance (p1-p2)',
149+
'distance inverted (p2-p1)',
146150
])
147151

148152
self.ui.pointsComboBox.addItems([

0 commit comments

Comments
 (0)