There is a class inherited from the actor.
I want to track the click specifically on it.
Adding the following:
setTouchable(Touchable.enabled); addListener(new ClickListener(){ @Override public void clicked(InputEvent event, float x, float y) { Gdx.app.log("Actor: ", "is clicked"); } }); Does not react to click, what is missing?