Indie game storeFree gamesFun gamesHorror games
Game developmentAssetsComics
SalesBundles
Jobs
Tags

Love the clean look. And cool how you did the animations with only CSS.

Looking at the code, seems like the refresh rate depends on how often the browser is able to call the onmousemove callback, which might not be enough. If I move the mouse fast enough, I can go through the needle without registering a win or a loss.

Usually for this kind of thing you'd use interpolation: every update, draw a line between the previous mouse position and the current one, and check if the line intersects the needle threading area.

Probably nothing new for you, totally understandable if you just wanna keep it simple.

(1 edit)

Thanks for playing! Yeah, you can "trick it" by "jumping across" the needle. 


I think for now I'll keep it as-is , but that would definitely be an improvement :)