Make int from multiple bool

Just a simple question, is that possible to make a integer from multiple bools in blueprint with each bool posses 1 bit in the integer?

Thanks!

yes it is

Step 1, convert bool to int.
Step 2, multiple int by factor of 1, 2, 4, 8, 16, 32, 64, 128, etc for bits.
Step 3, add all ints together.

1 Like

Thank you so much! It worked perfect!