I'm trying to set up certain animations to take place when individual and multiple buttons are pressed. When a single button is pressed, one animation will occur. But when that same button plus another is pressed together, a different animation will happen. What I want to do is test for different instances of conditions for the same possible event. It would go something like this:
==============
| CONDITION 1
| [AND]
| CONDITION 2
|
| [OR]
|
| CONDITION 1
| [AND]
| CONDITION 3
--------------
| --> EVENT 1
==============
I'm basically wondering if it's possible - in some way - to set up a combination of Boolean conditions to result in the same event.
I've try setting up groups - something I apparently need to learn more about and how they function - but that hasn't yet solved my current problem.
My THINKING would result in something like this:
==================
| CONDITION 1
| GROUP
| - CONDITION 1.1
| - CONDITION 1.2
------------------
| --> EVENT 1
==================
Does that make sense?