AND statement using blueprint

Maybe I’m missing it but I don’t see an easy way to check if “this” AND “that” are true.

Example:
You need to do something if two objects exist, otherwise do something else.

as in:

    if(IsValid(object1) && IsValid(object2))
    {
         profit++;
      }
    else
    {
       profit--;
    }

I think I found it.
It was under math…

Correct, it is in the Boolean category of the Math section.

I will mark this as answered, however you can re-open it if you need some more info. Thanks! :slight_smile:

Instead of searching functions on list, for example just type “and” and press enter :slight_smile: A lot faster.