Check out the cookie crusher web game I made and currently improving. If you have any suggestions feel free to say them!
A pretty solid start to a game. The UI can be improved. The game doesn’t appear to save though
For the font @KillerCl0wn I wouldn’t recommend cursive, it makes it hard to read and look unfinished, something like sans-serif or Arial Rounded MT Bold would give a clicker feel to it (based on Roblox games).
@CadenChau I am working on getting it to where the data gets saved. We were almost there but were coming across some problems. If you have any suggestions for the UI pls feel free to say and I’ll see if I can improve it.
I changed the Font. My side did not show it as cursive; I used a more soft-looking font. Tell me if that looks better when you get the chance
Yes, I was planning on doing that. right now, were trying to get the progress saver
Are the numbers easier to see now?
I love auto clickers
I am still updating this. So make sure to check in now and then give some feed back!
@KillerCl0wn were you planning on putting anything below the main cookie? If not could you put the cookie in the center of the screen to make it easier to click?
Done! Hope that makes it easier
I like it! Nice UI! Was it inspired by cookie clicker?
The game was inspired by cookie clicker but not the UI. I hopefully will be improving the UI soon
The changed font looks much better! You can also add hover effects to the buttons maybe?
Scale hover effect
button {
transition: all 0.3s ease-in-out;
}
button:hover {
transform: scale(1.05);
}
Tint hover effect
button {
transition: all 0.3s ease-in-out;
}
button:hover {
filter: brightness(0.8);
}
The gems counter is kind of confusing since clicking a cookie gives you a gem
You could also add a cursor: pointer
to the buttons to indicate that you can click them maybe, and finally you should definitely switch from using px
as a unit to maybe %
or em
What do you think I should make it give instead of gems or should i make it not a cookie
Also I don’t think I used button i used divs that i styled
Maybe style the cookie differently to indicate that it’s a “gem” instead of just a regular cookie or just change the image to a gem.
Ah, that would explain why there’s no pointer when you hover above it