I know this is not the first question on creating an animation of a 3D plot, but I found no answer to the following question: How can I create an animated rotating plot with axes labels that are readable? What I currently have doesn't look good. The axes colors are weird and irregular, the cube rotates not around its center and the axes labels jump around to different axes.
My code currently is adapted from this answer
anim = Table[ RegionPlot3D[ 0 <= x <= y <= z <= 1, {x, 0, 1}, {y, 0, 1}, {z, 0, 1}, PlotRange -> {{0, 1.2}, {0, 1.2}, {0, 1.2}}, PlotStyle -> Opacity[0.7], Boxed -> False, ViewCenter -> {0.5, 0.5, 0.5}, ViewVector -> {5 Sin[t], 5 Cos[t], 0} ], {t, 0, 2*Pi, Pi/30}]; Export["animated.gif", anim] I want it to look similar to the following. Also the plot should rotate exactly once around its axis so that the loop of the gif isn't noticeable. Great would be if there was one variable which changesallows to quickly change the speed of the rotation without changingbreaking that it rotates exactly once.

