Hi,
I just started playing Overwhelm, great game indeed and some cool animations.
I was wondering how that created the world, I'm guessing using tiles for the background, not sure how the levels are designed though, they are quite big, maybe they rolled their own map editor? Thoughts please? ;-)
Many thanks
Game like Overwhelm
Re: Game like Overwhelm
No idea how they did it, but Tiled (https://www.mapeditor.org/) is always a decent option.
Re: Game like Overwhelm
Thanks,
Yeah used Tiled in the past for few mobile games I've done.
How big can a map be using love2d?
Yeah used Tiled in the past for few mobile games I've done.
How big can a map be using love2d?
- CrimsonGuy
- Prole
- Posts: 48
- Joined: Thu Apr 04, 2019 3:32 pm
Re: Game like Overwhelm
Just to be clear OVERWHELM was made using Love2d?
https://store.steampowered.com/app/785880/OVERWHELM/
https://store.steampowered.com/app/785880/OVERWHELM/
Re: Game like Overwhelm
Sorry, I'm not sure what overwhelm was created with. I've tried to find out but can't find any information about that. It looks like it could be created using Love2d.
- CrimsonGuy
- Prole
- Posts: 48
- Joined: Thu Apr 04, 2019 3:32 pm
Re: Game like Overwhelm
Me neither, but was hoping it was since its also on Nintendo Switch i was curious how he managed to port it over there. Dont think its love2d tho.
- zorg
- Party member
- Posts: 3465
- Joined: Thu Dec 13, 2012 2:55 pm
- Location: Absurdistan, Hungary
- Contact:
Re: Game like Overwhelm
Since you're the one defining what a map is, the limit's the sky... okay no, about 2-3 gigabytes total for RAM use of lua stuff, way more for löve specific objects like images, meshes, spritebatches, sound, generic data objects, etc.
Even if you only used lua stuff like tables and numbers/strings, the map being 2 gigs could still mean tons of things, whether it's 2 billion tiles with just one properity or just one lone tile with billions of them... of course, both of these are near-extremes.
In short, feel free to not care and just make your game.
Also, looks like the game was made with Haxe, since the steam forum threads had one with a Lime error, and that's this: https://github.com/openfl/lime
Me and my stuff True Neutral Aspirant. Why, yes, i do indeed enjoy sarcastically correcting others when they make the most blatant of spelling mistakes. No bullying or trolling the innocent tho.
Re: Game like Overwhelm
The limit is actually 1GB in x64 Linux, see https://stackoverflow.com/questions/351 ... -platforms. With LuaJIT 2.1 and GC64, the limit is 128 TB. Not sure if you can compile LÖVE with that, but I imagine it's possible.
Re: Game like Overwhelm
Ok, so map can be pretty big, but if using say bump for collision detection for it, would the fps then not suffer due to adding all these tile objects to the world?
Here is a link to what I wrote using LibGdx and Java, I'd like to do something similar in Love2d.
https://www.youtube.com/watch?v=dnHAJs0Oykk&t=474s
Thanks
Here is a link to what I wrote using LibGdx and Java, I'd like to do something similar in Love2d.
https://www.youtube.com/watch?v=dnHAJs0Oykk&t=474s
Thanks
Re: Game like Overwhelm
bump uses spatial hashing. With a conveniently chosen grid size, I don't think the number of objects is going to have a big influence on speed, if at all.
Who is online
Users browsing this forum: Ahrefs [Bot] and 6 guests