Similar to this question: https://stackoverflow.com/a/23701065
But I was wondering if there is a way to get the current rotation for the child of a group instead of the position?
For example:
Group g1 = new Group();
Group g2 = new Group();
Actor a = new Actor();
g1.addActor(g2);
g2.addActor(a);
g1.setRotation(90);
g2.setRotation(45);
//How to get `a` actual rotation in reference to stage?