hey everyone!
I am using characters with 7 frames width and 4 frames height im my game. for that i've changed this script lines for this:
Sprite_Character line 54
Game_Character2 line 33
and well... its working but with a problem...
i don't wanna use the first frame when moving, because the moviment create a loop without the stopped frame(the first one). Just like this screen
And another thing... i wanna know if its possible to while running use only 4 frames(with the first one moving, or 5 frames without the first one), diferent from walking ( that is using 7 frames)
PS.: - I'm using a running animation script(by PARA) for changing animation while running
- I'm using a 8 direction script(by PARA) for changing animation while in diagonal moving
thx!! XD
I am using characters with 7 frames width and 4 frames height im my game. for that i've changed this script lines for this:
Sprite_Character line 54
Code:
@cw = bitmap.width / 7
Game_Character2 line 33
Code:
@pattern = (@pattern + 1) % 7
and well... its working but with a problem...
i don't wanna use the first frame when moving, because the moviment create a loop without the stopped frame(the first one). Just like this screen
And another thing... i wanna know if its possible to while running use only 4 frames(with the first one moving, or 5 frames without the first one), diferent from walking ( that is using 7 frames)
PS.: - I'm using a running animation script(by PARA) for changing animation while running
- I'm using a 8 direction script(by PARA) for changing animation while in diagonal moving
thx!! XD