Epic Developer Community Forums
C++: Convert int to float
Development
Programming & Scripting
unreal-engine
Sveitar
(Sveitar)
August 8, 2018, 8:36pm
3
Usinc C style cast:
(float)yourint
Using C++ 11 cast:
float(yourint)
I recommend you the second one.
5 Likes
show post in topic