UPD: Hide WIP value types

This commit is contained in:
Robert Kossessa
2024-05-30 12:52:46 +02:00
parent 7914d307cb
commit 92857ff0e4

View File

@@ -155,10 +155,10 @@ const props = defineProps({
})
const valueTypeOptions = ref({
mouse: { label: 'Move or Scroll the Mouse', component: 'ControlMouseValue' },
gamepad: { label: 'Control a Gamepad Axis', component: 'ControlGamepadValue' },
// mouse: { label: 'Move or Scroll the Mouse', component: 'ControlMouseValue' },
// gamepad: { label: 'Control a Gamepad Axis', component: 'ControlGamepadValue' },
midi: { label: 'Control a MIDI CC Value', component: ControlMidiValue },
action: { label: 'Trigger Actions on Rotation', component: TriggerActionsValue },
// action: { label: 'Trigger Actions on Rotation', component: TriggerActionsValue },
profiles: { label: 'Switch Profiles', component: 'SwitchProfilesValue' }
})