@DaveTheCoder said:
Why do you need to do that?
I am converting some html5 code to godot. I have this code in html which is supposed to draw an arc starting at the right side.
ctx.arc(0, 0, 92, 0.3*Math.PI, 1.7*Math.PI, true); // the last parameter is to enable draw in counterclockwise
Same code in godot the arc will draw to the left side.