I’ve got a simple animation in my menu background(i created empytObject, add Image and i created animationController who moves the picture) and I would like the animation to play once every few seconds but how?
You can make a float that when that float reaches a certain number the animation will play.
Something like this:
switch (timeUntilNextPlay)
{
case (the time you want the float to reach):
Play your animation here;
timeUntilNextPlay = 0f;
break;
default:
timeUntilMinuteChange++;
break;
}