- Code: Select all
//animname is declared as: char * animname = "0"; GE crashes if the = "0" isn't there fyi
sprintf(animname, "a%s", getAnimName(animindex));
sprintf(debug.text, "%s", animname);
ChangeAnimation("Event Actor", animname, FORWARD);
With the animations being 1,2,3,4 (up, left, down, right) with attacking animations a1,a2,a3,a4. So I want it to change to the attacking animation according to which animation the player is in. I know I could use ifs or switches but I want to try shorter codes to get things going "simpler" if you catch my drift. Anyways, the debug shows that the animname is always just a instead of a1 or a anything else. If I set the dubug text to sprintf(debug.text, "a%s", getAnimName(animindex)); it shows up right strangely enough.
Thanks in advance!
