Controls

  • WASD or Arrow Keys - Move
  • LMB - Shoot
  • RMB - Switch between robot and hero

Full Screen for the Best Experience


Description

"Switch Runner" is an endless platformer where you either play as a hero or a robot. The hero has the ability to jump but can't attack while the robot can attack but can't jump. You must avoid the obstacles and kill as many enemies as you can.

A Word From The Author

The following game is made for Geo Jam with the theme "switch". This game is made in 7 days. No external assets or premade scripts are used in this game.

Comments

Log in with itch.io to leave a comment.

Man these arts are looking awesome

Nice game whats the css code if you dont mind you used to create that effect on your page?

I wrapped the texts in divs with class="custom-border". then, I applied this css.

.custom-border{
padding: 10px;
margin: 5px;
border-radius: 5px;
transition: all 200ms ease-in-out;
border: 2px solid #949494;
}
.custom-border:hover{
border: 5px solid #949494;
color: white;
}

Thankyou!