-
-
Notifications
You must be signed in to change notification settings - Fork 306
Open
Description
The following code block only outputs either Home (if the correct combination is pressed) or Start. It never outputs Select (Minus) or Capture, it still outputs Start for those. I can move outputs.home to a different combination successfully, so I don't think it's the combinations that are the issue.
if (inputs.lt1 && !inputs.lt2) {
outputs.select = inputs.mb1;
} else if (!inputs.lt1 && inputs.lt2) {
outputs.home = inputs.mb1;
} else if ((inputs.lt1 && inputs.lt2) || inputs.nunchuk_c) {
outputs.capture = inputs.mb1;
} else {
outputs.start = inputs.mb1;
}Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
No labels