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 fb1a512 commit cff9426Copy full SHA for cff9426
funscript_editor/ui/settings_dialog.py
@@ -134,15 +134,19 @@ def __setup_combo_boxes(self):
134
'y inverted (down-up)',
135
'x (left-right)',
136
'x inverted (right-left)',
137
- 'distance (p1-p2)',
138
- 'distance inverted (p2-p1)',
139
'roll (rotation)',
140
'roll inverted (rotation)'
141
])
142
143
if self.include_multiaxis:
144
self.ui.trackingMetricComboBox.addItems([
145
- "y + roll (up-down + rotation)"
+ "y + roll (up-down + rotation)",
+ "x + y + roll (left-right + up-down + rotation)",
+ ])
146
+ else:
147
+ self.ui.trackingMetricComboBox.addItems([
148
+ 'distance (p1-p2)',
149
+ 'distance inverted (p2-p1)',
150
151
152
self.ui.pointsComboBox.addItems([
0 commit comments