I need a bool that controls one of my animation transitions to be set as true once my game starts.
for example:
void Awake()
{
animator.SetBool("isWinter", true);
isWinter = true;
isSpring = false;
isSummer = false;
isAutumn = false;
}
Upon starting the “isWinter” bool should be true
