I’m setting an int to keep track of what world and level I’m on.
Each world only has 10 levels, so I’m using 0-9. I’d like to check the 10’s column in the integer for a number of reasons.
What is the easiest way to see if my value has a 1, or a 2, in the 10’s column of an integer?
you could try using the “in range” node to see if the int is between 9 and 20 non inclusive. or how about simple division, 10/10=1 , 20/10=2. or you could always convert to string and work with the data that way which would allow you to get the string length or the specific characters as needed.