this post was submitted on 03 Feb 2024
1 points (66.7% liked)

Incremental Games

17 readers
1 users here now

A community for lovers of games that feature an incremental mechanism, such as unlocking progressively more powerful upgrades, or discovering new ways to play the game. This genre is growing at a break-neck pace, be part of the revolution!

This community is hosted on Incremental Social, a slice of the fediverse by and for Incremental game enthusiasts. Consider checking it out or joining our matrix space!

Check out popular incremental games at galaxy.click!

Repetitive Strain Injury

Too much clicking can cause injury.

Try an autoclicker and check out this prevention guide

Gaming addiction

SAMHSA (1-800-662-HELP)

Rules

  1. Follow the Incremental Social rules
  2. Do not post games that use, in any way, real cryptocurrencies, NFTs, or the blockchain.
  3. Don't spam - if you're making something, don't post about it more than once/week

founded 8 months ago
MODERATORS
 

I used Visual Basic for literally 10 years. What a nightmare. Now I use Godot!

top 6 comments
sorted by: hot top controversial new old
[–] [email protected] 2 points 7 months ago

JavaScript is generally enough for smaller projects - though I've used Angular too.

Making a web-based incremental in VB sounds like hell, as someone who's built websites with it for my day job :)

[–] [email protected] 2 points 7 months ago

I've tried a few different things.

Plain old js / html / CSS felt the most ... 'free.' For incremental games especially, where you can get by with very limited of textures, animations, or complex systems like physics etc, it can be nice to only have what you need. You're not tinkering around with any things you don't really understand the inner workings of - and everything is yours from the ground up.

Building on top of that - a framework can be nice to abstract away a lot of tedious verbosity of building your site element by element or just reactivity in general. Tbh, playing around with incremental games is what introduced me to Vue - and I reach for Vue 90% of the time I touch JS anymore. Profectus / TMT led me to Vue when I lacked enough basic JS (let alone vue) skills to actually make use of them, so I worked backwards from there and unfortunately never really made it back to Profectus - though I intend to eventually.

Most recently - Godot as well. The more i get to know the engine, the more I like it. Its true that you don't "need" an engine because a lot of incrementals are so simple - but since most can export to opengl / html5 theres not really a downside, and you're building a skillset that will translate to larger game projects if you ever choose to go that way. Was actually considering throwing together some simple Godot 4 tutorials to stick up on this site as it feels like a great venue for it, despite that being a blind-leading-the-blind type situation.

[–] [email protected] 1 points 7 months ago

I use profectus engine, ofc ;)

But legitimately, I just love TS and don't see myself leaving it anytime soon, although I'll sometimes play around in other engines just for the experience.

[–] [email protected] 1 points 7 months ago

You don't need an engine for web-based games, actually! That's why I just use JS. When I was small, I liked Game Maker Studio; did try Unity once but did not get it.

[–] [email protected] 1 points 7 months ago

typescript + CSS + HTML

[–] [email protected] 1 points 7 months ago

I use HTML, CSS, and TS (though I still use JS), along with Vue sometimes. I tried angular and react but they were a nightmare to use (for me).