??? I am making a sort of space invaders game in which i draw the different things as polygons since i don’t want to use images and is there any way to get the different things to get drawn quickly.
I have mine set up to where you move x or y and that value is added or subtracted to the current value which in my paint process makes an array like int[] shipx={x+1, x-4…} and so on and the same for y then i use drawPolygon(shipx,shipy,23(or something like that)) is there any other way to do draw polygons quicker ???
this really goes slow with multiple objects >:(