I'm trying to create the following logic:
If Touch is touching mySprite
OR
If Mouse Cursor is over mySprite
AND
If Mouse Left button is down
--> doStuff
My attempts so far lead to the "AND" part being replaced with "OR". In other words I get two "OR"s when I only want one "OR" and one "AND".
Basically I'm asking if it's possible to have two different conditions launching an event so that the second condition checks two things?