Shoot In The Woods
A downloadable game for Windows
It's a simple but complete target practice game. This is the first project I made by myself, I applied everything I learnt so far. Hope you enjoy it for a bit! And thank you for taking the time.
Download
Download
Shoot In The Woods - V1.0.rar 92 MB
Install instructions
Just unpack the .rar and execute "TiroAlBlanco.exe".
Comments
Log in with itch.io to leave a comment.
I liked the game. Simple and fun with enjoyable shooting sounds.
I am using Unity myself and I wanted to ask you, how do you save permanently player's high score?
Hey! Glad you liked it! Thank you for taking the time to try it.
To save the highscore I used
PlayerPrefs.SetInt("highscore", highscore);
the first "highscore" is the name I used to save this pref, and the second is the actual value of the highscore (in this case is an int variable)
To get the highscore, i wrote in the start method;
PlayerPrefs.GetInt("highscore");
Hope this helps!
Nice, thanks for the info.