I’ve a doubt, there is a difference between use the condition “and” VS use just more than one condition directly?
Thank you
I’ve a doubt, there is a difference between use the condition “and” VS use just more than one condition directly?
Thank you
I wondered the same thing until I realized that it would be very useful if it’s put into an OR condition. For instance if you want to use 2 possible sets of conditions where none of the conditions are the same, but you want 2 ore more at the same time.
Example:
Object is moving - AND - mouse is clicked
OR
Object is not moving - AND - a key is pressed
Yes, the default behavior from an event is to consider an “AND” between conditions. But, the “AND” condition is useful inside an “OR” condition.
Thanks!