movement

Game Editor comments and discussion.

movement

Postby master0500 » Thu Jul 05, 2012 1:01 pm

I'm making a top-down game and i would like to know what would be the best way to have 8-directional movement (arrow keys) and how i would make it so he could also attack (z) and defend (x) in the direction he is facing. the animations he has are:
movement- left and right
standing still- " "
attack- " "
defend- " "

+1 to best answer
-master0500
master0500
 
Posts: 409
Joined: Sun Jun 26, 2011 9:42 pm
Score: 27 Give a positive score

Re: movement

Postby tzoli » Thu Jul 05, 2012 1:43 pm

I think the best way to have some variables which contains the direction and the status(eg.Stand,Move,Attack,Defend) and with the "Draw Actor" you always change the animation to that one you need.
Creepers are capable of climbing ladders, despite lacking arms. (Minecraft wiki)
User avatar
tzoli
 
Posts: 343
Joined: Sat Jun 12, 2010 6:54 pm
Location: Behind you
Score: 15 Give a positive score

Re: movement

Postby master0500 » Fri Jul 06, 2012 6:45 am

but how would i use these?
master0500
 
Posts: 409
Joined: Sun Jun 26, 2011 9:42 pm
Score: 27 Give a positive score

Re: movement

Postby skydereign » Fri Jul 06, 2012 7:21 am

It has been suggested you maintain a variable to hold the direction. So, minimally you have this simple solution.
Code: Select all
switch(dir)
{
    case 0: // east
    ChangeAnimation("Event Actor", "defend_e", FORWARD);
    break;

    case 1: // north east
    ChangeAnimation("Event Actor", "defend_ne", FORWARD);
    break;

    // and so on
}

But, if you order your animations in the proper order (start with east, and rotate counterclockwise) you can use the getAnimName function.
Code: Select all
ChangeAnimation("Event Actor", getAnimName(defend_east_index+dir), FORWARD);

Of course changing defend_east_index with the animindex value representing the defend_east animation. Same technique can be used with the other animations.
User avatar
skydereign
 
Posts: 3510
Joined: Mon Jul 28, 2008 8:29 am
Score: 589 Give a positive score


Return to GE - General

Who is online

Users browsing this forum: No registered users and 1 guest

cron