Animated images

I’ve noticed here that UI Animations will be supported only in the future.

But, is there any way to show animated icon (like spinner) right now ?

I did that by rotating the ui element in an Update() method of a monobehavior.
You can access a trandform like this: uielement.transform and manipulate the rotation.
When you change the transform.rotation there around the z axis it rotates. But beware: It roatates around 0/0/0 which is the top-left corner.

Ooo, nice, I will check that out. Thanks for the hint :slight_smile: