I built a robot in Robocode and I want it to have custom colors, more specifically using RGBA.
Is that possible?
I tried:
setBodyColor(Color.fromArgb(150, 0, 150));
setBodyColor(Color(0.0f,0.0f,0.0f,0.0f));
But neither worked. Any suggestions?