Thats handy!
Is there a way to clamp the players score to the bottom of the screen?
Aligned Games
Creator of
Recent community posts
Awesome tool thank you!
To all, if you want to single out a certain user in the leaderboard (the one using it), this is how I do it :
private void OnLeaderboardLoaded(Entry[] entries)
{
foreach (var entryField in _entryFields)
{
entryField.text = "";
}
for (int i = 0; i < entries.Length; i++)
{
_entryFields[i].text = $"{i + 1}. {entries[i].Username} : {entries[i].Score}";
if (entries[i].Username == SavedUsername)
{
_entryFields[i].text = $"{i + 1}. {entries[i].Username} : {entries[i].Score}" + " (You)"; //Tell player which score is his
_entryFields[i].color = new Color32(255, 0, 0, 200); //Make userscore red to stand out
}
}
}
I enjoyed your submission, it was definitely unique and quite fun.
I think it's a little bit confusing to get going in the game but once you figure it out its a lot of fun, and very original.
Good job!
I would appreciate it if you could try my game out, which you can find here :
https://itch.io/jam/gmtk-2020/rate/699739#post-1681849
I'm glad you liked it!
Yeah a bigger and more alive map would have been great but unfortunately I ran out of time.
The speed powerups are pretty vital to the tornado yeah as destroying stuff makes you slow down a lot.
I agree about the screen shakes, If I keep working on it I'll make those a bit less intense.
Thanks for playing.
I enjoyed your entry, I think it pretty original and fun!
If you'd like to rate my submission you can do so here :
https://itch.io/jam/gmtk-2020/rate/699739



