First two Level of my Project Boost

Still some work to do with the other levels and the game but here is the link for the first level to play:
https://sharemygame.com/@SweetMouse85/sweetmouseprojectboostfirstlevel


The blue one is the second level i am working on.

3 Likes

Very cool level! Congratulations on your first level! :grinning_face_with_smiling_eyes:

1 Like

Thank you so much :grinning:

Great lighting. I like the star background and the barrier with the glowing ‘stripes’.

It would be great if you could handle the arrow keys for those of us that are left-handed.

  if ( (Input.GetKey(KeyCode.LeftArrow) == true || Input.GetKey(KeyCode.A) == true) && Input.GetKey(KeyCode.RightArrow) == true || Input.GetKey(KeyCode.D) == true)
	{
     //Left and right - do nothing
	}
  else if (Input.GetKey(KeyCode.LeftArrow) == true || Input.GetKey(KeyCode.A) == true)
	{
     //Rotate Left
		RotateShip(rotationAmount);
	}
	else if (Input.GetKey(KeyCode.RightArrow) == true || Input.GetKey(KeyCode.D) == true)
  {
     //Rotate Right
     RotateShip(-rotationAmount);
  }
1 Like

Thank you, i was thinking about the arrow keys too, i will add this to the game, thank you for the script!

Here is the new level i made in Blender, will see if i can add this to the game.

Here is the level to play:

Privacy & Terms