Hey guys.
Very simple (and probably stupid) question, but I can’t figure it out, that’s incredible lol.
I want to make something after that two booleans become “TRUE”. How can I do that?
I’ll post a screenshot to help you to understand what I’d want to do.
Of course, and “AND operator” is not the best choice, since it returns true also when both are false. I need to be sure that both of them are TRUE, and then give the output to the branch node.
AND returns True only when both bools are true. NAND returns True when both bools are false. So you can use AND, or use two branches for the bools and attach them one after the other via their True pin.
Exactly.
The fact was that I tried a million times with the AND operator, and the entire function never worked. Now I realized that the error was a stupid thing before the end.
Darn… I got a degree in Computer Science and I was forgetting everything about logical operator… hurrah!