Hacker News new | ask | show | jobs
by endemic 113 days ago
If you're familiar with web development, you can make games with HTML/JS, which is almost its own "engine." Think DOM elements for sprites, CSS animations for movement, requestAnimationFrame for an update loop, etc. This has the extra benefit of zero friction for players -- no native app installation necessary!
1 comments

I have thought about doing this via PhaserJS in the past, but it just never clicks for some reason. I feel like my brain is missing some important component for making game design make sense.
I wrote some tutorials for making "grid-based" games that might give you some inspiration (https://ganbaru.games/writing-grid-based-games/) It's actually kind of crazy how many different types of games work with this approach.
This is great, thanks :)