my name is doug iv done all kinds of programing i was using bsp and now im making a little game with game editor but im having a big problem.
i want with one button to change the image every time u press the space bar down it only changes the image to the first image i say change to so it will not chancge to c3.
ok the point im trying to achieve is to half to press the button fast to change the image to the next image in the sprite to pull the actors gun out the holster to shoot im making a western shooting game.my email is vb.venom@yahoo.com please email if u have any answeres for me.thank you
if("main_actor", "c1") {
ChangeAnimation("main_actor", "c2", FORWARD);
}
else {
if("main_actor", "c2") {
ChangeAnimation("main_actor", "c3", FORWARD);
}
else {
if("main_actor", "c3") {
ChangeAnimation("main_actor", "c4", FORWARD);
}
}
}