28.02.2016, 10:21
@Everyone: Thank you.
Nice one!
It depends how big the step ("diff" parameter) is.
For an example, "diff" of 5.0 will create 72 items (textdraws is this case) (360/5 = 72).
Quote:
It depends how big the step ("diff" parameter) is.
Quote:
"radius" and "diff" parameters:
If you don't know what radius is, then check the Wikipedia page. The "diff" parameter is a "step". 360 degrees represents the full circle, that means you'll have 360/diff items for your circle. The "diff" of 2.0 will give 180 items (example: objects). Minimum "diff" for the textdraw circles is 1.40625, because textdraws are created on player-level, which means there can be maximum 256 player-textdraws created (360/256 = 1.40625). The functions will correct the "diff" parameter if you try to enter smaller "diff" than the minimum (1.40625). The minimum "diff" parameter for other circles is 1.0, there is also correcting feature in functions making sure the "diff" parameter won't be smaller than 1.0 for non-textdraw circles. |