Hi. I m using libgdx and i would like to rotate textfield, button is rotating with this code but textfield is not.
button = new TextButton("SEND", skin);
button.setPosition(200,100);
button.setSize(200, 40);
button.setTransform(true);
button.setRotation(90);
user = new TextField("", skin);
user.setPosition(100,100);
user.setSize(200, 40);
user.setRotation(90);
is there a way to rotate textfield? thanks for every suggestion