Rotating geoms

I am trying to rotate the geom of an actor by

actor.getGeomNode().setH(180)

But it seem to rotate the actor node itself. Right after the above line I add

print actor.getH(), actor.getGeomNode().getH(actor)

which, I suppose, has to return the heading of the actor and the heading of the geom relative to the actor, it returns “180.0 0.0”.
In other words, it rotates the actor, and not the geom. What am I doing wrong?

Find the character instead :

.find("**/+Character")

Thank you, sir!!! :slight_smile: