I made a mouse button down event on one of my actors. In the script editor, I wrote
if(animindex == 0)
{
ChangeAnimation("Event Actor", "injuredbugleft0", FORWARD);
}
if(animindex == 2)
{
ChangeAnimation("Event Actor", "Squashedbug0", FORWARD);
}
I tried it, and the first time, it worked. I tried it again, and all it did was skip that whole first part of the script, and change its animation to the "squashed bug". I went to see if there was something else in my actor control that was preventing the script from activating, but there was nothing. / / . Can anyone help me?