Animation on a face of a 3D box

How do I…?

On a 3D box, I can place a sprite on each face. Is there a way to add animations to them, and possibly change the animation using events? Like a 2D sprite but using a 3D cube

i dont think so. You could possibly place a sprite 3d obj on the side of the box and animate that

This will be hacky as hell
You have this action to set image of face

You would need to make events like

Condition
variable = SOMETHING
Trigger once

Action
Change image of SOME face to SOMETHING

And now repeat it for every single face for every single image
And then make new event in which you would control how fast that SOME variable would change values
Most likely you will want change variable set to trunc(mod(variable +(TimeDelta() * Something) , how many images you have))

Like change var set to trunc(mod(variable + (TimeDelta() * 10) , 7))
Where idk if 10 is enough or too much and 7 is how many images you have
And where that 10 is actual speed of how fast it will change