Issue 1)
The stage object anchor defaults to (0.5, 0.5) however it seems to be hardcoded to (0,0) while rotating the stage.
Forcing it with stage.anchorX, stage,anchorY = 0.5, 0.5 doesn’t help either.
Issue 2)
Trying to set the anchor to something else like stage.anchorX, stage,anchorY = 1, 1 doesn’t retain the new values. print(stage.anchorX, stage.anchorY) will display (0.5, 0.5) no matter what you try to set the anchor to.
I need to set the anchor to (0.5, 0.5) so that the stage rotates around the centerpoint.