Hello,
is there any function which converts Hexadecimal number to Decimal number in Blueprints?
Hello,
is there any function which converts Hexadecimal number to Decimal number in Blueprints?
I dont know, but if not then you can
set a var DecimalValue to 0, then convert the hex number to a string, loop over each character. On each loop:
when the loop is complete, DecimalValue should have the value in Base 10 equivalent to the Hexadecimal value it was given, If I did my math right. I hope i did. You can check it with an online hex to dec converter.