This game is just a fun silly project I made. It is a first person shooter, where you control Miku and the goal is to shoot the enemy birds, the weird Peasant girls who time traveled and Zombie Mikus!  

How to Play: 

Move with the W, A, S, D keys move the camera with the mouse and shoot with the left click. Shoot Enemies and make them fly high!


I do not own any of the characters, or music. This was just a fun project for class.

Download

Download
Scripts.zip 3 kB

Comments

Log in with itch.io to leave a comment.

Need help making the camera smoother.

I would try using Vector3.Lerp in  your CameraScript when applying the new angle. So instead of:

transform.eulerAngles = new Vector3(pitch, yaw, 0.0f);

I would make it 50% in between the previous value and the new one like this:

transform.eulerAngles = Vector3.Lerp(transform.eulerAngles, new Vector3(pitch, yaw, 0f), 0.5f);