How do these numbers/letters work (ex: 0.1F, 0.5F ...etc)
-
I know they indicate a location on the screen for things like "Function.Call(Hash._DRAW_TEXT, 0.1F, 0.5F);" , but I'm not sure how to translate them into numerical coordinates.
Thanks.
-
It's a percentage. 0.1f would translate to 10 percent of the screen, 0.5f to 50 percent, etc.
To translate them to specific coordinates you would need to multiply the width or height of the screen with the number (1920 * 0.1 = 192).
-
Thanks a lot.