There is a point:
class Dot extends Actor { @Override public void draw(Batch batch, float parentAlpha){ batch.draw(dotimg, getX(), getY(), getWidth(), getHeight()); } } There is inputlistener
class MyInputListener extends InputListener{ @Override public void touchUp(InputEvent event, float x, float y, int pointer, int button) { event.getListenerActor().setSize(200,200); event.getListenerActor().setColor(Color.BLUE); } } setSize () works, but setColor () does not. How does he work? Why he does not change the color of the point? Or does it depend on the texture? Thank you in advance