Im (still) new and learning, so this is probably a stupid question.
Basically im able to make a rectangle on the screen like this:
Rect topLeft = new Rect(0, 0, Screen.width / 2, Screen.height / 2);
this will create a rectangle which I can use with touch input control.
So now I want some way to create a triangular touch region on the screen, sort of like this:
I havent found any “Triangle” “Shape” “Polygon”, only Rect…
Thanks.