This is my first game that I am making by myself. It's a work in progress though (because I have only been working on it for an hour and started yesterday.
One question though, on my game, you have to contiually press the d, a, right arrow, or left arrow key to move. How do I make it so that you can just hold down the button and they will continually move? The only way I know how to do it is using
if(Input.GetButtonDown("Move Right")){
transform.position.x += speed_x;
}
I believe thats what I wrote. Please help me and feel free to critique it. There is more to the level though, this is just a screen shot.